body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-3 {
    font-size: 2rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #9f8253 !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: #9f8253;
  border: 1px solid #9f8253;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #9f8253 !important;
  color: #0b0b0e !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: #0b0b0e !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #9f8253 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #0b0b0e !important;
  background-color: #49362b !important;
  border-color: #49362b !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: 48%;
  background: transparent;
  border: 1px solid #9f8253;
  transform: rotate(-2deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #9f8253;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f8253 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #0b0b0e !important;
  background-color: #49362b !important;
  border-color: #49362b !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: #9f8253 !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: #402f25 !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: #9f8253;
}
.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: #9f8253; /*#977c6a;*/
  color: #f6efe8 !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9f8253;
  border-color: #9f8253;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #9f8253;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bda08e;
}
.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: #9f8253 !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: #9f8253;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #9f8253;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #9f8253;
}
.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: #9f8253;
  border-bottom-color: #9f8253;
}
.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: #9f8253 !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='%239f8253' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 500;
  transition-duration: .35s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mbr-section-btn .btn.btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn.btn-white {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-black-outline {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-white-outline {
  color: #ffffff !important;
}
.mbr-section-btn .btn:hover {
  transform: scale(0.9);
}
.mbr-section-btn .btn:hover:before {
  transform: rotate(0deg) scale(1.1111);
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tqnAYKepw4 {
  background-color: #fffcf5;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-tqnAYKepw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnAYKepw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnAYKepw4 .row {
  flex-wrap: nowrap;
}
.cid-tqnAYKepw4 h1 img {
  max-width: 300px;
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 {
    padding-top: 0rem;
  }
  .cid-tqnAYKepw4 .row {
    flex-wrap: wrap;
  }
}
.cid-tqnAYKepw4 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 h1 img {
    max-width: 200px;
  }
  .cid-tqnAYKepw4 {
    min-height: unset;
  }
  .cid-tqnAYKepw4 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnAYKepw4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-tqnAYKepw4 .mbr-section-title {
  color: #353535;
  font-family: 'The Nautigal','Cormorant Garamond',cursive;
  font-weight: normal;
  font-size: 8rem;
  line-height: .666;
}
.cid-tqnAYKepw4 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnAYKepw4 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-section-title {
    font-size: 5rem;
  }
  .cid-tqnAYKepw4 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnAYKepw4 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnAYKepw4 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnAYKepw4 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnAYKepw4 .col-img {
  width: 480px;
}
@media (max-width: 1199px) {
  .cid-tqnAYKepw4 .col-img {
    width: 350px;
  }
}
.cid-tqnAYKepw4 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnAYKepw4 .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnAYKepw4 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnAYKepw4 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnAYKepw4 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnAYKepw4 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnAYKepw4 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tqnAYKepw4 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tqnAYKepw4 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-v556eUCnIS {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f6efe8;
}
.cid-v556eUCnIS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v556eUCnIS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v556eUCnIS .text-wrap {
  width: 100%;
}
.cid-v556eUCnIS .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-v556eUCnIS {
    padding-top: 2.5rem;
    padding-bottom: 0rem;
  }
  .cid-v556eUCnIS .mbr-section-head {
    margin-bottom: 2.5rem;
  }
}
.cid-v556eUCnIS .mbr-section-title {
  color: #9f8253;
  margin-bottom: 0;
}
.cid-v556eUCnIS .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-v556eUCnIS .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-v556eUCnIS .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-v556eUCnIS .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: none;
  border-radius: 45px;
}
.cid-v556eUCnIS .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-v556eUCnIS .item-img img {
  aspect-ratio: 0.83333333;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v556eUCnIS .item-title-wrap {
  padding: 1rem 26px;
  border-radius: 0 0 45px 45px;
  border: none;
  background-color: rgba(159, 130, 83, .8); /*rgba(128, 95, 75, 0.8);*/
  display: flex;
  align-items: center;
}
.cid-v556eUCnIS .item-title {
  width: 100%;
  margin: 0;
  color: #f6efe8;
}
.cid-v556eUCnIS .item-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 26px;
}
.cid-v556eUCnIS .item-text {
  color: #353535;
  margin: 0;
}
.cid-v556eUCnIS .swiper-slide .text-small {
    font-size: 1.5rem;
  }
.cid-v556eUCnIS .mbr-section-btn {
  margin-top: 2rem;
}
/*.cid-v556eUCnIS .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}*/
.border {
  border-color: #9f8253 !important;
}
.cid-v556jYaaza .table>thead>*>* {
  background-color: #f6efe8;
}
.cid-v556jYaaza .table>:not(caption)>*>*:nth-child(2) {
  color: rgba(220, 53, 69, .8);
  padding-right: 2rem;
  width: 40%;
}
.cid-v556jYaaza .table>:not(caption)>*>*:nth-child(3) {
  color: #9f8253;
  padding-right: 1rem;
  width: 40%;
  color: #446a49;
}
.cid-v556jYaaza .table>:not(caption)>*>* {
  border-color: #9f8253;
  font-family: 'Outfit', sans-serif;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.cid-v556jYaaza .table>:not(caption)>*:last-child>* {
  border: none;
}

.cid-v556jYaaza .border {
  position: relative;
  overflow: hidden;
}
.cid-v556jYaaza .border table {
  position: relative;
  z-index: 2;
}
.cid-v556jYaaza .border::before {
  content: '';
  display: block;
  width: 100%;
  height: 78px;
  background-color: #f6efe8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-v556jYaaza {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-v556jYaaza .mbr-fallback-image.disabled {
  display: none;
}
.cid-v556jYaaza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v556jYaaza .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v556jYaaza .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v556eUCnIS .swiper-slide .item-title {
    font-size: 1.5rem;
  }
  .cid-v556eUCnIS .swiper-slide .text-small {
    font-size: 1.25rem;
  }
  .cid-v556jYaaza .border::before {
    height: 173px;
  }
  .cid-v556jYaaza .mbr-section-head {
    margin-bottom: 50px;
  }
  .cid-v556jYaaza .table>:not(caption) tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cid-v556jYaaza .table>:not(caption)>*>*:nth-child(1) {
    width: 100%;
    border: none;
    padding-bottom: 0;
    text-align: center;
  }
  .cid-v556jYaaza .table>:not(caption)>*>*:nth-child(2), 
  .cid-v556jYaaza .table>:not(caption)>*>*:nth-child(3) {
    padding-right: 0;
    width: 50%;
  }
}
.cid-v556jYaaza .mbr-section-title {
  color: #9f8253;
  margin-bottom: 0;
}
.cid-v556jYaaza .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-v556jYaaza .col-img {
    display: none;
  }
}
.cid-v556jYaaza .img-wrap {
  width: 100%;
}
.cid-v556jYaaza .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-v556jYaaza .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-v556jYaaza .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v556jYaaza .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-v556jYaaza .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-v556jYaaza .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-v556jYaaza .panel-group {
  border: none;
  border-top: 1px solid #c3a75f;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-v556jYaaza .panel-group {
    margin-top: 0;
  }
}
.cid-v556jYaaza .card {
  border-bottom: 1px solid #c3a75f;
  border-radius: 0;
}
.cid-v556jYaaza .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-v556jYaaza .card-header {
    padding: 8px 0;
  }
}
.cid-v556jYaaza .card-header:hover .mbr-iconfont {
  color: #c3a75f;
}
.cid-v556jYaaza .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-v556jYaaza .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-v556jYaaza .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-v556jYaaza .panel-title-edit {
  color: #9f8253;
}
.cid-v556jYaaza .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-v556jYaaza .panel-body {
    padding: 0 0 24px;
  }
}
.cid-v556jYaaza .panel-text {
  color: #353535;
  margin: 0;
}
.cid-tqnBI9Wnff {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnBI9Wnff .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnBI9Wnff .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnBI9Wnff .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff {
    padding-top: 3rem;
  }
}
.cid-tqnBI9Wnff .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tqnBI9Wnff .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tqnBI9Wnff .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .text-wrap {
    padding: 2rem 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tqnBI9Wnff .mbr-section-title {
  color: #9f8253;
  text-align: left;
}
.cid-tqnBI9Wnff .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnBI9Wnff .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnBI9Wnff .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnBI9Wnff .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tqnBI9Wnff .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tqnBI9Wnff .col-img {
    margin-bottom: -50px;
  }
}
.cid-tqnBI9Wnff .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnBI9Wnff .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnBI9Wnff .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnBI9Wnff .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-tqnBI9Wnff .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnBI9Wnff .mbr-text,
.cid-tqnBI9Wnff .mbr-section-btn {
  text-align: left;
}
.afterbar {
  content: '';
  display: block;
  width: 100%;
  height: 4rem;
  background-color: #f6efe8;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.cid-v556wrfyzZ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-v556wrfyzZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v556wrfyzZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v556wrfyzZ .text-wrap {
  width: 100%;
}
.cid-v556wrfyzZ .mbr-title {
  margin-bottom: 0;
  color: #9f8253;
}
.cid-v556wrfyzZ .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-v556wrfyzZ .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v556wrfyzZ {
    padding-top: 2rem;
  }
  .cid-v556wrfyzZ .list-wrap {
    margin-top: 24px;
  }
}
.cid-v556wrfyzZ .list-box {
  width: 100%;
}
.cid-v556wrfyzZ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v556wrfyzZ .list-text {
  position: relative;
}
.cid-v556wrfyzZ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v556wrfyzZ .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tqnCXAgMzK {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tqnCXAgMzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqnCXAgMzK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqnCXAgMzK .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tqnCXAgMzK .main-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tqnCXAgMzK .main-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tqnCXAgMzK .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .col-text {
    order: 2;
  }
}
.cid-tqnCXAgMzK .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .text-wrap {
    margin-top: 0;
    padding: 2rem 0;
  }
}
.cid-tqnCXAgMzK .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
.cid-tqnCXAgMzK .mbr-section-title {
  color: #353535;
  text-align: justify;
}
.cid-tqnCXAgMzK .mbr-text {
  color: #353535;
  margin-top: 30px;
  text-align: justify;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnCXAgMzK .link-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 90px;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .link-wrap {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .cid-tqnCXAgMzK .link-wrap {
    margin-top: 40px;
  }
}
.cid-tqnCXAgMzK .link-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  color: #987A5A;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-text {
    min-height: 160px;
  }
}
.cid-tqnCXAgMzK .link-text a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  width: 100%;
  padding: 10px;
  color: inherit !important;
  transition: .3s all !important;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-text a {
    min-height: 160px;
  }
}
.cid-tqnCXAgMzK .link-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: .3s all;
}
.cid-tqnCXAgMzK .link-item:nth-child(1) {
  background-image: url("../../../assets/images/frame9.webp");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(1) {
    margin-right: auto;
  }
}
.cid-tqnCXAgMzK .link-item:nth-child(2) {
  margin: 12px -10px 0;
  background-image: url("../../../assets/images/frame10.webp");
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(2) {
    margin: -20px 0 0;
    margin-left: auto;
  }
}
.cid-tqnCXAgMzK .link-item:nth-child(2) .link-text {
  min-height: 135px;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(2) .link-text {
    min-height: 160px;
  }
}
.cid-tqnCXAgMzK .link-item:nth-child(3) {
  background-image: url("../../../assets/images/frame11.webp");
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item:nth-child(3) {
    margin: -20px 0 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-tqnCXAgMzK .link-item {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cid-tqnCXAgMzK .link-item {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .cid-tqnCXAgMzK .link-item:hover {
    transform: rotate(-12deg);
  }
  .cid-tqnCXAgMzK .link-item:hover .link-text a {
    color: inherit !important;
    transform: rotate(12deg) scale(0.9);
  }
  .cid-tqnCXAgMzK .link-item:nth-child(2):hover {
    transform: rotate(12deg);
  }
  .cid-tqnCXAgMzK .link-item:nth-child(2):hover .link-text a {
    color: inherit !important;
    transform: rotate(-12deg) scale(0.9);
  }
}
.cid-tqnCXAgMzK .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .col-img {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    order: 1;
    margin-bottom: -45px;
  }
}
.cid-tqnCXAgMzK .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnCXAgMzK .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnCXAgMzK .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tqnCXAgMzK .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
.cid-tqnCXAgMzK .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnCXAgMzK .mbr-section-title DIV {
  text-align: justify;
}
.cid-tqnCYjVLFo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #c3a75f;
}
.cid-tqnCYjVLFo .mbr-text {
  color: #FFFCF5;
}
.cid-tqnCYjVLFo .media-container-row .mbr-text {
  color: #61411e;
  font-size: .9rem;
}
@media (max-width: 767px) {
  .cid-tqnCYjVLFo {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}





.cid-v5aPVQWksQ {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v5aPVQWksQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5aPVQWksQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5aPVQWksQ .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v5aPVQWksQ .row {
    flex-wrap: wrap;
  }
}
.cid-v5aPVQWksQ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0;
}
.cid-v5aPVQWksQ .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
  border-radius: 65px 0 0 65px;
  right: auto;
  left: -100px;
}
@media (max-width: 1199px) {
  .cid-v5aPVQWksQ .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-v5aPVQWksQ .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-v5aPVQWksQ .text-wrap {
    padding: 50px 0 0px;
  }
  h1 br, h2 br, h3 br { display: none;}
}
@media (max-width: 767px) {
  .cid-v5aPVQWksQ .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-v5aPVQWksQ .mbr-section-title {
  color: #353535;
}
.cid-v5aPVQWksQ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v5aPVQWksQ .mbr-text {
    margin-top: 12px;
  }
}
.cid-v5aPVQWksQ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-v5aPVQWksQ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-v5aPVQWksQ .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-v5aPVQWksQ .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-v5aPVQWksQ .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-v5aPVQWksQ .col-img {
    margin-bottom: -50px;
  }
}
.cid-v5aPVQWksQ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-v5aPVQWksQ .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
  border-radius: 65px 0 65px 65px;
}
@media (max-width: 1199px) {
  .cid-v5aPVQWksQ .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-v5aPVQWksQ .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-v5aPVQWksQ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.cid-v5aQHF11w9 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v5aQHF11w9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5aQHF11w9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5aQHF11w9 .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-v5aQHF11w9 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v5aQHF11w9 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-v5aQHF11w9 .mbr-section-title {
  color: #9f8253;
  margin-bottom: 0;
}
.cid-v5aQHF11w9 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-v5aQHF11w9 .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v5aQHF11w9 .items-row {
    row-gap: 20px;
  }
}
.cid-v5aQHF11w9 .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #987A5A;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v5aQHF11w9 .card-title {
    max-width: 100%;
  }
}
.cid-v5aQHF11w9 .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
  text-align: center;
}
@media (max-width: 575px) {
  .cid-v5aQHF11w9 .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-v5aQHF11w9 .item-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 560px;
  padding: 50px 50px 60px;
  background-position: center;
  background-size: 100% 100%;
}
@media (max-width: 575px) {
  .cid-v5aQHF11w9 .item-wrap {
    padding: 20px !important;
  }
}
.cid-v5aQHF11w9 .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-v5aQHF11w9 .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.webp");
}
.cid-v5aQHF11w9 .item:nth-child(2) {
  margin-top: -6rem;
}
.cid-v5aQHF11w9 .item:nth-child(4) {
  margin-top: -8rem;
}
@media (max-width: 991px) {
  .cid-v5aQHF11w9 .item:nth-child(2), .cid-v5aQHF11w9 .item:nth-child(4) {
    margin: 0;
  }
}
.cid-v5aQHF11w9 .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.webp");
}
.cid-v5aQHF11w9 .item:nth-child(3) {
  margin-top: -3rem;
}
@media (max-width: 991px) {
  .cid-v5aQHF11w9 .item:nth-child(3) {
    margin: 0;
  }
}
.cid-v5aQHF11w9 .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.webp?v=MTEwNzE2");
}
.cid-v5aQHF11w9 .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.webp");
}

.cid-v5aRJjg5fQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-v5aRJjg5fQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5aRJjg5fQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.text-tri {
  font-size: 4.5rem; 
  line-height: 1.2;
}
@media (max-width: 991px) {
  .cid-v5aRJjg5fQ .row {
    align-items: center !important;
  }
}
.cid-v5aRJjg5fQ .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-v5aRJjg5fQ .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v5aRJjg5fQ .mbr-section-head {
    margin-bottom: 35px;
  }
  .text-tri {
    font-size: 3rem; 
    line-height: 1;
  }
}
.cid-v5aRJjg5fQ .mbr-section-title {
  color: #9f8253;
  margin-bottom: 0;
}
.cid-v5aRJjg5fQ .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-v5aRJjg5fQ .text-wrap {
  width: 100%;
  padding: 36px 0;
  /*border-top: 1px solid #c3a75f;*/
}
@media (max-width: 991px) {
  .cid-v5aRJjg5fQ .text-wrap {
    padding: 30px 0;
  }
}
/*.cid-v5aRJjg5fQ .mbr-title {
  color: #987A5A;
}*/
.cid-v5aRJjg5fQ .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-v5aRJjg5fQ .list-box {
  width: 100%;
}
.cid-v5aRJjg5fQ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-v5aRJjg5fQ .list-text {
  position: relative;
}
.cid-v5aRJjg5fQ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v5aRJjg5fQ .mbr-section-btn {
  margin-top: 20px;
}
.cid-v5aRJjg5fQ .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-v5aRJjg5fQ .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-v5aRJjg5fQ .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-v5aRJjg5fQ .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.cid-v5cdatOHCO {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-v5cdatOHCO .container {
  border-top: 1px solid rgba(195, 167, 95, .5);
  padding-top: 3rem;
}
.cid-v5cdatOHCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5cdatOHCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5cdatOHCO .mbr-section-head {
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-v5cdatOHCO .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-v5cdatOHCO .mbr-section-head {
    margin-bottom: 35px;
  }
  .cid-v5cdatOHCO .container {
    border: none;
  }
}
.cid-v5cdatOHCO .mbr-section-title {
  color: #9f8253;
  margin-bottom: 0;
}
.cid-v5cdatOHCO .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-v5cdatOHCO .text-wrap {
  width: 100%;
}
.cid-v5cdatOHCO .mbr-text {
  color: #353535;
}
.cid-v5cdatOHCO .list-box {
  width: 100%;
}
.cid-v5cdatOHCO .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-v5cdatOHCO .list-text {
  position: relative;
}
.cid-v5cdatOHCO .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-v5cdatOHCO .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-v5cdatOHCO .items-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v5cdatOHCO .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-v5cdatOHCO .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-v5cdatOHCO .items-box {
    gap: 16px;
  }
}
.cid-v5cdatOHCO .item {
  border-radius: 30px;
  overflow: hidden;
  background-color: rgba(218, 224, 212, .75);
  align-items: center;
  display: flex;
}
.cid-v5cdatOHCO .item .display-5 {
  line-height: 1.1;
}
@media (max-width: 1199px) {
  .cid-v5cdatOHCO .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-v5cdatOHCO .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-v5cdatOHCO .item {
    width: 100%;
  }
}
.cid-v5cdatOHCO .item:nth-child(2) {
  background-color: rgba(225, 214, 199, .75);
}
.cid-v5cdatOHCO .item:nth-child(3) {
  background-color: rgba(225, 214, 199, .25);
}
.cid-v5cdatOHCO .item:nth-child(4) {
  background-color: rgba(225, 214, 199, .75);
}
.cid-v5cdatOHCO .item:nth-child(5) {
  background-color: rgba(225, 214, 199, .25);
}
/*
.cid-v5cdatOHCO .item:nth-child(1) {
  background-color: rgba(255, 252, 245, .95);
  border-bottom-right-radius: 0;
}
.cid-v5cdatOHCO .item:nth-child(2) {
  background-color: rgba(169, 187, 171, 0.95);
  border-bottom-left-radius: 0;
}
.cid-v5cdatOHCO .item:nth-child(3) {
  background-color: rgba(169, 187, 171, 0.95);
  border-top-right-radius: 0;
}
.cid-v5cdatOHCO .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(234, 227, 188, .95);
}
  */
.cid-v5cdatOHCO .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-v5cdatOHCO .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-v5cdatOHCO .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-v5cdatOHCO .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-v5cdatOHCO .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #353535;
}

.cid-v5scitEPon {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #f6efe8;
}
.cid-v5scitEPon .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5scitEPon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5scitEPon .text-wrap {
  width: 100%;
}
.cid-v5scitEPon .mbr-section-head {
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-v5scitEPon .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-v5scitEPon .mbr-section-title {
  color: #805f4b;
  margin-bottom: 0;
}
.cid-v5scitEPon .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-v5scitEPon .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-v5scitEPon .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-v5scitEPon .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-v5scitEPon .card_1 {
  border: 1px solid rgba(255, 252, 245, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-v5scitEPon .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(255, 252, 245, 0.8);
  background-color: rgba(225, 228, 217, 0.8);
}
.cid-v5scitEPon .card_2 {
  border: 1px solid rgba(255, 252, 245, 0.8);
  border-radius: 45px;
}
.cid-v5scitEPon .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(255, 252, 245, 0.8);
  background-color: rgba(231, 220, 207, 0.8);
}
.cid-v5scitEPon .card_3 {
  border: 1px solid rgba(255, 252, 245, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-v5scitEPon .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(255, 252, 245, 0.8);
  background-color: rgba(240, 233, 224, 0.8);
}
.cid-v5scitEPon .card-title-wrap .far, 
.cid-v5scitEPon .card-title-wrap .fa {
  font-size: 5rem;
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  transform: rotate(5deg);
}
.cid-v5scitEPon .card-title-wrap {
  padding: 33px 21px;
}
.cid-v5scitEPon .card-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
  font-size: 1.5rem;
  text-align: center;
  padding-right: 3.5rem;
}
.cid-v5scitEPon .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-v5scitEPon .card-text {
  color: #353535;
}
.cid-v5scitEPon .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-v5scitEPon .card-duration {
  color: #353535;
}
.cid-v5scitEPon .card-cost {
  color: #353535;
}
.cid-v5scitEPon .mbr-section-btn {
  margin-top: 5px;
}
.cid-v5scitEPon .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}

.cid-v5zNPrI0Fg {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background4.webp");
  background-color: #f3ece4;
}
.cid-v5zNPrI0Fg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5zNPrI0Fg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5zNPrI0Fg .mbr-section-head {
  width: 100%;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .cid-v5zNPrI0Fg .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v5zNPrI0Fg .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-v5zNPrI0Fg .mbr-section-title {
  color: #9f8253;
  margin-bottom: 0;
}
.cid-v5zNPrI0Fg .mbr-section-subtitle {
  color: #353535;
  margin-top: 0px;
}
.cid-v5zNPrI0Fg .caption-title {
  color: #9f8253;
  font-size: 1rem;
  margin-top: .25rem;
}
.cid-v5zNPrI0Fg .caption-text {
  color: #353535;
  font-style: italic;
  line-height: 1.2;
  font-size: 1.2rem;
}
.cid-v5zNPrI0Fg .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v5zNPrI0Fg .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v5zNPrI0Fg .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-v5zNPrI0Fg .item-img img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  visibility: visible !important;
  max-width: 150px;
  margin-bottom: 1rem;
  display: inline;
}
.cid-v5zNPrI0Fg .item-wrapper {
  padding: 0 2rem;
}

.swiper-slide, .swiper-slide > div { height: 100%;}
.swiper-button-prev, .swiper-button-next {
  background-color: rgba(255, 252, 245, .85);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: 13px;
}
.swiper-button-prev { transition: all .25s; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23829d85'%2F%3E%3C%2Fsvg%3E")}
.swiper-button-next { transition: all .25s; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23829d85'%2F%3E%3C%2Fsvg%3E");}
.swiper-button-prev:hover { background-color: #d5c5b5; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%239f8253'%2F%3E%3C%2Fsvg%3E")}
.swiper-button-next:hover { background-color: #d5c5b5; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%239f8253'%2F%3E%3C%2Fsvg%3E");}
.item.features-image.hidden { visibility: visible !important;}
.mbr-section-btn .btn-primary-outline { color: #f6efe8 !important;}
.mbr-section-btn .btn-primary-outline:before { background-color: #9f8253; }
.cid-v5cdatOHCO + .cid-v556wrfyzZ .list-text:before { filter: brightness(10);}

@media (max-width: 767px) {
  .cid-v5cdatOHCO .item-text {
    margin: 12px 0 0;
  }
  .swiper-slide .item { max-width: 80%; margin: auto;}
  .swiper-button-prev { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%239f8253'%2F%3E%3C%2Fsvg%3E")}
  .swiper-button-next { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%239f8253'%2F%3E%3C%2Fsvg%3E");}
}1