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.3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.125rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 2.625rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.64rem;
    font-size: calc( 1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.805rem + (3.3 - 1.805) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.68rem;
    font-size: calc( 1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.385rem + (2.1 - 1.385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #f2003c !important;
}
.bg-success {
  background-color: #446a49 !important;
}
.bg-info {
  background-color: #d0c4b7 !important;
}
.bg-warning {
  background-color: #caa9a8 !important;
}
.bg-danger {
  background-color: #895957 !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f2003c;
  border: 1px solid #f2003c;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #f2003c !important;
  color: #04183c !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: #04183c !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #f2003c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #04183c !important;
  background-color: #9b0027 !important;
  border-color: #9b0027 !important;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #987a5a;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary,
.btn-secondary:active {
  background-color: transparent  !important;
  border-color: #987a5a !important;
  color: #1f1b24 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #1f1b24 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before,
.btn-secondary.active:before {
  background-color: #987a5a !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d0c4b7;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info,
.btn-info:active {
  background-color: transparent  !important;
  border-color: #d0c4b7 !important;
  color: #686174 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #686174 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before,
.btn-info.active:before {
  background-color: #d0c4b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #446a49;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success,
.btn-success:active {
  background-color: transparent  !important;
  border-color: #446a49 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before,
.btn-success.active:before {
  background-color: #446a49 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #caa9a8;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning,
.btn-warning:active {
  background-color: transparent  !important;
  border-color: #caa9a8 !important;
  color: #54566c !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #54566c !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before,
.btn-warning.active:before {
  background-color: #caa9a8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !important;
}
.btn-danger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #895957;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #895957 !important;
  color: #141519 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #141519 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #895957 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-white:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white,
.btn-white:active {
  background-color: transparent  !important;
  border-color: #ffffff !important;
  color: #a6a6a6 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #a6a6a6 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before,
.btn-white.active:before {
  background-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #353535;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black,
.btn-black:active {
  background-color: transparent  !important;
  border-color: #353535 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #000000 !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before,
.btn-black.active:before {
  background-color: #353535 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #f2003c;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #04183c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #04183c !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #04183c !important;
  background-color: #9b0027 !important;
  border-color: #9b0027 !important;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #987a5a;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  color: #1f1b24;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1f1b24 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1f1b24 !important;
  background-color: #624e3a !important;
  border-color: #624e3a !important;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #d0c4b7;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-info-outline,
.btn-info-outline:active {
  color: #686174;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #686174 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #686174 !important;
  background-color: #ae9983 !important;
  border-color: #ae9983 !important;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #446a49;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-success-outline,
.btn-success-outline:active {
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #223525 !important;
  border-color: #223525 !important;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #caa9a8;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-warning-outline,
.btn-warning-outline:active {
  color: #54566c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #54566c !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #54566c !important;
  background-color: #a97472 !important;
  border-color: #a97472 !important;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #895957;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #141519;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #141519 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #141519 !important;
  background-color: #543735 !important;
  border-color: #543735 !important;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #353535;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-black-outline,
.btn-black-outline:active {
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #000000 !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-white-outline,
.btn-white-outline:active {
  color: #a6a6a6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #a6a6a6 !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #a6a6a6 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.text-primary {
  color: #f2003c !important;
}
.text-secondary {
  color: #987a5a !important;
}
.text-success {
  color: #446a49 !important;
}
.text-info {
  color: #d0c4b7 !important;
}
.text-warning {
  color: #caa9a8 !important;
}
.text-danger {
  color: #895957 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #353535 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #8c0023 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #584734 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #1c2c1e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a89179 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a36a69 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #4b302f !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #020202 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f2003c;
}
.nav-tabs .nav-link:not(.active) {
  color: #353535;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d0c4b7;
}
.alert-warning {
  background-color: #caa9a8;
}
.alert-danger {
  background-color: #895957;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f2003c;
  border-color: #f2003c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f2003c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffbfcf;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #80ae86;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c19f9e;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f2003c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #f2003c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f2003c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f2003c;
}
.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: #f2003c;
  border-bottom-color: #f2003c;
}
.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: #f2003c !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='%23f2003c' %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-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #f2003c !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #f2003c;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #f1dbda !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-tqnIBxS2Xz {
  background-image: url("../../../assets/images/360-f-265118756-j8qzc20ncpgy7nmreu8qezea23jqqse0-640x360.jpg");
  overflow: hidden;
}
.cid-tqnIBxS2Xz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnIBxS2Xz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnIBxS2Xz .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .row {
    flex-wrap: wrap;
  }
}
.cid-tqnIBxS2Xz .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnIBxS2Xz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-tqnIBxS2Xz .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-tqnIBxS2Xz .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnIBxS2Xz .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnIBxS2Xz .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .col-img {
    width: 350px;
  }
}
.cid-tqnIBxS2Xz .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnIBxS2Xz .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnIBxS2Xz .mbr-text,
.cid-tqnIBxS2Xz .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uBobYxwdSB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-uBobYxwdSB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBobYxwdSB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBobYxwdSB .text-wrap {
  width: 100%;
}
.cid-uBobYxwdSB .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBobYxwdSB .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uBobYxwdSB .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBobYxwdSB .list-wrap {
    margin-top: 24px;
  }
}
.cid-uBobYxwdSB .list-box {
  width: 100%;
}
.cid-uBobYxwdSB .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uBobYxwdSB .list-text {
  position: relative;
}
.cid-uBobYxwdSB .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBobYxwdSB .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uBocwmQMI8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBocwmQMI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBocwmQMI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBocwmQMI8 .card-wrapper {
  background: #caa9a8;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .cid-uBocwmQMI8 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBocwmQMI8 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBocwmQMI8 .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uBocwmQMI8 .mbr-text,
.cid-uBocwmQMI8 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uBocwmQMI8 .card-title,
.cid-uBocwmQMI8 .card-box {
  text-align: center;
  color: #000000;
}
.cid-tqnJNh3H3d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-tqnJNh3H3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnJNh3H3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnJNh3H3d .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .col-text {
    order: 2;
  }
}
.cid-tqnJNh3H3d .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .text-wrap {
    margin-top: 30px;
  }
}
.cid-tqnJNh3H3d .mbr-section-title {
  color: #000000;
}
.cid-tqnJNh3H3d .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnJNh3H3d .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .col-img {
    order: 1;
  }
}
.cid-tqnJNh3H3d .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnJNh3H3d .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-tqnJNh3H3d .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnLBXnomf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-tqnLBXnomf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnLBXnomf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnLBXnomf .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnLBXnomf .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnLBXnomf .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnLBXnomf .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnLBXnomf .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnLBXnomf .text-wrap {
  width: 100%;
}
.cid-tqnLBXnomf .mbr-text {
  color: #000000;
}
.cid-tqnLBXnomf .list-box {
  width: 100%;
}
.cid-tqnLBXnomf .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tqnLBXnomf .list-text {
  position: relative;
}
.cid-tqnLBXnomf .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tqnLBXnomf .items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tqnLBXnomf .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tqnLBXnomf .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-tqnLBXnomf .items-box {
    gap: 16px;
  }
}
.cid-tqnLBXnomf .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnLBXnomf .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-tqnLBXnomf .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-tqnLBXnomf .item {
    width: 100%;
  }
}
.cid-tqnLBXnomf .item:nth-child(1) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-right-radius: 0;
}
.cid-tqnLBXnomf .item:nth-child(2) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-left-radius: 0;
}
.cid-tqnLBXnomf .item:nth-child(3) {
  background-color: rgba(241, 219, 218, 0.95);
  border-top-right-radius: 0;
}
.cid-tqnLBXnomf .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(208, 196, 183, 0.95);
}
.cid-tqnLBXnomf .item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
  max-width: 240px;
  min-height: 138px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .cid-tqnLBXnomf .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tqnLBXnomf .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-tqnLBXnomf .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-tqnLBXnomf .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-tqnLBXnomf .item-text {
    margin: 12px 0 0;
  }
}
.cid-uBocOCqDYU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBocOCqDYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBocOCqDYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBocOCqDYU .text-wrap {
  width: 100%;
}
.cid-uBocOCqDYU .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBocOCqDYU .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBocOCqDYU .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-tqnKHbtjLQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-tqnKHbtjLQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnKHbtjLQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .row {
    align-items: center !important;
  }
}
.cid-tqnKHbtjLQ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnKHbtjLQ .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnKHbtjLQ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnKHbtjLQ .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnKHbtjLQ .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .text-wrap {
    padding: 30px 0;
  }
}
.cid-tqnKHbtjLQ .mbr-title {
  color: #000000;
}
.cid-tqnKHbtjLQ .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tqnKHbtjLQ .list-box {
  width: 100%;
}
.cid-tqnKHbtjLQ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tqnKHbtjLQ .list-text {
  position: relative;
}
.cid-tqnKHbtjLQ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tqnKHbtjLQ .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqnKHbtjLQ .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tqnKHbtjLQ .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnKHbtjLQ .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-tqnKHbtjLQ .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBocUEoGnc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBocUEoGnc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBocUEoGnc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBocUEoGnc .text-wrap {
  width: 100%;
}
.cid-uBocUEoGnc .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBocUEoGnc .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBocUEoGnc .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-tqnPeqdcaI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-tqnPeqdcaI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnPeqdcaI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnPeqdcaI .text-wrap {
  width: 100%;
}
.cid-tqnPeqdcaI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tqnPeqdcaI .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnPeqdcaI .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tqnPeqdcaI .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnPeqdcaI .item-row {
  row-gap: 50px;
}
.cid-tqnPeqdcaI .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-tqnPeqdcaI .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-tqnPeqdcaI .img-box img {
  width: 100%;
  height: auto;
}
.cid-tqnPeqdcaI .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-tqnPeqdcaI .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-tqnPeqdcaI .item-text {
    margin: 16px 0 0;
  }
}
.cid-tqnPeqdcaI .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqnPeqdcaI .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tqnPVhqg2X {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-tqnPVhqg2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnPVhqg2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnPVhqg2X .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .row {
    align-items: center !important;
  }
}
.cid-tqnPVhqg2X .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnPVhqg2X .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tqnPVhqg2X .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnPVhqg2X .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnPVhqg2X .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .text-wrap {
    padding: 30px 0;
  }
}
.cid-tqnPVhqg2X .mbr-title {
  color: #000000;
}
.cid-tqnPVhqg2X .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tqnPVhqg2X .list-box {
  width: 100%;
}
.cid-tqnPVhqg2X .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tqnPVhqg2X .list-text {
  position: relative;
}
.cid-tqnPVhqg2X .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tqnPVhqg2X .mbr-section-btn {
  margin-top: 20px;
}
.cid-tqnPVhqg2X .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-tqnPVhqg2X .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tqnPVhqg2X .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-tqnPVhqg2X .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnOQy9hhI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-tqnOQy9hhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnOQy9hhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnOQy9hhI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tqnOQy9hhI .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnOQy9hhI .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .col-img {
    display: none;
  }
}
.cid-tqnOQy9hhI .img-wrap {
  width: 100%;
}
.cid-tqnOQy9hhI .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnOQy9hhI .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-tqnOQy9hhI .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnOQy9hhI .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tqnOQy9hhI .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-tqnOQy9hhI .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tqnOQy9hhI .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tqnOQy9hhI .panel-group {
    margin-top: 0;
  }
}
.cid-tqnOQy9hhI .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-tqnOQy9hhI .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .card-header {
    padding: 8px 0;
  }
}
.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-tqnOQy9hhI .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tqnOQy9hhI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tqnOQy9hhI .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tqnOQy9hhI .panel-title-edit {
  color: #000000;
}
.cid-tqnOQy9hhI .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tqnOQy9hhI .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tqnOQy9hhI .panel-text {
  color: #353535;
  margin: 0;
}
.cid-tqnMpBk11O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/13-1440x1080.jpg");
}
.cid-tqnMpBk11O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnMpBk11O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnMpBk11O .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-tqnMpBk11O .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tqnMpBk11O .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tqnMpBk11O .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tqnMpBk11O .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tqnMpBk11O .mbr-text {
    margin-top: 16px;
  }
}
.cid-tqnMpBk11O .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tqnMpBk11O .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBogBpUCko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBogBpUCko .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBogBpUCko .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-uBogBpUCko .container {
    padding: 0 20px;
  }
}
.cid-uBogBpUCko .row {
  margin: 0;
}
.cid-uBogBpUCko .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBogBpUCko .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBogBpUCko .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBogBpUCko .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBogBpUCko .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBogBpUCko .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBogBpUCko .mbr-section-title {
  color: #000000;
}
.cid-uBodauLsDC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBodauLsDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBodauLsDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBodauLsDC .text-wrap {
  width: 100%;
}
.cid-uBodauLsDC .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBodauLsDC .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBodauLsDC .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBoaSqpKXJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #caa9a8;
}
.cid-uBoaSqpKXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoaSqpKXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoaSqpKXJ .card-wrapper {
  border: 1px solid #f2003c;
}
.cid-uBoaSqpKXJ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBoaSqpKXJ .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uBoaSqpKXJ .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-uBoaSqpKXJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBoaSqpKXJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBoaSqpKXJ .content-head {
  max-width: 800px;
}
.cid-uBoaSqpKXJ .mbr-section-title {
  color: #221b35;
}
.cid-uBoaYzEIEM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoaYzEIEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoaYzEIEM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoaYzEIEM .content-wrap {
  padding: 60px;
  background-color: #caa9a8;
}
@media (max-width: 992px) {
  .cid-uBoaYzEIEM .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBoaYzEIEM .content-wrap .row {
  justify-content: center;
}
.cid-uBoaYzEIEM .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoaYzEIEM .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoaYzEIEM .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBoaYzEIEM .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uBoaYzEIEM .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uBoaYzEIEM .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBoaYzEIEM .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoaYzEIEM .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoaYzEIEM .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoaYzEIEM .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoaYzEIEM .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoaYzEIEM .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoaYzEIEM .nav-wrapper .list .item-wrap:hover,
.cid-uBoaYzEIEM .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoaYzEIEM .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoaYzEIEM .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoaYzEIEM .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoaYzEIEM .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoaYzEIEM .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoaYzEIEM .contacts-wrapper .list .item-wrap:hover,
.cid-uBoaYzEIEM .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoaYzEIEM .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoaYzEIEM .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoaYzEIEM .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoaYzEIEM .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoaYzEIEM .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBoaYzEIEM .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBoaYzEIEM .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBoaYzEIEM .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uBoaYzEIEM .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uBoaYzEIEM .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uBoaYzEIEM .mbr-section-title {
  color: #ed463f;
}
.cid-uBoaYzEIEM .mbr-section-subtitle {
  color: #404349;
}
.cid-uBoaYzEIEM .list {
  color: #404349;
}
.cid-uBoelScbVD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uBoelScbVD nav.navbar {
  position: fixed;
}
.cid-uBoelScbVD .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-uBoelScbVD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBoelScbVD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBoelScbVD .dropdown-item:hover,
.cid-uBoelScbVD .dropdown-item:focus {
  background: #f2003c !important;
  color: white !important;
}
.cid-uBoelScbVD .dropdown-item:hover span {
  color: white;
}
.cid-uBoelScbVD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBoelScbVD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBoelScbVD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBoelScbVD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBoelScbVD .nav-link {
  position: relative;
}
.cid-uBoelScbVD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBoelScbVD .container {
    flex-wrap: nowrap;
  }
}
.cid-uBoelScbVD .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uBoelScbVD .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uBoelScbVD .iconfont-wrapper .mbr-iconfont:hover {
  color: #f2003c;
}
.cid-uBoelScbVD .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uBoelScbVD .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uBoelScbVD .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uBoelScbVD .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uBoelScbVD .dropdown-menu,
.cid-uBoelScbVD .navbar.opened {
  background: #f1dbda !important;
}
.cid-uBoelScbVD .nav-item:focus,
.cid-uBoelScbVD .nav-link:focus {
  outline: none;
}
.cid-uBoelScbVD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBoelScbVD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBoelScbVD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBoelScbVD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBoelScbVD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBoelScbVD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBoelScbVD .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uBoelScbVD .navbar.opened {
  transition: all 0.3s;
}
.cid-uBoelScbVD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBoelScbVD .navbar .navbar-logo img {
  width: auto;
}
.cid-uBoelScbVD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBoelScbVD .navbar.collapsed {
  justify-content: center;
}
.cid-uBoelScbVD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBoelScbVD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBoelScbVD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBoelScbVD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBoelScbVD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBoelScbVD .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-uBoelScbVD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBoelScbVD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBoelScbVD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBoelScbVD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBoelScbVD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBoelScbVD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBoelScbVD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBoelScbVD .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-uBoelScbVD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBoelScbVD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBoelScbVD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBoelScbVD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBoelScbVD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBoelScbVD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uBoelScbVD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uBoelScbVD .navbar.navbar-short {
  min-height: 90px;
}
.cid-uBoelScbVD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBoelScbVD .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uBoelScbVD .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-uBoelScbVD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBoelScbVD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBoelScbVD .dropdown-item.active,
.cid-uBoelScbVD .dropdown-item:active {
  background-color: transparent;
}
.cid-uBoelScbVD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBoelScbVD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBoelScbVD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBoelScbVD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-uBoelScbVD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBoelScbVD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBoelScbVD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBoelScbVD .navbar-buttons {
  text-align: center;
}
.cid-uBoelScbVD 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-uBoelScbVD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uBoelScbVD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uBoelScbVD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoelScbVD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoelScbVD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uBoelScbVD nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoelScbVD nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uBoelScbVD nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBoelScbVD nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoelScbVD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBoelScbVD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBoelScbVD .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-uBoelScbVD .navbar {
    height: 70px;
  }
  .cid-uBoelScbVD .navbar.opened {
    height: auto;
  }
  .cid-uBoelScbVD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBoelScbVD .container,
.cid-uBoelScbVD .container-fluid {
  flex-wrap: wrap;
}
.cid-uBoelScbVD .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uBoelScbVD .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uBoelScbVD .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoelScbVD .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uBoelScbVD .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uBoelScbVD .navbar-nav {
    width: 100%;
  }
}
.cid-uBoelUTNKq {
  background-image: url("../../../assets/images/5dd0a02bf597406ba614258edef72b62.thumbnail.0000000000-1024x10242x.webp");
  overflow: hidden;
}
.cid-uBoelUTNKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoelUTNKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoelUTNKq .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBoelUTNKq .row {
    flex-wrap: wrap;
  }
}
.cid-uBoelUTNKq .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoelUTNKq .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uBoelUTNKq .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uBoelUTNKq .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uBoelUTNKq .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-uBoelUTNKq .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uBoelUTNKq .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uBoelUTNKq .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uBoelUTNKq .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoelUTNKq .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBoelUTNKq .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoelUTNKq .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBoelUTNKq .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uBoelUTNKq .col-img {
    width: 350px;
  }
}
.cid-uBoelUTNKq .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBoelUTNKq .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-uBoelUTNKq .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uBoelUTNKq .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoelUTNKq .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uBoelUTNKq .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uBoelUTNKq .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uBoelUTNKq .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uBoelUTNKq .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uBoelUTNKq .mbr-text,
.cid-uBoelUTNKq .mbr-section-btn {
  text-align: left;
}
.cid-uBoelWOyxh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBoelWOyxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoelWOyxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoelWOyxh .card-wrapper {
  background: #caa9a8;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .cid-uBoelWOyxh .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBoelWOyxh .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBoelWOyxh .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uBoelWOyxh .mbr-text,
.cid-uBoelWOyxh .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uBoelWOyxh .card-title,
.cid-uBoelWOyxh .card-box {
  text-align: center;
  color: #000000;
}
.cid-uBoem8fpX6 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #f1dbda;
}
.cid-uBoem8fpX6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoem8fpX6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoem8fpX6 .card-wrapper {
  border: 1px solid #f2003c;
}
.cid-uBoem8fpX6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBoem8fpX6 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uBoem8fpX6 .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-uBoem8fpX6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBoem8fpX6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBoem8fpX6 .content-head {
  max-width: 800px;
}
.cid-uBoem8fpX6 .mbr-section-title {
  color: #221b35;
}
.cid-uBoem9b5sx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoem9b5sx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoem9b5sx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoem9b5sx .content-wrap {
  padding: 60px;
  background-color: #caa9a8;
}
@media (max-width: 992px) {
  .cid-uBoem9b5sx .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBoem9b5sx .content-wrap .row {
  justify-content: center;
}
.cid-uBoem9b5sx .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoem9b5sx .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoem9b5sx .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBoem9b5sx .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uBoem9b5sx .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uBoem9b5sx .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBoem9b5sx .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoem9b5sx .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoem9b5sx .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoem9b5sx .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoem9b5sx .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoem9b5sx .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoem9b5sx .nav-wrapper .list .item-wrap:hover,
.cid-uBoem9b5sx .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoem9b5sx .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoem9b5sx .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoem9b5sx .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoem9b5sx .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoem9b5sx .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoem9b5sx .contacts-wrapper .list .item-wrap:hover,
.cid-uBoem9b5sx .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoem9b5sx .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoem9b5sx .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoem9b5sx .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoem9b5sx .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoem9b5sx .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBoem9b5sx .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBoem9b5sx .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBoem9b5sx .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uBoem9b5sx .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uBoem9b5sx .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uBoem9b5sx .mbr-section-title {
  color: #ed463f;
}
.cid-uBoem9b5sx .mbr-section-subtitle {
  color: #404349;
}
.cid-uBoem9b5sx .list {
  color: #404349;
}
.cid-uBoeVRr6m5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uBoeVRr6m5 nav.navbar {
  position: fixed;
}
.cid-uBoeVRr6m5 .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-uBoeVRr6m5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBoeVRr6m5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBoeVRr6m5 .dropdown-item:hover,
.cid-uBoeVRr6m5 .dropdown-item:focus {
  background: #f2003c !important;
  color: white !important;
}
.cid-uBoeVRr6m5 .dropdown-item:hover span {
  color: white;
}
.cid-uBoeVRr6m5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBoeVRr6m5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBoeVRr6m5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBoeVRr6m5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBoeVRr6m5 .nav-link {
  position: relative;
}
.cid-uBoeVRr6m5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBoeVRr6m5 .container {
    flex-wrap: nowrap;
  }
}
.cid-uBoeVRr6m5 .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uBoeVRr6m5 .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uBoeVRr6m5 .iconfont-wrapper .mbr-iconfont:hover {
  color: #f2003c;
}
.cid-uBoeVRr6m5 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uBoeVRr6m5 .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uBoeVRr6m5 .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uBoeVRr6m5 .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uBoeVRr6m5 .dropdown-menu,
.cid-uBoeVRr6m5 .navbar.opened {
  background: #f1dbda !important;
}
.cid-uBoeVRr6m5 .nav-item:focus,
.cid-uBoeVRr6m5 .nav-link:focus {
  outline: none;
}
.cid-uBoeVRr6m5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBoeVRr6m5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBoeVRr6m5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBoeVRr6m5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBoeVRr6m5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBoeVRr6m5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBoeVRr6m5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uBoeVRr6m5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBoeVRr6m5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBoeVRr6m5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBoeVRr6m5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBoeVRr6m5 .navbar.collapsed {
  justify-content: center;
}
.cid-uBoeVRr6m5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBoeVRr6m5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBoeVRr6m5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBoeVRr6m5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBoeVRr6m5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBoeVRr6m5 .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-uBoeVRr6m5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBoeVRr6m5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBoeVRr6m5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBoeVRr6m5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBoeVRr6m5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBoeVRr6m5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBoeVRr6m5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBoeVRr6m5 .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-uBoeVRr6m5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBoeVRr6m5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBoeVRr6m5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBoeVRr6m5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBoeVRr6m5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBoeVRr6m5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uBoeVRr6m5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uBoeVRr6m5 .navbar.navbar-short {
  min-height: 90px;
}
.cid-uBoeVRr6m5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBoeVRr6m5 .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uBoeVRr6m5 .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-uBoeVRr6m5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBoeVRr6m5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBoeVRr6m5 .dropdown-item.active,
.cid-uBoeVRr6m5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBoeVRr6m5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBoeVRr6m5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBoeVRr6m5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBoeVRr6m5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-uBoeVRr6m5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBoeVRr6m5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBoeVRr6m5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBoeVRr6m5 .navbar-buttons {
  text-align: center;
}
.cid-uBoeVRr6m5 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-uBoeVRr6m5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uBoeVRr6m5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uBoeVRr6m5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoeVRr6m5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoeVRr6m5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uBoeVRr6m5 nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoeVRr6m5 nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uBoeVRr6m5 nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBoeVRr6m5 nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoeVRr6m5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBoeVRr6m5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBoeVRr6m5 .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-uBoeVRr6m5 .navbar {
    height: 70px;
  }
  .cid-uBoeVRr6m5 .navbar.opened {
    height: auto;
  }
  .cid-uBoeVRr6m5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBoeVRr6m5 .container,
.cid-uBoeVRr6m5 .container-fluid {
  flex-wrap: wrap;
}
.cid-uBoeVRr6m5 .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uBoeVRr6m5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uBoeVRr6m5 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoeVRr6m5 .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uBoeVRr6m5 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uBoeVRr6m5 .navbar-nav {
    width: 100%;
  }
}
.cid-uBoeVSCB5P {
  background-image: url("../../../assets/images/084-960x656.jpg");
  overflow: hidden;
}
.cid-uBoeVSCB5P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoeVSCB5P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoeVSCB5P .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBoeVSCB5P .row {
    flex-wrap: wrap;
  }
}
.cid-uBoeVSCB5P .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoeVSCB5P .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uBoeVSCB5P .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uBoeVSCB5P .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uBoeVSCB5P .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBoeVSCB5P .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uBoeVSCB5P .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uBoeVSCB5P .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uBoeVSCB5P .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoeVSCB5P .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBoeVSCB5P .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoeVSCB5P .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBoeVSCB5P .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uBoeVSCB5P .col-img {
    width: 350px;
  }
}
.cid-uBoeVSCB5P .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBoeVSCB5P .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-uBoeVSCB5P .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uBoeVSCB5P .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoeVSCB5P .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uBoeVSCB5P .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uBoeVSCB5P .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uBoeVSCB5P .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uBoeVSCB5P .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uBoeVSCB5P .mbr-text,
.cid-uBoeVSCB5P .mbr-section-btn {
  text-align: left;
}
.cid-uBoeVTMSqC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBoeVTMSqC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoeVTMSqC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoeVTMSqC .card-wrapper {
  background: #caa9a8;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .cid-uBoeVTMSqC .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBoeVTMSqC .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBoeVTMSqC .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uBoeVTMSqC .mbr-text,
.cid-uBoeVTMSqC .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uBoeVTMSqC .card-title,
.cid-uBoeVTMSqC .card-box {
  text-align: center;
  color: #000000;
}
.cid-uBoeVULu90 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #f1dbda;
}
.cid-uBoeVULu90 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoeVULu90 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoeVULu90 .card-wrapper {
  border: 1px solid #f2003c;
}
.cid-uBoeVULu90 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBoeVULu90 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uBoeVULu90 .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-uBoeVULu90 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBoeVULu90 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBoeVULu90 .content-head {
  max-width: 800px;
}
.cid-uBoeVULu90 .mbr-section-title {
  color: #221b35;
}
.cid-uBoeVVDRwB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoeVVDRwB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoeVVDRwB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoeVVDRwB .content-wrap {
  padding: 60px;
  background-color: #caa9a8;
}
@media (max-width: 992px) {
  .cid-uBoeVVDRwB .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBoeVVDRwB .content-wrap .row {
  justify-content: center;
}
.cid-uBoeVVDRwB .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoeVVDRwB .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoeVVDRwB .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBoeVVDRwB .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uBoeVVDRwB .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uBoeVVDRwB .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBoeVVDRwB .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoeVVDRwB .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoeVVDRwB .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoeVVDRwB .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoeVVDRwB .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoeVVDRwB .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoeVVDRwB .nav-wrapper .list .item-wrap:hover,
.cid-uBoeVVDRwB .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoeVVDRwB .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoeVVDRwB .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoeVVDRwB .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoeVVDRwB .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoeVVDRwB .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoeVVDRwB .contacts-wrapper .list .item-wrap:hover,
.cid-uBoeVVDRwB .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoeVVDRwB .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoeVVDRwB .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoeVVDRwB .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoeVVDRwB .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoeVVDRwB .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBoeVVDRwB .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBoeVVDRwB .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBoeVVDRwB .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uBoeVVDRwB .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uBoeVVDRwB .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uBoeVVDRwB .mbr-section-title {
  color: #ed463f;
}
.cid-uBoeVVDRwB .mbr-section-subtitle {
  color: #404349;
}
.cid-uBoeVVDRwB .list {
  color: #404349;
}
.cid-uBoiPjCFfe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uBoiPjCFfe nav.navbar {
  position: fixed;
}
.cid-uBoiPjCFfe .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-uBoiPjCFfe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBoiPjCFfe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBoiPjCFfe .dropdown-item:hover,
.cid-uBoiPjCFfe .dropdown-item:focus {
  background: #f2003c !important;
  color: white !important;
}
.cid-uBoiPjCFfe .dropdown-item:hover span {
  color: white;
}
.cid-uBoiPjCFfe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBoiPjCFfe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBoiPjCFfe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBoiPjCFfe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBoiPjCFfe .nav-link {
  position: relative;
}
.cid-uBoiPjCFfe .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBoiPjCFfe .container {
    flex-wrap: nowrap;
  }
}
.cid-uBoiPjCFfe .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uBoiPjCFfe .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uBoiPjCFfe .iconfont-wrapper .mbr-iconfont:hover {
  color: #f2003c;
}
.cid-uBoiPjCFfe .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uBoiPjCFfe .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uBoiPjCFfe .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uBoiPjCFfe .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uBoiPjCFfe .dropdown-menu,
.cid-uBoiPjCFfe .navbar.opened {
  background: #f1dbda !important;
}
.cid-uBoiPjCFfe .nav-item:focus,
.cid-uBoiPjCFfe .nav-link:focus {
  outline: none;
}
.cid-uBoiPjCFfe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBoiPjCFfe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBoiPjCFfe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBoiPjCFfe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBoiPjCFfe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBoiPjCFfe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBoiPjCFfe .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uBoiPjCFfe .navbar.opened {
  transition: all 0.3s;
}
.cid-uBoiPjCFfe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBoiPjCFfe .navbar .navbar-logo img {
  width: auto;
}
.cid-uBoiPjCFfe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBoiPjCFfe .navbar.collapsed {
  justify-content: center;
}
.cid-uBoiPjCFfe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBoiPjCFfe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBoiPjCFfe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBoiPjCFfe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBoiPjCFfe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBoiPjCFfe .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-uBoiPjCFfe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBoiPjCFfe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBoiPjCFfe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBoiPjCFfe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBoiPjCFfe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBoiPjCFfe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBoiPjCFfe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBoiPjCFfe .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-uBoiPjCFfe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBoiPjCFfe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBoiPjCFfe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBoiPjCFfe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBoiPjCFfe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBoiPjCFfe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uBoiPjCFfe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uBoiPjCFfe .navbar.navbar-short {
  min-height: 90px;
}
.cid-uBoiPjCFfe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBoiPjCFfe .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uBoiPjCFfe .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-uBoiPjCFfe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBoiPjCFfe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBoiPjCFfe .dropdown-item.active,
.cid-uBoiPjCFfe .dropdown-item:active {
  background-color: transparent;
}
.cid-uBoiPjCFfe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBoiPjCFfe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBoiPjCFfe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBoiPjCFfe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-uBoiPjCFfe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBoiPjCFfe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBoiPjCFfe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBoiPjCFfe .navbar-buttons {
  text-align: center;
}
.cid-uBoiPjCFfe 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-uBoiPjCFfe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uBoiPjCFfe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uBoiPjCFfe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoiPjCFfe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoiPjCFfe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uBoiPjCFfe nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoiPjCFfe nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uBoiPjCFfe nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBoiPjCFfe nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoiPjCFfe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBoiPjCFfe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBoiPjCFfe .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-uBoiPjCFfe .navbar {
    height: 70px;
  }
  .cid-uBoiPjCFfe .navbar.opened {
    height: auto;
  }
  .cid-uBoiPjCFfe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBoiPjCFfe .container,
.cid-uBoiPjCFfe .container-fluid {
  flex-wrap: wrap;
}
.cid-uBoiPjCFfe .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uBoiPjCFfe .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uBoiPjCFfe .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoiPjCFfe .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uBoiPjCFfe .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uBoiPjCFfe .navbar-nav {
    width: 100%;
  }
}
.cid-uBoiPl990o {
  background-image: url("../../../assets/images/jumper-rental-inflatable-obstacle-course-scaled-1-2000x1500.jpg");
  overflow: hidden;
}
.cid-uBoiPl990o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPl990o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPl990o .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBoiPl990o .row {
    flex-wrap: wrap;
  }
}
.cid-uBoiPl990o .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoiPl990o .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPl990o .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uBoiPl990o .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uBoiPl990o .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBoiPl990o .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uBoiPl990o .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uBoiPl990o .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uBoiPl990o .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoiPl990o .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBoiPl990o .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoiPl990o .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBoiPl990o .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uBoiPl990o .col-img {
    width: 350px;
  }
}
.cid-uBoiPl990o .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBoiPl990o .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-uBoiPl990o .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uBoiPl990o .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoiPl990o .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uBoiPl990o .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uBoiPl990o .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uBoiPl990o .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uBoiPl990o .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uBoiPl990o .mbr-text,
.cid-uBoiPl990o .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uBoiPmpfot {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-uBoiPmpfot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPmpfot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPmpfot .text-wrap {
  width: 100%;
}
.cid-uBoiPmpfot .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoiPmpfot .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uBoiPmpfot .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoiPmpfot .list-wrap {
    margin-top: 24px;
  }
}
.cid-uBoiPmpfot .list-box {
  width: 100%;
}
.cid-uBoiPmpfot .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uBoiPmpfot .list-text {
  position: relative;
}
.cid-uBoiPmpfot .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoiPmpfot .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uBoiPnIEOd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBoiPnIEOd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPnIEOd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPnIEOd .card-wrapper {
  background: #caa9a8;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .cid-uBoiPnIEOd .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBoiPnIEOd .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBoiPnIEOd .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uBoiPnIEOd .mbr-text,
.cid-uBoiPnIEOd .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uBoiPnIEOd .card-title,
.cid-uBoiPnIEOd .card-box {
  text-align: center;
  color: #000000;
}
.cid-uBoiPoKtkq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-uBoiPoKtkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPoKtkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPoKtkq .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uBoiPoKtkq .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uBoiPoKtkq .col-text {
    order: 2;
  }
}
.cid-uBoiPoKtkq .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoiPoKtkq .text-wrap {
    margin-top: 30px;
  }
}
.cid-uBoiPoKtkq .mbr-section-title {
  color: #000000;
}
.cid-uBoiPoKtkq .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoiPoKtkq .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBoiPoKtkq .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoiPoKtkq .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uBoiPoKtkq .col-img {
    order: 1;
  }
}
.cid-uBoiPoKtkq .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBoiPoKtkq .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBoiPoKtkq .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-uBoiPoKtkq .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPoKtkq .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-uBoiPoKtkq .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-uBoiPoKtkq .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoiPpBOsJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoiPpBOsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPpBOsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPpBOsJ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoiPpBOsJ .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPpBOsJ .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoiPpBOsJ .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uBoiPpBOsJ .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoiPpBOsJ .text-wrap {
  width: 100%;
}
.cid-uBoiPpBOsJ .mbr-text {
  color: #000000;
}
.cid-uBoiPpBOsJ .list-box {
  width: 100%;
}
.cid-uBoiPpBOsJ .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBoiPpBOsJ .list-text {
  position: relative;
}
.cid-uBoiPpBOsJ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoiPpBOsJ .items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uBoiPpBOsJ .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPpBOsJ .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uBoiPpBOsJ .items-box {
    gap: 16px;
  }
}
.cid-uBoiPpBOsJ .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBoiPpBOsJ .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uBoiPpBOsJ .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uBoiPpBOsJ .item {
    width: 100%;
  }
}
.cid-uBoiPpBOsJ .item:nth-child(1) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uBoiPpBOsJ .item:nth-child(2) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uBoiPpBOsJ .item:nth-child(3) {
  background-color: rgba(241, 219, 218, 0.95);
  border-top-right-radius: 0;
}
.cid-uBoiPpBOsJ .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(208, 196, 183, 0.95);
}
.cid-uBoiPpBOsJ .item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
  max-width: 240px;
  min-height: 138px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .cid-uBoiPpBOsJ .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPpBOsJ .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uBoiPpBOsJ .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uBoiPpBOsJ .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBoiPpBOsJ .item-text {
    margin: 12px 0 0;
  }
}
.cid-uBoiPqOzr5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoiPqOzr5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPqOzr5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPqOzr5 .text-wrap {
  width: 100%;
}
.cid-uBoiPqOzr5 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoiPqOzr5 .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBoiPqOzr5 .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBoiPrHXoC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoiPrHXoC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPrHXoC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBoiPrHXoC .row {
    align-items: center !important;
  }
}
.cid-uBoiPrHXoC .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoiPrHXoC .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPrHXoC .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoiPrHXoC .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uBoiPrHXoC .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoiPrHXoC .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-uBoiPrHXoC .text-wrap {
    padding: 30px 0;
  }
}
.cid-uBoiPrHXoC .mbr-title {
  color: #000000;
}
.cid-uBoiPrHXoC .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uBoiPrHXoC .list-box {
  width: 100%;
}
.cid-uBoiPrHXoC .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBoiPrHXoC .list-text {
  position: relative;
}
.cid-uBoiPrHXoC .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoiPrHXoC .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBoiPrHXoC .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uBoiPrHXoC .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPrHXoC .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uBoiPrHXoC .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoiPsNHBu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoiPsNHBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPsNHBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPsNHBu .text-wrap {
  width: 100%;
}
.cid-uBoiPsNHBu .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoiPsNHBu .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBoiPsNHBu .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBoiPtIZsC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoiPtIZsC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPtIZsC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPtIZsC .text-wrap {
  width: 100%;
}
.cid-uBoiPtIZsC .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uBoiPtIZsC .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoiPtIZsC .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-uBoiPtIZsC .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoiPtIZsC .item-row {
  row-gap: 50px;
}
.cid-uBoiPtIZsC .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uBoiPtIZsC .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-uBoiPtIZsC .img-box img {
  width: 100%;
  height: auto;
}
.cid-uBoiPtIZsC .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-uBoiPtIZsC .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-uBoiPtIZsC .item-text {
    margin: 16px 0 0;
  }
}
.cid-uBoiPtIZsC .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBoiPtIZsC .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uBoiPuTBxz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBoiPuTBxz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPuTBxz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPuTBxz .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBoiPuTBxz .row {
    align-items: center !important;
  }
}
.cid-uBoiPuTBxz .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoiPuTBxz .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPuTBxz .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoiPuTBxz .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uBoiPuTBxz .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoiPuTBxz .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-uBoiPuTBxz .text-wrap {
    padding: 30px 0;
  }
}
.cid-uBoiPuTBxz .mbr-title {
  color: #000000;
}
.cid-uBoiPuTBxz .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uBoiPuTBxz .list-box {
  width: 100%;
}
.cid-uBoiPuTBxz .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBoiPuTBxz .list-text {
  position: relative;
}
.cid-uBoiPuTBxz .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoiPuTBxz .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBoiPuTBxz .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-uBoiPuTBxz .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPuTBxz .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-uBoiPuTBxz .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoiPvUdcs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoiPvUdcs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPvUdcs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPvUdcs .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoiPvUdcs .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uBoiPvUdcs .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uBoiPvUdcs .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uBoiPvUdcs .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uBoiPvUdcs .col-img {
    display: none;
  }
}
.cid-uBoiPvUdcs .img-wrap {
  width: 100%;
}
.cid-uBoiPvUdcs .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBoiPvUdcs .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uBoiPvUdcs .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoiPvUdcs .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uBoiPvUdcs .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-uBoiPvUdcs .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uBoiPvUdcs .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uBoiPvUdcs .panel-group {
    margin-top: 0;
  }
}
.cid-uBoiPvUdcs .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-uBoiPvUdcs .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uBoiPvUdcs .card-header {
    padding: 8px 0;
  }
}
.cid-uBoiPvUdcs .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-uBoiPvUdcs .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uBoiPvUdcs .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uBoiPvUdcs .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uBoiPvUdcs .panel-title-edit {
  color: #000000;
}
.cid-uBoiPvUdcs .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uBoiPvUdcs .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uBoiPvUdcs .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uBoiPxeFBk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/2021-10-05-2-2000x1335.jpg");
}
.cid-uBoiPxeFBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPxeFBk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPxeFBk .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-uBoiPxeFBk .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uBoiPxeFBk .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uBoiPxeFBk .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uBoiPxeFBk .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBoiPxeFBk .mbr-text {
    margin-top: 16px;
  }
}
.cid-uBoiPxeFBk .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBoiPxeFBk .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBoiPy5YkS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoiPy5YkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPy5YkS .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-uBoiPy5YkS .container {
    padding: 0 20px;
  }
}
.cid-uBoiPy5YkS .row {
  margin: 0;
}
.cid-uBoiPy5YkS .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBoiPy5YkS .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBoiPy5YkS .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBoiPy5YkS .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBoiPy5YkS .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBoiPy5YkS .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBoiPy5YkS .mbr-section-title {
  color: #000000;
}
.cid-uBoiPz1qqR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoiPz1qqR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPz1qqR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPz1qqR .text-wrap {
  width: 100%;
}
.cid-uBoiPz1qqR .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoiPz1qqR .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBoiPz1qqR .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBqUtragNe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #caa9a8;
}
.cid-uBqUtragNe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBqUtragNe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBqUtragNe .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uBqUtragNe .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uBqUtragNe .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBqUtragNe .container {
    padding: 0 16px;
  }
}
.cid-uBqUtragNe .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uBqUtragNe .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uBqUtragNe .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #000000;
}
.cid-uBqUtragNe .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uBqUtragNe .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uBqUtragNe .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBqUtragNe .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uBqUtragNe .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uBqUtragNe .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uBqUtragNe .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uBqUtragNe .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uBqUtragNe .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uBqUtragNe .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uBqUtragNe .mbr-section-title {
  color: #1c1c1c;
}
.cid-uBqUtragNe .panel-number {
  color: #1c1c1c;
}
.cid-uBqUtragNe .panel-title-edit {
  color: #1c1c1c;
}
.cid-uBqUtragNe .panel-text {
  color: #1c1c1c;
}
.cid-uBoiPA2F0C {
  padding-top: 7rem;
  padding-bottom: 6rem;
  background: #f1dbda;
}
.cid-uBoiPA2F0C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPA2F0C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPA2F0C .card-wrapper {
  border: 1px solid #f2003c;
}
.cid-uBoiPA2F0C .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBoiPA2F0C .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uBoiPA2F0C .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-uBoiPA2F0C .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBoiPA2F0C .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBoiPA2F0C .content-head {
  max-width: 800px;
}
.cid-uBoiPA2F0C .mbr-section-title {
  color: #221b35;
}
.cid-uBoiPB1L9q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoiPB1L9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoiPB1L9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoiPB1L9q .content-wrap {
  padding: 60px;
  background-color: #caa9a8;
}
@media (max-width: 992px) {
  .cid-uBoiPB1L9q .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBoiPB1L9q .content-wrap .row {
  justify-content: center;
}
.cid-uBoiPB1L9q .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoiPB1L9q .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoiPB1L9q .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBoiPB1L9q .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uBoiPB1L9q .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uBoiPB1L9q .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBoiPB1L9q .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoiPB1L9q .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoiPB1L9q .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoiPB1L9q .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoiPB1L9q .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoiPB1L9q .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoiPB1L9q .nav-wrapper .list .item-wrap:hover,
.cid-uBoiPB1L9q .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoiPB1L9q .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoiPB1L9q .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoiPB1L9q .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoiPB1L9q .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoiPB1L9q .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoiPB1L9q .contacts-wrapper .list .item-wrap:hover,
.cid-uBoiPB1L9q .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoiPB1L9q .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoiPB1L9q .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoiPB1L9q .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoiPB1L9q .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoiPB1L9q .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBoiPB1L9q .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBoiPB1L9q .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBoiPB1L9q .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uBoiPB1L9q .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uBoiPB1L9q .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uBoiPB1L9q .mbr-section-title {
  color: #ed463f;
}
.cid-uBoiPB1L9q .mbr-section-subtitle {
  color: #404349;
}
.cid-uBoiPB1L9q .list {
  color: #404349;
}
.cid-uBoktLAnQK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uBoktLAnQK nav.navbar {
  position: fixed;
}
.cid-uBoktLAnQK .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-uBoktLAnQK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBoktLAnQK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBoktLAnQK .dropdown-item:hover,
.cid-uBoktLAnQK .dropdown-item:focus {
  background: #f2003c !important;
  color: white !important;
}
.cid-uBoktLAnQK .dropdown-item:hover span {
  color: white;
}
.cid-uBoktLAnQK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBoktLAnQK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBoktLAnQK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBoktLAnQK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBoktLAnQK .nav-link {
  position: relative;
}
.cid-uBoktLAnQK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBoktLAnQK .container {
    flex-wrap: nowrap;
  }
}
.cid-uBoktLAnQK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uBoktLAnQK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uBoktLAnQK .iconfont-wrapper .mbr-iconfont:hover {
  color: #f2003c;
}
.cid-uBoktLAnQK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uBoktLAnQK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uBoktLAnQK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uBoktLAnQK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uBoktLAnQK .dropdown-menu,
.cid-uBoktLAnQK .navbar.opened {
  background: #f1dbda !important;
}
.cid-uBoktLAnQK .nav-item:focus,
.cid-uBoktLAnQK .nav-link:focus {
  outline: none;
}
.cid-uBoktLAnQK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBoktLAnQK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBoktLAnQK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBoktLAnQK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBoktLAnQK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBoktLAnQK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBoktLAnQK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uBoktLAnQK .navbar.opened {
  transition: all 0.3s;
}
.cid-uBoktLAnQK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBoktLAnQK .navbar .navbar-logo img {
  width: auto;
}
.cid-uBoktLAnQK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBoktLAnQK .navbar.collapsed {
  justify-content: center;
}
.cid-uBoktLAnQK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBoktLAnQK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBoktLAnQK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBoktLAnQK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBoktLAnQK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBoktLAnQK .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-uBoktLAnQK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBoktLAnQK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBoktLAnQK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBoktLAnQK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBoktLAnQK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBoktLAnQK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBoktLAnQK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBoktLAnQK .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-uBoktLAnQK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBoktLAnQK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBoktLAnQK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBoktLAnQK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBoktLAnQK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBoktLAnQK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uBoktLAnQK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uBoktLAnQK .navbar.navbar-short {
  min-height: 90px;
}
.cid-uBoktLAnQK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBoktLAnQK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uBoktLAnQK .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-uBoktLAnQK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBoktLAnQK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBoktLAnQK .dropdown-item.active,
.cid-uBoktLAnQK .dropdown-item:active {
  background-color: transparent;
}
.cid-uBoktLAnQK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBoktLAnQK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBoktLAnQK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBoktLAnQK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-uBoktLAnQK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBoktLAnQK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBoktLAnQK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBoktLAnQK .navbar-buttons {
  text-align: center;
}
.cid-uBoktLAnQK 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-uBoktLAnQK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uBoktLAnQK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uBoktLAnQK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoktLAnQK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBoktLAnQK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uBoktLAnQK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoktLAnQK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uBoktLAnQK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBoktLAnQK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBoktLAnQK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBoktLAnQK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBoktLAnQK .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-uBoktLAnQK .navbar {
    height: 70px;
  }
  .cid-uBoktLAnQK .navbar.opened {
    height: auto;
  }
  .cid-uBoktLAnQK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBoktLAnQK .container,
.cid-uBoktLAnQK .container-fluid {
  flex-wrap: wrap;
}
.cid-uBoktLAnQK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uBoktLAnQK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uBoktLAnQK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoktLAnQK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uBoktLAnQK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uBoktLAnQK .navbar-nav {
    width: 100%;
  }
}
.cid-uBoktN4HNd {
  background-image: url("../../../assets/images/646535bd296de.image-1200x655.jpg");
  overflow: hidden;
}
.cid-uBoktN4HNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktN4HNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktN4HNd .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBoktN4HNd .row {
    flex-wrap: wrap;
  }
}
.cid-uBoktN4HNd .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoktN4HNd .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uBoktN4HNd .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uBoktN4HNd .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uBoktN4HNd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBoktN4HNd .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uBoktN4HNd .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uBoktN4HNd .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uBoktN4HNd .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoktN4HNd .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBoktN4HNd .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoktN4HNd .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBoktN4HNd .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uBoktN4HNd .col-img {
    width: 350px;
  }
}
.cid-uBoktN4HNd .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBoktN4HNd .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-uBoktN4HNd .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uBoktN4HNd .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoktN4HNd .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uBoktN4HNd .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uBoktN4HNd .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uBoktN4HNd .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uBoktN4HNd .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uBoktN4HNd .mbr-text,
.cid-uBoktN4HNd .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uBoktOmL4y {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-uBoktOmL4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktOmL4y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktOmL4y .text-wrap {
  width: 100%;
}
.cid-uBoktOmL4y .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoktOmL4y .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uBoktOmL4y .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoktOmL4y .list-wrap {
    margin-top: 24px;
  }
}
.cid-uBoktOmL4y .list-box {
  width: 100%;
}
.cid-uBoktOmL4y .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #000000;
}
.cid-uBoktOmL4y .list-text {
  position: relative;
}
.cid-uBoktOmL4y .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoktOmL4y .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uBoktPqEdb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBoktPqEdb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktPqEdb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktPqEdb .card-wrapper {
  background: #caa9a8;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .cid-uBoktPqEdb .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBoktPqEdb .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBoktPqEdb .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uBoktPqEdb .mbr-text,
.cid-uBoktPqEdb .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uBoktPqEdb .card-title,
.cid-uBoktPqEdb .card-box {
  text-align: center;
  color: #000000;
}
.cid-uBoktQrRNt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-uBoktQrRNt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktQrRNt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktQrRNt .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uBoktQrRNt .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uBoktQrRNt .col-text {
    order: 2;
  }
}
.cid-uBoktQrRNt .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBoktQrRNt .text-wrap {
    margin-top: 30px;
  }
}
.cid-uBoktQrRNt .mbr-section-title {
  color: #000000;
}
.cid-uBoktQrRNt .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoktQrRNt .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBoktQrRNt .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBoktQrRNt .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uBoktQrRNt .col-img {
    order: 1;
  }
}
.cid-uBoktQrRNt .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBoktQrRNt .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBoktQrRNt .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-uBoktQrRNt .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-uBoktQrRNt .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-uBoktQrRNt .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-uBoktQrRNt .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoktRmSQM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoktRmSQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktRmSQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktRmSQM .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoktRmSQM .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBoktRmSQM .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoktRmSQM .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uBoktRmSQM .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoktRmSQM .text-wrap {
  width: 100%;
}
.cid-uBoktRmSQM .mbr-text {
  color: #000000;
}
.cid-uBoktRmSQM .list-box {
  width: 100%;
}
.cid-uBoktRmSQM .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBoktRmSQM .list-text {
  position: relative;
}
.cid-uBoktRmSQM .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoktRmSQM .items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uBoktRmSQM .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uBoktRmSQM .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uBoktRmSQM .items-box {
    gap: 16px;
  }
}
.cid-uBoktRmSQM .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBoktRmSQM .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uBoktRmSQM .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uBoktRmSQM .item {
    width: 100%;
  }
}
.cid-uBoktRmSQM .item:nth-child(1) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uBoktRmSQM .item:nth-child(2) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uBoktRmSQM .item:nth-child(3) {
  background-color: rgba(241, 219, 218, 0.95);
  border-top-right-radius: 0;
}
.cid-uBoktRmSQM .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(208, 196, 183, 0.95);
}
.cid-uBoktRmSQM .item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
  max-width: 240px;
  min-height: 138px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .cid-uBoktRmSQM .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uBoktRmSQM .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uBoktRmSQM .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uBoktRmSQM .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBoktRmSQM .item-text {
    margin: 12px 0 0;
  }
}
.cid-uBoktT5Mjp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoktT5Mjp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktT5Mjp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktT5Mjp .text-wrap {
  width: 100%;
}
.cid-uBoktT5Mjp .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoktT5Mjp .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBoktT5Mjp .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBoktTWZYp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoktTWZYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktTWZYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBoktTWZYp .row {
    align-items: center !important;
  }
}
.cid-uBoktTWZYp .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoktTWZYp .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBoktTWZYp .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoktTWZYp .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uBoktTWZYp .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoktTWZYp .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-uBoktTWZYp .text-wrap {
    padding: 30px 0;
  }
}
.cid-uBoktTWZYp .mbr-title {
  color: #000000;
}
.cid-uBoktTWZYp .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uBoktTWZYp .list-box {
  width: 100%;
}
.cid-uBoktTWZYp .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBoktTWZYp .list-text {
  position: relative;
}
.cid-uBoktTWZYp .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoktTWZYp .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBoktTWZYp .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uBoktTWZYp .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uBoktTWZYp .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uBoktTWZYp .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoktURvqN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoktURvqN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktURvqN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktURvqN .text-wrap {
  width: 100%;
}
.cid-uBoktURvqN .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoktURvqN .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBoktURvqN .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBoktVArsq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoktVArsq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktVArsq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktVArsq .text-wrap {
  width: 100%;
}
.cid-uBoktVArsq .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uBoktVArsq .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoktVArsq .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-uBoktVArsq .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoktVArsq .item-row {
  row-gap: 50px;
}
.cid-uBoktVArsq .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uBoktVArsq .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-uBoktVArsq .img-box img {
  width: 100%;
  height: auto;
}
.cid-uBoktVArsq .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-uBoktVArsq .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-uBoktVArsq .item-text {
    margin: 16px 0 0;
  }
}
.cid-uBoktVArsq .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBoktVArsq .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uBoktWJ8OW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBoktWJ8OW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktWJ8OW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktWJ8OW .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBoktWJ8OW .row {
    align-items: center !important;
  }
}
.cid-uBoktWJ8OW .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoktWJ8OW .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBoktWJ8OW .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBoktWJ8OW .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uBoktWJ8OW .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBoktWJ8OW .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-uBoktWJ8OW .text-wrap {
    padding: 30px 0;
  }
}
.cid-uBoktWJ8OW .mbr-title {
  color: #000000;
}
.cid-uBoktWJ8OW .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uBoktWJ8OW .list-box {
  width: 100%;
}
.cid-uBoktWJ8OW .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBoktWJ8OW .list-text {
  position: relative;
}
.cid-uBoktWJ8OW .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBoktWJ8OW .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBoktWJ8OW .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-uBoktWJ8OW .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uBoktWJ8OW .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-uBoktWJ8OW .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoktXDWvW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBoktXDWvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktXDWvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktXDWvW .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBoktXDWvW .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uBoktXDWvW .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uBoktXDWvW .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uBoktXDWvW .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uBoktXDWvW .col-img {
    display: none;
  }
}
.cid-uBoktXDWvW .img-wrap {
  width: 100%;
}
.cid-uBoktXDWvW .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBoktXDWvW .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uBoktXDWvW .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBoktXDWvW .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uBoktXDWvW .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-uBoktXDWvW .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uBoktXDWvW .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uBoktXDWvW .panel-group {
    margin-top: 0;
  }
}
.cid-uBoktXDWvW .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-uBoktXDWvW .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uBoktXDWvW .card-header {
    padding: 8px 0;
  }
}
.cid-uBoktXDWvW .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-uBoktXDWvW .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uBoktXDWvW .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uBoktXDWvW .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uBoktXDWvW .panel-title-edit {
  color: #000000;
}
.cid-uBoktXDWvW .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uBoktXDWvW .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uBoktXDWvW .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uBoktZjzUL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-8496-scaled-1-2000x1500.jpg");
}
.cid-uBoktZjzUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoktZjzUL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoktZjzUL .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-uBoktZjzUL .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uBoktZjzUL .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uBoktZjzUL .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uBoktZjzUL .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBoktZjzUL .mbr-text {
    margin-top: 16px;
  }
}
.cid-uBoktZjzUL .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBoktZjzUL .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBoku0keGL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoku0keGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoku0keGL .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-uBoku0keGL .container {
    padding: 0 20px;
  }
}
.cid-uBoku0keGL .row {
  margin: 0;
}
.cid-uBoku0keGL .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBoku0keGL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBoku0keGL .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBoku0keGL .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBoku0keGL .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBoku0keGL .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBoku0keGL .mbr-section-title {
  color: #000000;
}
.cid-uBoku1dZZF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoku1dZZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoku1dZZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoku1dZZF .text-wrap {
  width: 100%;
}
.cid-uBoku1dZZF .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBoku1dZZF .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBoku1dZZF .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBqWHYAAde {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #caa9a8;
}
.cid-uBqWHYAAde .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBqWHYAAde .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBqWHYAAde .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uBqWHYAAde .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uBqWHYAAde .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBqWHYAAde .container {
    padding: 0 16px;
  }
}
.cid-uBqWHYAAde .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uBqWHYAAde .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uBqWHYAAde .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #000000;
}
.cid-uBqWHYAAde .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uBqWHYAAde .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uBqWHYAAde .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBqWHYAAde .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uBqWHYAAde .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uBqWHYAAde .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uBqWHYAAde .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uBqWHYAAde .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uBqWHYAAde .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uBqWHYAAde .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uBqWHYAAde .mbr-section-title {
  color: #1c1c1c;
}
.cid-uBqWHYAAde .panel-number {
  color: #1c1c1c;
}
.cid-uBqWHYAAde .panel-title-edit {
  color: #1c1c1c;
}
.cid-uBqWHYAAde .panel-text {
  color: #1c1c1c;
}
.cid-uBoku21VqO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f1dbda;
}
.cid-uBoku21VqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoku21VqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoku21VqO .card-wrapper {
  border: 1px solid #f2003c;
}
.cid-uBoku21VqO .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBoku21VqO .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uBoku21VqO .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-uBoku21VqO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBoku21VqO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBoku21VqO .content-head {
  max-width: 800px;
}
.cid-uBoku21VqO .mbr-section-title {
  color: #221b35;
}
.cid-uBoku2V9c6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBoku2V9c6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBoku2V9c6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBoku2V9c6 .content-wrap {
  padding: 60px;
  background-color: #caa9a8;
}
@media (max-width: 992px) {
  .cid-uBoku2V9c6 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBoku2V9c6 .content-wrap .row {
  justify-content: center;
}
.cid-uBoku2V9c6 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoku2V9c6 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoku2V9c6 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBoku2V9c6 .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uBoku2V9c6 .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uBoku2V9c6 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBoku2V9c6 .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoku2V9c6 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoku2V9c6 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoku2V9c6 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoku2V9c6 .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoku2V9c6 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoku2V9c6 .nav-wrapper .list .item-wrap:hover,
.cid-uBoku2V9c6 .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoku2V9c6 .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoku2V9c6 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoku2V9c6 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoku2V9c6 .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBoku2V9c6 .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBoku2V9c6 .contacts-wrapper .list .item-wrap:hover,
.cid-uBoku2V9c6 .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBoku2V9c6 .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBoku2V9c6 .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBoku2V9c6 .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBoku2V9c6 .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBoku2V9c6 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBoku2V9c6 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBoku2V9c6 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBoku2V9c6 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uBoku2V9c6 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uBoku2V9c6 .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uBoku2V9c6 .mbr-section-title {
  color: #ed463f;
}
.cid-uBoku2V9c6 .mbr-section-subtitle {
  color: #404349;
}
.cid-uBoku2V9c6 .list {
  color: #404349;
}
.cid-uBomg2aI9q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uBomg2aI9q nav.navbar {
  position: fixed;
}
.cid-uBomg2aI9q .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-uBomg2aI9q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBomg2aI9q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBomg2aI9q .dropdown-item:hover,
.cid-uBomg2aI9q .dropdown-item:focus {
  background: #f2003c !important;
  color: white !important;
}
.cid-uBomg2aI9q .dropdown-item:hover span {
  color: white;
}
.cid-uBomg2aI9q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBomg2aI9q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBomg2aI9q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBomg2aI9q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBomg2aI9q .nav-link {
  position: relative;
}
.cid-uBomg2aI9q .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uBomg2aI9q .container {
    flex-wrap: nowrap;
  }
}
.cid-uBomg2aI9q .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uBomg2aI9q .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uBomg2aI9q .iconfont-wrapper .mbr-iconfont:hover {
  color: #f2003c;
}
.cid-uBomg2aI9q .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uBomg2aI9q .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uBomg2aI9q .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uBomg2aI9q .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uBomg2aI9q .dropdown-menu,
.cid-uBomg2aI9q .navbar.opened {
  background: #f1dbda !important;
}
.cid-uBomg2aI9q .nav-item:focus,
.cid-uBomg2aI9q .nav-link:focus {
  outline: none;
}
.cid-uBomg2aI9q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBomg2aI9q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBomg2aI9q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBomg2aI9q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBomg2aI9q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBomg2aI9q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBomg2aI9q .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #f1dbda;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uBomg2aI9q .navbar.opened {
  transition: all 0.3s;
}
.cid-uBomg2aI9q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBomg2aI9q .navbar .navbar-logo img {
  width: auto;
}
.cid-uBomg2aI9q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBomg2aI9q .navbar.collapsed {
  justify-content: center;
}
.cid-uBomg2aI9q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBomg2aI9q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBomg2aI9q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uBomg2aI9q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBomg2aI9q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBomg2aI9q .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-uBomg2aI9q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBomg2aI9q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBomg2aI9q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBomg2aI9q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBomg2aI9q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBomg2aI9q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBomg2aI9q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBomg2aI9q .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-uBomg2aI9q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBomg2aI9q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBomg2aI9q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBomg2aI9q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBomg2aI9q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBomg2aI9q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uBomg2aI9q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uBomg2aI9q .navbar.navbar-short {
  min-height: 90px;
}
.cid-uBomg2aI9q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBomg2aI9q .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uBomg2aI9q .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-uBomg2aI9q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBomg2aI9q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBomg2aI9q .dropdown-item.active,
.cid-uBomg2aI9q .dropdown-item:active {
  background-color: transparent;
}
.cid-uBomg2aI9q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBomg2aI9q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBomg2aI9q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBomg2aI9q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f1dbda;
}
.cid-uBomg2aI9q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBomg2aI9q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBomg2aI9q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBomg2aI9q .navbar-buttons {
  text-align: center;
}
.cid-uBomg2aI9q 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-uBomg2aI9q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #715537;
}
.cid-uBomg2aI9q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uBomg2aI9q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBomg2aI9q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uBomg2aI9q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uBomg2aI9q nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBomg2aI9q nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uBomg2aI9q nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBomg2aI9q nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uBomg2aI9q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBomg2aI9q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBomg2aI9q .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-uBomg2aI9q .navbar {
    height: 70px;
  }
  .cid-uBomg2aI9q .navbar.opened {
    height: auto;
  }
  .cid-uBomg2aI9q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBomg2aI9q .container,
.cid-uBomg2aI9q .container-fluid {
  flex-wrap: wrap;
}
.cid-uBomg2aI9q .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uBomg2aI9q .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uBomg2aI9q .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uBomg2aI9q .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uBomg2aI9q .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uBomg2aI9q .navbar-nav {
    width: 100%;
  }
}
.cid-uBomg3Czz0 {
  background-image: url("../../../assets/images/img-1596-2000x1500.jpg");
  overflow: hidden;
}
.cid-uBomg3Czz0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg3Czz0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg3Czz0 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBomg3Czz0 .row {
    flex-wrap: wrap;
  }
}
.cid-uBomg3Czz0 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBomg3Czz0 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uBomg3Czz0 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uBomg3Czz0 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uBomg3Czz0 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uBomg3Czz0 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uBomg3Czz0 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uBomg3Czz0 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uBomg3Czz0 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBomg3Czz0 .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBomg3Czz0 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBomg3Czz0 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBomg3Czz0 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uBomg3Czz0 .col-img {
    width: 350px;
  }
}
.cid-uBomg3Czz0 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBomg3Czz0 .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-uBomg3Czz0 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uBomg3Czz0 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBomg3Czz0 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uBomg3Czz0 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uBomg3Czz0 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uBomg3Czz0 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uBomg3Czz0 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uBomg3Czz0 .mbr-text,
.cid-uBomg3Czz0 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uBomg4GQK8 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f1dbda;
}
.cid-uBomg4GQK8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg4GQK8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg4GQK8 .text-wrap {
  width: 100%;
}
.cid-uBomg4GQK8 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBomg4GQK8 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uBomg4GQK8 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBomg4GQK8 .list-wrap {
    margin-top: 24px;
  }
}
.cid-uBomg4GQK8 .list-box {
  width: 100%;
}
.cid-uBomg4GQK8 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #000000;
}
.cid-uBomg4GQK8 .list-text {
  position: relative;
}
.cid-uBomg4GQK8 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBomg4GQK8 .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uBomg5pis7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBomg5pis7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg5pis7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg5pis7 .card-wrapper {
  background: #caa9a8;
  border-radius: 13rem;
}
@media (max-width: 767px) {
  .cid-uBomg5pis7 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uBomg5pis7 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uBomg5pis7 .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uBomg5pis7 .mbr-text,
.cid-uBomg5pis7 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uBomg5pis7 .card-title,
.cid-uBomg5pis7 .card-box {
  text-align: center;
  color: #000000;
}
.cid-uBomg6aEfS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
  overflow: hidden;
}
.cid-uBomg6aEfS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg6aEfS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg6aEfS .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uBomg6aEfS .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uBomg6aEfS .col-text {
    order: 2;
  }
}
.cid-uBomg6aEfS .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uBomg6aEfS .text-wrap {
    margin-top: 30px;
  }
}
.cid-uBomg6aEfS .mbr-section-title {
  color: #000000;
}
.cid-uBomg6aEfS .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBomg6aEfS .mbr-text {
    margin-top: 12px;
  }
}
.cid-uBomg6aEfS .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uBomg6aEfS .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uBomg6aEfS .col-img {
    order: 1;
  }
}
.cid-uBomg6aEfS .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uBomg6aEfS .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBomg6aEfS .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-uBomg6aEfS .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-uBomg6aEfS .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-uBomg6aEfS .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-uBomg6aEfS .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBomg6aEfS .mbr-text,
.cid-uBomg6aEfS .mbr-section-btn {
  color: #000000;
}
.cid-uBomg6Tpmw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBomg6Tpmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg6Tpmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg6Tpmw .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBomg6Tpmw .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBomg6Tpmw .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBomg6Tpmw .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uBomg6Tpmw .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBomg6Tpmw .text-wrap {
  width: 100%;
}
.cid-uBomg6Tpmw .mbr-text {
  color: #000000;
}
.cid-uBomg6Tpmw .list-box {
  width: 100%;
}
.cid-uBomg6Tpmw .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBomg6Tpmw .list-text {
  position: relative;
}
.cid-uBomg6Tpmw .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBomg6Tpmw .items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uBomg6Tpmw .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uBomg6Tpmw .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uBomg6Tpmw .items-box {
    gap: 16px;
  }
}
.cid-uBomg6Tpmw .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBomg6Tpmw .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uBomg6Tpmw .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uBomg6Tpmw .item {
    width: 100%;
  }
}
.cid-uBomg6Tpmw .item:nth-child(1) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uBomg6Tpmw .item:nth-child(2) {
  background-color: rgba(241, 219, 218, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uBomg6Tpmw .item:nth-child(3) {
  background-color: rgba(241, 219, 218, 0.95);
  border-top-right-radius: 0;
}
.cid-uBomg6Tpmw .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(208, 196, 183, 0.95);
}
.cid-uBomg6Tpmw .item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 240px;
  max-width: 240px;
  min-height: 138px;
  padding: 30px;
}
@media (max-width: 1199px) {
  .cid-uBomg6Tpmw .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uBomg6Tpmw .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uBomg6Tpmw .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uBomg6Tpmw .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uBomg6Tpmw .item-text {
    margin: 12px 0 0;
  }
}
.cid-uBomg7ZwkM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBomg7ZwkM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg7ZwkM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg7ZwkM .text-wrap {
  width: 100%;
}
.cid-uBomg7ZwkM .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBomg7ZwkM .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBomg7ZwkM .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBomg8R3yn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBomg8R3yn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg8R3yn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBomg8R3yn .row {
    align-items: center !important;
  }
}
.cid-uBomg8R3yn .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBomg8R3yn .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBomg8R3yn .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBomg8R3yn .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uBomg8R3yn .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBomg8R3yn .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #895957;
}
@media (max-width: 991px) {
  .cid-uBomg8R3yn .text-wrap {
    padding: 30px 0;
  }
}
.cid-uBomg8R3yn .mbr-title {
  color: #000000;
}
.cid-uBomg8R3yn .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uBomg8R3yn .list-box {
  width: 100%;
}
.cid-uBomg8R3yn .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBomg8R3yn .list-text {
  position: relative;
}
.cid-uBomg8R3yn .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBomg8R3yn .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBomg8R3yn .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uBomg8R3yn .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uBomg8R3yn .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uBomg8R3yn .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBomg9O8Nq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBomg9O8Nq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomg9O8Nq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomg9O8Nq .text-wrap {
  width: 100%;
}
.cid-uBomg9O8Nq .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBomg9O8Nq .mbr-text {
  padding-top: 10px;
  color: #232323;
}
.cid-uBomg9O8Nq .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBomgaLJBz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBomgaLJBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomgaLJBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomgaLJBz .text-wrap {
  width: 100%;
}
.cid-uBomgaLJBz .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uBomgaLJBz .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBomgaLJBz .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-uBomgaLJBz .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uBomgaLJBz .item-row {
  row-gap: 50px;
}
.cid-uBomgaLJBz .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uBomgaLJBz .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-uBomgaLJBz .img-box img {
  width: 100%;
  height: auto;
}
.cid-uBomgaLJBz .item-title {
  width: 100%;
  margin: 0;
  color: #000000;
}
.cid-uBomgaLJBz .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-uBomgaLJBz .item-text {
    margin: 16px 0 0;
  }
}
.cid-uBomgaLJBz .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBomgaLJBz .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uBomgc1mu2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBomgc1mu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomgc1mu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomgc1mu2 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uBomgc1mu2 .row {
    align-items: center !important;
  }
}
.cid-uBomgc1mu2 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBomgc1mu2 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uBomgc1mu2 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uBomgc1mu2 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uBomgc1mu2 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uBomgc1mu2 .text-wrap {
  width: 100%;
  padding: 36px 0;
}
@media (max-width: 991px) {
  .cid-uBomgc1mu2 .text-wrap {
    padding: 30px 0;
  }
}
.cid-uBomgc1mu2 .mbr-title {
  color: #000000;
}
.cid-uBomgc1mu2 .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uBomgc1mu2 .list-box {
  width: 100%;
}
.cid-uBomgc1mu2 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uBomgc1mu2 .list-text {
  position: relative;
}
.cid-uBomgc1mu2 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uBomgc1mu2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uBomgc1mu2 .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-uBomgc1mu2 .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uBomgc1mu2 .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-uBomgc1mu2 .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBomgc1mu2 .mbr-text,
.cid-uBomgc1mu2 .mbr-section-btn {
  color: #000000;
}
.cid-uBomgcUpgh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #caa9a8;
}
.cid-uBomgcUpgh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomgcUpgh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomgcUpgh .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uBomgcUpgh .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uBomgcUpgh .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uBomgcUpgh .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-uBomgcUpgh .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uBomgcUpgh .col-img {
    display: none;
  }
}
.cid-uBomgcUpgh .img-wrap {
  width: 100%;
}
.cid-uBomgcUpgh .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uBomgcUpgh .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uBomgcUpgh .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uBomgcUpgh .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uBomgcUpgh .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-uBomgcUpgh .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uBomgcUpgh .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uBomgcUpgh .panel-group {
    margin-top: 0;
  }
}
.cid-uBomgcUpgh .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-uBomgcUpgh .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uBomgcUpgh .card-header {
    padding: 8px 0;
  }
}
.cid-uBomgcUpgh .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-uBomgcUpgh .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uBomgcUpgh .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uBomgcUpgh .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uBomgcUpgh .panel-title-edit {
  color: #000000;
}
.cid-uBomgcUpgh .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uBomgcUpgh .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uBomgcUpgh .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uBomge662C {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uBomge662C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomge662C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomge662C .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 0;
}
.cid-uBomge662C .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uBomge662C .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uBomge662C .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uBomge662C .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBomge662C .mbr-text {
    margin-top: 16px;
  }
}
.cid-uBomge662C .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uBomge662C .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uBomge662C .mbr-text,
.cid-uBomge662C .mbr-section-btn {
  color: #000000;
}
.cid-uBomgf0tgd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBomgf0tgd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomgf0tgd .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-uBomgf0tgd .container {
    padding: 0 20px;
  }
}
.cid-uBomgf0tgd .row {
  margin: 0;
}
.cid-uBomgf0tgd .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uBomgf0tgd .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uBomgf0tgd .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uBomgf0tgd .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uBomgf0tgd .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uBomgf0tgd .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uBomgf0tgd .mbr-section-title {
  color: #000000;
}
.cid-uBomgfV4QM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBomgfV4QM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomgfV4QM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomgfV4QM .text-wrap {
  width: 100%;
}
.cid-uBomgfV4QM .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uBomgfV4QM .mbr-text {
  padding-top: 10px;
  color: #000000;
}
.cid-uBomgfV4QM .comment-text {
  margin-top: 40px;
  color: #000000;
  padding: 0 20px 0 30px;
  border-left: 1px solid currentColor;
}
.cid-uBqXOVqIOi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #caa9a8;
}
.cid-uBqXOVqIOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBqXOVqIOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBqXOVqIOi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uBqXOVqIOi .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uBqXOVqIOi .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBqXOVqIOi .container {
    padding: 0 16px;
  }
}
.cid-uBqXOVqIOi .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uBqXOVqIOi .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uBqXOVqIOi .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #000000;
}
.cid-uBqXOVqIOi .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uBqXOVqIOi .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-uBqXOVqIOi .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uBqXOVqIOi .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-uBqXOVqIOi .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-uBqXOVqIOi .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-uBqXOVqIOi .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uBqXOVqIOi .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-uBqXOVqIOi .mbr-section-title {
  color: #1c1c1c;
}
.cid-uBqXOVqIOi .panel-number {
  color: #1c1c1c;
}
.cid-uBqXOVqIOi .panel-title-edit {
  color: #1c1c1c;
}
.cid-uBqXOVqIOi .panel-text {
  color: #1c1c1c;
}
.cid-uBomggOv5w {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #f1dbda;
}
.cid-uBomggOv5w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomggOv5w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomggOv5w .card-wrapper {
  border: 1px solid #f2003c;
}
.cid-uBomggOv5w .google-map {
  height: 30rem;
  position: relative;
}
.cid-uBomggOv5w .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uBomggOv5w .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-uBomggOv5w .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uBomggOv5w .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uBomggOv5w .content-head {
  max-width: 800px;
}
.cid-uBomggOv5w .mbr-section-title {
  color: #221b35;
}
.cid-uBomgiDpB7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1dbda;
}
.cid-uBomgiDpB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBomgiDpB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBomgiDpB7 .content-wrap {
  padding: 60px;
  background-color: #caa9a8;
}
@media (max-width: 992px) {
  .cid-uBomgiDpB7 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uBomgiDpB7 .content-wrap .row {
  justify-content: center;
}
.cid-uBomgiDpB7 .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBomgiDpB7 .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBomgiDpB7 .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uBomgiDpB7 .title-wrapper .title-wrap .logo-wrapper {
  margin-right: 8px;
}
.cid-uBomgiDpB7 .title-wrapper .title-wrap .logo-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px !important;
}
.cid-uBomgiDpB7 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uBomgiDpB7 .nav-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBomgiDpB7 .nav-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBomgiDpB7 .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBomgiDpB7 .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBomgiDpB7 .nav-wrapper .list .item-wrap {
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBomgiDpB7 .nav-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBomgiDpB7 .nav-wrapper .list .item-wrap:hover,
.cid-uBomgiDpB7 .nav-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBomgiDpB7 .contacts-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBomgiDpB7 .contacts-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBomgiDpB7 .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBomgiDpB7 .contacts-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uBomgiDpB7 .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uBomgiDpB7 .contacts-wrapper .list .item-wrap:hover,
.cid-uBomgiDpB7 .contacts-wrapper .list .item-wrap:focus {
  color: #ed463f;
}
.cid-uBomgiDpB7 .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uBomgiDpB7 .social-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBomgiDpB7 .social-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uBomgiDpB7 .social-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uBomgiDpB7 .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uBomgiDpB7 .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uBomgiDpB7 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uBomgiDpB7 .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont {
  transform: scale(1.1);
}
.cid-uBomgiDpB7 .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  color: #ffffff;
  background-color: #ed463f;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 0 10px 10px 0;
}
.cid-uBomgiDpB7 .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
  color: #000000;
  text-align: center;
}
.cid-uBomgiDpB7 .mbr-section-title {
  color: #ed463f;
}
.cid-uBomgiDpB7 .mbr-section-subtitle {
  color: #404349;
}
.cid-uBomgiDpB7 .list {
  color: #404349;
}
