body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'font';
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'font';
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'font';
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'font';
  font-size: 1.45rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.8125rem;
}
.display-7 {
  font-family: 'font';
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- 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: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.16rem;
    font-size: calc( 1.1575rem + (1.45 - 1.1575) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1575rem + (1.45 - 1.1575) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #a9bbab !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: #a9bbab;
  border: 1px solid #a9bbab;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #a9bbab !important;
  color: #595959 !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: #595959 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #a9bbab !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #595959 !important;
  background-color: #79957c !important;
  border-color: #79957c !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 #a9bbab;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #595959;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #595959 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #595959 !important;
  background-color: #79957c !important;
  border-color: #79957c !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: #a9bbab !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: #708e73 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #a9bbab;
}
.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: #a9bbab;
  border-color: #a9bbab;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #a9bbab;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f0f3f1;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #80ae86;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c19f9e;
}
/* Scroll to top button*/
.form-control {
  font-family: 'font';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #a9bbab !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'font';
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #a9bbab;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a9bbab;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a9bbab;
}
.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: #a9bbab;
  border-bottom-color: #a9bbab;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a9bbab !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='%23a9bbab' %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-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-tqnIBxS2Xz {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.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;
}
@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: #f1dbda;
  transform: translateY(40%);
}
.cid-tqnIBxS2Xz .mbr-section-title {
  color: #353535;
  text-align: left;
}
.cid-tqnIBxS2Xz .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tqnIBxS2Xz .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-text {
    margin-top: 12px;
  }
}
.cid-tqnIBxS2Xz .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tqnIBxS2Xz .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnIBxS2Xz .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .col-img {
    width: 350px;
  }
}
.cid-tqnIBxS2Xz .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top-left-radius: 65px;
  border-top-right-radius: 65px;
  border-bottom-right-radius: 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tqnIBxS2Xz .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tqnIBxS2Xz .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(0deg);
}
.cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tqnIBxS2Xz .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tqnIBxS2Xz .mbr-text,
.cid-tqnIBxS2Xz .mbr-section-btn {
  text-align: left;
}
.cid-tqnJNh3H3d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f6efe8;
  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;
  flex-direction: row-reverse;
}
@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: #446a49;
}
.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;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tqnJNh3H3d .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tqnJNh3H3d .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tqnJNh3H3d .mbr-text,
.cid-tqnJNh3H3d .mbr-section-btn {
  color: #6c6c6c;
  text-align: center;
}
.cid-uwyVfh1Vqm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #caa9a8;
}
.cid-uwyVfh1Vqm .items-wrapper {
  justify-content: center;
}
.cid-uwyVfh1Vqm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uwyVfh1Vqm .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uwyVfh1Vqm .embla__slide .slide-content {
  width: 100%;
}
.cid-uwyVfh1Vqm .embla__slide .slide-content .item-wrapper .item-content {
  padding: 24px;
}
@media (max-width: 992px) {
  .cid-uwyVfh1Vqm .embla__slide .slide-content .item-wrapper .item-content {
    padding: 20px 16px;
  }
}
.cid-uwyVfh1Vqm .embla__slide .slide-content .item-wrapper .item-content .item-name {
  margin-bottom: 20px;
}
.cid-uwyVfh1Vqm .embla__slide .slide-content .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-uwyVfh1Vqm .embla__button--next,
.cid-uwyVfh1Vqm .embla__button--prev {
  display: flex;
}
.cid-uwyVfh1Vqm .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 18px;
  background: linear-gradient(140deg, #caa9a8, #f1e8e7) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uwyVfh1Vqm .embla__button:hover {
  opacity: .9 !important;
}
.cid-uwyVfh1Vqm .embla__button.embla__button--prev {
  left: 24px;
}
@media (max-width: 992px) {
  .cid-uwyVfh1Vqm .embla__button.embla__button--prev {
    left: 16px;
  }
}
.cid-uwyVfh1Vqm .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-uwyVfh1Vqm .embla__button.embla__button--next {
    right: 16px;
  }
}
.cid-uwyVfh1Vqm .embla {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}
.cid-uwyVfh1Vqm .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uwyVfh1Vqm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uwyVfh1Vqm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uwyVfh1Vqm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uwyVfh1Vqm .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uwyVfh1Vqm .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uwyVfh1Vqm .item-name {
  color: #ffffff;
  text-align: center;
}
.cid-uwz2ygtgQG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uwz2ygtgQG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwz2ygtgQG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwz2ygtgQG .text-wrap {
  width: 100%;
}
.cid-uwz2ygtgQG .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwz2ygtgQG .mbr-text {
  padding-top: 16px;
  color: #446a49;
}
.cid-uwz2ygtgQG .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwz2ygtgQG .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwz2ygtgQG .list-box {
  width: 100%;
}
.cid-uwz2ygtgQG .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  text-align: left;
}
.cid-uwz2ygtgQG .list-text {
  position: relative;
}
.cid-uwz2ygtgQG .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwz2ygtgQG .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-tqnPeqdcaI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.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: #61411e;
}
.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-tqnMpBk11O {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.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: #61411e;
  margin-bottom: 0;
  text-align: center;
}
.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-uxqHKCCDFW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqHKCCDFW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqHKCCDFW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqHKCCDFW .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqHKCCDFW .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqHKCCDFW .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqHKCCDFW .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqHKCCDFW .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqHKCCDFW .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqHKCCDFW .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqHKCCDFW .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tqnNLkY391 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-tqnNLkY391 .mbr-text {
  color: #FFFCF5;
}
.cid-tqnNLkY391 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwA8vNyfj7 {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwA8vNyfj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA8vNyfj7 .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-uwA8vNyfj7 .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwA8vNyfj7 .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwA8vNyfj7 .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwA8vNyfj7 .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwA8vNyfj7 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwA8vNyfj7 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwA8vNyfj7 .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwA8vNyfj7 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwA8vNyfj7 .btn-wrapper {
  margin-top: -15%;
}
.cid-uwA8vNyfj7 .mbr-section-title {
  color: #272b2e;
}
.cid-uwA8vNyfj7 .mbr-text,
.cid-uwA8vNyfj7 .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uwA8vNyfj7 .mbr-section-title,
.cid-uwA8vNyfj7 .mbr-section-btn,
.cid-uwA8vNyfj7 .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uwE1bAFjIx {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uwE1bAFjIx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwE1bAFjIx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwE1bAFjIx .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uwE1bAFjIx .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwE1bAFjIx .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwE1bAFjIx .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwE1bAFjIx .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwE1bAFjIx .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwE1bAFjIx .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwE1bAFjIx .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwE1bAFjIx .mbr-text,
.cid-uwE1bAFjIx .mbr-section-btn {
  text-align: center;
}
.cid-uwAj6rsBVF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f8f1ea;
  overflow: hidden;
}
.cid-uwAj6rsBVF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAj6rsBVF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAj6rsBVF .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uwAj6rsBVF .row {
    flex-wrap: wrap;
  }
}
.cid-uwAj6rsBVF .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uwAj6rsBVF .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-uwAj6rsBVF .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwAj6rsBVF .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uwAj6rsBVF .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uwAj6rsBVF .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwAj6rsBVF .mbr-section-title {
  color: #446a49;
  text-align: left;
}
.cid-uwAj6rsBVF .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAj6rsBVF .mbr-text {
    margin-top: 12px;
  }
}
.cid-uwAj6rsBVF .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAj6rsBVF .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAj6rsBVF .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uwAj6rsBVF .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uwAj6rsBVF .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uwAj6rsBVF .col-img {
    margin-bottom: -50px;
  }
}
.cid-uwAj6rsBVF .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uwAj6rsBVF .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-uwAj6rsBVF .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwAj6rsBVF .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uwAj6rsBVF .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwAj6rsBVF .mbr-text,
.cid-uwAj6rsBVF .mbr-section-btn {
  text-align: left;
}
.cid-uwA96B86K5 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwA96B86K5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA96B86K5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA96B86K5 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uwA96B86K5 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uwA96B86K5 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uwA96B86K5 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
  text-align: left;
}
.cid-uwA96B86K5 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
  text-align: left;
}
.cid-uwA96B86K5 .text-wrap {
  width: 100%;
}
.cid-uwA96B86K5 .mbr-text {
  color: #353535;
}
.cid-uwA96B86K5 .list-box {
  width: 100%;
}
.cid-uwA96B86K5 .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwA96B86K5 .list-text {
  position: relative;
}
.cid-uwA96B86K5 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwA96B86K5 .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-uwA96B86K5 .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-uwA96B86K5 .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uwA96B86K5 .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uwA96B86K5 .items-box {
    gap: 16px;
  }
}
.cid-uwA96B86K5 .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uwA96B86K5 .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uwA96B86K5 .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uwA96B86K5 .item {
    width: 100%;
  }
}
.cid-uwA96B86K5 .item:nth-child(1) {
  background-color: rgba(246, 239, 232, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uwA96B86K5 .item:nth-child(2) {
  background-color: rgba(187, 203, 189, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uwA96B86K5 .item:nth-child(3) {
  background-color: rgba(187, 203, 189, 0.95);
  border-top-right-radius: 0;
}
.cid-uwA96B86K5 .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(241, 219, 218, 0.95);
}
.cid-uwA96B86K5 .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-uwA96B86K5 .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uwA96B86K5 .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uwA96B86K5 .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uwA96B86K5 .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uwA96B86K5 .item-text {
    margin: 12px 0 0;
  }
}
.cid-uwA92wKYHi {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uwA92wKYHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA92wKYHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA92wKYHi .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uwA92wKYHi .row {
    flex-wrap: wrap;
  }
}
.cid-uwA92wKYHi .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uwA92wKYHi .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-uwA92wKYHi .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwA92wKYHi .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uwA92wKYHi .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uwA92wKYHi .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwA92wKYHi .mbr-section-title {
  color: #446a49;
  text-align: left;
}
.cid-uwA92wKYHi .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwA92wKYHi .mbr-text {
    margin-top: 12px;
  }
}
.cid-uwA92wKYHi .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwA92wKYHi .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwA92wKYHi .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uwA92wKYHi .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uwA92wKYHi .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uwA92wKYHi .col-img {
    margin-bottom: -50px;
  }
}
.cid-uwA92wKYHi .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uwA92wKYHi .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-uwA92wKYHi .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwA92wKYHi .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uwA92wKYHi .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwA92wKYHi .mbr-text,
.cid-uwA92wKYHi .mbr-section-btn {
  text-align: left;
}
.cid-uwAe7xdFZC {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uwAe7xdFZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAe7xdFZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAe7xdFZC .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uwAe7xdFZC .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uwAe7xdFZC .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uwAe7xdFZC .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uwAe7xdFZC .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uwAe7xdFZC .text-wrap {
  width: 100%;
}
.cid-uwAe7xdFZC .mbr-text {
  color: #353535;
}
.cid-uwAe7xdFZC .list-box {
  width: 100%;
}
.cid-uwAe7xdFZC .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwAe7xdFZC .list-text {
  position: relative;
}
.cid-uwAe7xdFZC .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAe7xdFZC .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-uwAe7xdFZC .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-uwAe7xdFZC .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uwAe7xdFZC .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uwAe7xdFZC .items-box {
    gap: 16px;
  }
}
.cid-uwAe7xdFZC .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uwAe7xdFZC .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uwAe7xdFZC .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uwAe7xdFZC .item {
    width: 100%;
  }
}
.cid-uwAe7xdFZC .item:nth-child(1) {
  background-color: rgba(246, 239, 232, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uwAe7xdFZC .item:nth-child(2) {
  background-color: rgba(187, 203, 189, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uwAe7xdFZC .item:nth-child(3) {
  background-color: rgba(187, 203, 189, 0.95);
  border-top-right-radius: 0;
}
.cid-uwAe7xdFZC .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(241, 219, 218, 0.95);
}
.cid-uwAe7xdFZC .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-uwAe7xdFZC .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uwAe7xdFZC .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uwAe7xdFZC .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uwAe7xdFZC .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uwAe7xdFZC .item-text {
    margin: 12px 0 0;
  }
}
.cid-uwAgFZPXlc {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uwAgFZPXlc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAgFZPXlc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAgFZPXlc .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uwAgFZPXlc .row {
    flex-wrap: wrap;
  }
}
.cid-uwAgFZPXlc .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uwAgFZPXlc .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-uwAgFZPXlc .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwAgFZPXlc .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uwAgFZPXlc .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uwAgFZPXlc .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwAgFZPXlc .mbr-section-title {
  color: #446a49;
  text-align: left;
}
.cid-uwAgFZPXlc .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAgFZPXlc .mbr-text {
    margin-top: 12px;
  }
}
.cid-uwAgFZPXlc .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAgFZPXlc .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAgFZPXlc .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uwAgFZPXlc .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uwAgFZPXlc .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uwAgFZPXlc .col-img {
    margin-bottom: -50px;
  }
}
.cid-uwAgFZPXlc .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uwAgFZPXlc .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-uwAgFZPXlc .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwAgFZPXlc .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uwAgFZPXlc .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwAgFZPXlc .mbr-text,
.cid-uwAgFZPXlc .mbr-section-btn {
  text-align: left;
}
.cid-uwAhrXCwIf {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uwAhrXCwIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAhrXCwIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAhrXCwIf .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uwAhrXCwIf .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uwAhrXCwIf .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uwAhrXCwIf .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uwAhrXCwIf .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uwAhrXCwIf .text-wrap {
  width: 100%;
}
.cid-uwAhrXCwIf .mbr-text {
  color: #353535;
}
.cid-uwAhrXCwIf .list-box {
  width: 100%;
}
.cid-uwAhrXCwIf .list {
  list-style: none;
  margin-top: 32px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwAhrXCwIf .list-text {
  position: relative;
}
.cid-uwAhrXCwIf .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAhrXCwIf .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-uwAhrXCwIf .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-uwAhrXCwIf .items-box {
    max-width: 540px;
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uwAhrXCwIf .items-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .cid-uwAhrXCwIf .items-box {
    gap: 16px;
  }
}
.cid-uwAhrXCwIf .item {
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uwAhrXCwIf .item {
    width: calc(50% - 16px);
  }
}
@media (max-width: 767px) {
  .cid-uwAhrXCwIf .item {
    border-radius: 22px;
  }
}
@media (max-width: 575px) {
  .cid-uwAhrXCwIf .item {
    width: 100%;
  }
}
.cid-uwAhrXCwIf .item:nth-child(1) {
  background-color: rgba(246, 239, 232, 0.95);
  border-bottom-right-radius: 0;
}
.cid-uwAhrXCwIf .item:nth-child(2) {
  background-color: rgba(187, 203, 189, 0.95);
  border-bottom-left-radius: 0;
}
.cid-uwAhrXCwIf .item:nth-child(3) {
  background-color: rgba(187, 203, 189, 0.95);
  border-top-right-radius: 0;
}
.cid-uwAhrXCwIf .item:nth-child(4) {
  border-top-left-radius: 0;
  background-color: rgba(241, 219, 218, 0.95);
}
.cid-uwAhrXCwIf .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-uwAhrXCwIf .item-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uwAhrXCwIf .item-wrap {
    min-height: 105px;
    padding: 16px;
  }
}
.cid-uwAhrXCwIf .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uwAhrXCwIf .item-text {
  width: 100%;
  margin: 16px 0 0;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uwAhrXCwIf .item-text {
    margin: 12px 0 0;
  }
}
.cid-uwAh7DUGXi {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uwAh7DUGXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAh7DUGXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAh7DUGXi .text-wrap {
  width: 100%;
}
.cid-uwAh7DUGXi .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwAh7DUGXi .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwAh7DUGXi .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAh7DUGXi .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwAh7DUGXi .list-box {
  width: 100%;
}
.cid-uwAh7DUGXi .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwAh7DUGXi .list-text {
  position: relative;
}
.cid-uwAh7DUGXi .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAh7DUGXi .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-uwA7gzlvqq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwA7gzlvqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwA7gzlvqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwA7gzlvqq .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwA7gzlvqq .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwA7gzlvqq .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwA7gzlvqq .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwA7gzlvqq .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwA7gzlvqq .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwA7gzlvqq .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwA7gzlvqq .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqJXs1weY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqJXs1weY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqJXs1weY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqJXs1weY .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqJXs1weY .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqJXs1weY .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqJXs1weY .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqJXs1weY .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqJXs1weY .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqJXs1weY .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqJXs1weY .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwA7gDzZal {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwA7gDzZal .mbr-text {
  color: #FFFCF5;
}
.cid-uwA7gDzZal .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwAjoRtWJ2 {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwAjoRtWJ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAjoRtWJ2 .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-uwAjoRtWJ2 .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwAjoRtWJ2 .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwAjoRtWJ2 .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwAjoRtWJ2 .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwAjoRtWJ2 .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwAjoRtWJ2 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwAjoRtWJ2 .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwAjoRtWJ2 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwAjoRtWJ2 .btn-wrapper {
  margin-top: -15%;
}
.cid-uwAjoRtWJ2 .mbr-section-title {
  color: #272b2e;
}
.cid-uwAjoRtWJ2 .mbr-text,
.cid-uwAjoRtWJ2 .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uwAjoRtWJ2 .mbr-section-title,
.cid-uwAjoRtWJ2 .mbr-section-btn,
.cid-uwAjoRtWJ2 .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uwAjoSimHt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uwAjoSimHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAjoSimHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAjoSimHt .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uwAjoSimHt .row {
    flex-wrap: wrap;
  }
}
.cid-uwAjoSimHt .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uwAjoSimHt .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-uwAjoSimHt .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwAjoSimHt .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uwAjoSimHt .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uwAjoSimHt .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwAjoSimHt .mbr-section-title {
  color: #446a49;
  text-align: left;
}
.cid-uwAjoSimHt .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAjoSimHt .mbr-text {
    margin-top: 12px;
  }
}
.cid-uwAjoSimHt .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAjoSimHt .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAjoSimHt .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uwAjoSimHt .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uwAjoSimHt .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uwAjoSimHt .col-img {
    margin-bottom: -50px;
  }
}
.cid-uwAjoSimHt .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uwAjoSimHt .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-uwAjoSimHt .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uwAjoSimHt .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-uwAjoSimHt .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwAjoSimHt .mbr-text,
.cid-uwAjoSimHt .mbr-section-btn {
  text-align: left;
}
.cid-uwAjoY0sJF {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwAjoY0sJF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAjoY0sJF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAjoY0sJF .text-wrap {
  width: 100%;
}
.cid-uwAjoY0sJF .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwAjoY0sJF .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwAjoY0sJF .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAjoY0sJF .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwAjoY0sJF .list-box {
  width: 100%;
}
.cid-uwAjoY0sJF .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwAjoY0sJF .list-text {
  position: relative;
}
.cid-uwAjoY0sJF .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAjoY0sJF .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-uwQyD4qb0Z {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwQyD4qb0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyD4qb0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyD4qb0Z .text-wrap {
  width: 100%;
}
.cid-uwQyD4qb0Z .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQyD4qb0Z .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwQyD4qb0Z .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQyD4qb0Z .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQyD4qb0Z .list-box {
  width: 100%;
}
.cid-uwQyD4qb0Z .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQyD4qb0Z .list-text {
  position: relative;
}
.cid-uwQyD4qb0Z .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQyD4qb0Z .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-uwQyDKKfOF {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uwQyDKKfOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyDKKfOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyDKKfOF .text-wrap {
  width: 100%;
}
.cid-uwQyDKKfOF .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQyDKKfOF .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwQyDKKfOF .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQyDKKfOF .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQyDKKfOF .list-box {
  width: 100%;
}
.cid-uwQyDKKfOF .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQyDKKfOF .list-text {
  position: relative;
}
.cid-uwQyDKKfOF .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQyDKKfOF .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-uwQyEne0qP {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwQyEne0qP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyEne0qP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyEne0qP .text-wrap {
  width: 100%;
}
.cid-uwQyEne0qP .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQyEne0qP .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwQyEne0qP .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQyEne0qP .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQyEne0qP .list-box {
  width: 100%;
}
.cid-uwQyEne0qP .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQyEne0qP .list-text {
  position: relative;
}
.cid-uwQyEne0qP .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQyEne0qP .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-uwQyGwKnwQ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwQyGwKnwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyGwKnwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyGwKnwQ .text-wrap {
  width: 100%;
}
.cid-uwQyGwKnwQ .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQyGwKnwQ .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwQyGwKnwQ .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQyGwKnwQ .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQyGwKnwQ .list-box {
  width: 100%;
}
.cid-uwQyGwKnwQ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQyGwKnwQ .list-text {
  position: relative;
}
.cid-uwQyGwKnwQ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQyGwKnwQ .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-uwQyH703Kq {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uwQyH703Kq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyH703Kq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyH703Kq .text-wrap {
  width: 100%;
}
.cid-uwQyH703Kq .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQyH703Kq .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwQyH703Kq .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQyH703Kq .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQyH703Kq .list-box {
  width: 100%;
}
.cid-uwQyH703Kq .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQyH703Kq .list-text {
  position: relative;
}
.cid-uwQyH703Kq .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQyH703Kq .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-uwQyHKADKo {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uwQyHKADKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQyHKADKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQyHKADKo .text-wrap {
  width: 100%;
}
.cid-uwQyHKADKo .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQyHKADKo .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwQyHKADKo .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQyHKADKo .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQyHKADKo .list-box {
  width: 100%;
}
.cid-uwQyHKADKo .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQyHKADKo .list-text {
  position: relative;
}
.cid-uwQyHKADKo .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQyHKADKo .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-uwQLeb7Ii0 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uwQLeb7Ii0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQLeb7Ii0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQLeb7Ii0 .text-wrap {
  width: 100%;
}
.cid-uwQLeb7Ii0 .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwQLeb7Ii0 .mbr-text {
  padding-top: 16px;
  color: #829d85;
}
.cid-uwQLeb7Ii0 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQLeb7Ii0 .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQLeb7Ii0 .list-box {
  width: 100%;
}
.cid-uwQLeb7Ii0 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQLeb7Ii0 .list-text {
  position: relative;
}
.cid-uwQLeb7Ii0 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQLeb7Ii0 .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-uwAjoZ0YO5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwAjoZ0YO5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAjoZ0YO5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAjoZ0YO5 .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwAjoZ0YO5 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwAjoZ0YO5 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwAjoZ0YO5 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwAjoZ0YO5 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAjoZ0YO5 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwAjoZ0YO5 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAjoZ0YO5 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqJUPr4U5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqJUPr4U5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqJUPr4U5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqJUPr4U5 .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqJUPr4U5 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqJUPr4U5 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqJUPr4U5 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqJUPr4U5 .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqJUPr4U5 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqJUPr4U5 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqJUPr4U5 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAjoZH1Cc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwAjoZH1Cc .mbr-text {
  color: #FFFCF5;
}
.cid-uwAjoZH1Cc .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwAvyXHOuh {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwAvyXHOuh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAvyXHOuh .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-uwAvyXHOuh .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwAvyXHOuh .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwAvyXHOuh .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwAvyXHOuh .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwAvyXHOuh .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwAvyXHOuh .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwAvyXHOuh .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwAvyXHOuh .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwAvyXHOuh .btn-wrapper {
  margin-top: -15%;
}
.cid-uwAvyXHOuh .mbr-section-title {
  color: #272b2e;
}
.cid-uwAvyXHOuh .mbr-text,
.cid-uwAvyXHOuh .text-wrapper {
  color: #353535;
  text-align: center;
}
.cid-uwAvyXHOuh .mbr-section-title,
.cid-uwAvyXHOuh .mbr-section-btn,
.cid-uwAvyXHOuh .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uwAw0Vc7u0 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #f8f1ea;
  overflow: hidden;
}
.cid-uwAw0Vc7u0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAw0Vc7u0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAw0Vc7u0 .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uwAw0Vc7u0 .row {
    flex-wrap: wrap;
  }
}
.cid-uwAw0Vc7u0 .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwAw0Vc7u0 .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uwAw0Vc7u0 .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uwAw0Vc7u0 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a9bbab;
  transform: translateY(40%);
}
.cid-uwAw0Vc7u0 .mbr-section-title {
  color: #353535;
}
.cid-uwAw0Vc7u0 .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uwAw0Vc7u0 .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uwAw0Vc7u0 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uwAw0Vc7u0 .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAw0Vc7u0 .mbr-text {
    margin-top: 12px;
  }
}
.cid-uwAw0Vc7u0 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAw0Vc7u0 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAw0Vc7u0 .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uwAw0Vc7u0 .col-img {
    width: 350px;
  }
}
.cid-uwAw0Vc7u0 .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uwAw0Vc7u0 .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-uwAw0Vc7u0 .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uwAw0Vc7u0 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwAw0Vc7u0 .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uwAw0Vc7u0 .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uwAw0Vc7u0 .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uwAw0Vc7u0 .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uwAw0Vc7u0 .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uwAvyZ6uFg {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uwAvyZ6uFg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAvyZ6uFg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAvyZ6uFg .text-wrap {
  width: 100%;
}
.cid-uwAvyZ6uFg .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwAvyZ6uFg .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwAvyZ6uFg .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAvyZ6uFg .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwAvyZ6uFg .list-box {
  width: 100%;
}
.cid-uwAvyZ6uFg .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwAvyZ6uFg .list-text {
  position: relative;
}
.cid-uwAvyZ6uFg .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAvyZ6uFg .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-uwABs7AR90 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uwABs7AR90 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwABs7AR90 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwABs7AR90 .text-wrap {
  width: 100%;
}
.cid-uwABs7AR90 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-uwABs7AR90 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uwABs7AR90 .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uwABs7AR90 .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-uwABs7AR90 .item-row {
  row-gap: 50px;
}
.cid-uwABs7AR90 .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-uwABs7AR90 .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-uwABs7AR90 .img-box img {
  width: 100%;
  height: auto;
}
.cid-uwABs7AR90 .item-title {
  width: 100%;
  margin: 0;
  color: #987A5A;
}
.cid-uwABs7AR90 .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-uwABs7AR90 .item-text {
    margin: 16px 0 0;
  }
}
.cid-uwABs7AR90 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uwABs7AR90 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwQrZ39ua8 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f8f1ea;
}
.cid-uwQrZ39ua8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQrZ39ua8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQrZ39ua8 .mbr-section-title {
  width: 100%;
  color: #829d85;
  margin-bottom: 0;
}
.cid-uwQrZ39ua8 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwQrZ39ua8 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwQrZ39ua8 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwQrZ39ua8 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwQrZ39ua8 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwQrZ39ua8 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwQrZ39ua8 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwPzgSiAdw {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uwPzgSiAdw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwPzgSiAdw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwPzgSiAdw .text-wrap {
  width: 100%;
}
.cid-uwPzgSiAdw .mbr-section-title {
  color: #829d85;
  margin-bottom: 70px;
}
.cid-uwPzgSiAdw .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .mbr-text {
    margin-top: 30px;
  }
}
.cid-uwPzgSiAdw .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uwPzgSiAdw .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uwPzgSiAdw .item-row {
    justify-content: flex-start;
  }
}
.cid-uwPzgSiAdw .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uwPzgSiAdw .item-row .item:nth-child(1) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uwPzgSiAdw .item-row .item:nth-child(2) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 0 20px 20px 20px;
}
.cid-uwPzgSiAdw .item-row .item:nth-child(3) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uwPzgSiAdw .item-row .item:nth-child(4) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 0 20px;
}
.cid-uwPzgSiAdw .item-row .item:nth-child(5) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uwPzgSiAdw .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uwPzgSiAdw .item-row .item:nth-child(6) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 20px 20px 0 20px;
}
.cid-uwPzgSiAdw .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uwPzgSiAdw .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uwPzgSiAdw .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uwPzgSiAdw .item-row .item:nth-child(7) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 20px 0;
}
.cid-uwPzgSiAdw .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uwPzgSiAdw .item-text {
  color: #000000;
  text-align: center;
}
.cid-uxoU9ujzL5 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uxoU9ujzL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxoU9ujzL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxoU9ujzL5 .text-wrap {
  width: 100%;
}
.cid-uxoU9ujzL5 .mbr-section-title {
  color: #829d85;
  margin-bottom: 70px;
}
.cid-uxoU9ujzL5 .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .mbr-text {
    margin-top: 30px;
  }
}
.cid-uxoU9ujzL5 .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uxoU9ujzL5 .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uxoU9ujzL5 .item-row {
    justify-content: flex-start;
  }
}
.cid-uxoU9ujzL5 .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(1) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(2) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 0 20px 20px 20px;
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(3) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(4) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 0 20px;
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uxoU9ujzL5 .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uxoU9ujzL5 .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uxoU9ujzL5 .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uxoU9ujzL5 .item-row .item:nth-child(7) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 20px 0;
}
.cid-uxoU9ujzL5 .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uxoU9ujzL5 .item-text {
  color: #000000;
  text-align: center;
}
.cid-uwQqzdND18 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwQqzdND18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQqzdND18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQqzdND18 .text-wrap {
  width: 100%;
}
.cid-uwQqzdND18 .mbr-section-title {
  color: #829D85;
  margin-bottom: 70px;
}
.cid-uwQqzdND18 .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .mbr-text {
    margin-top: 30px;
  }
}
.cid-uwQqzdND18 .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uwQqzdND18 .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uwQqzdND18 .item-row {
    justify-content: flex-start;
  }
}
.cid-uwQqzdND18 .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uwQqzdND18 .item-row .item:nth-child(1) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uwQqzdND18 .item-row .item:nth-child(2) .item-wrap {
  background-color: #f6efe8;
  border-radius: 0 20px 20px 20px;
}
.cid-uwQqzdND18 .item-row .item:nth-child(3) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uwQqzdND18 .item-row .item:nth-child(4) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 0 20px;
}
.cid-uwQqzdND18 .item-row .item:nth-child(5) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uwQqzdND18 .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uwQqzdND18 .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uwQqzdND18 .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uwQqzdND18 .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uwQqzdND18 .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uwQqzdND18 .item-row .item:nth-child(7) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 20px 0;
}
.cid-uwQqzdND18 .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uwQqzdND18 .item-text {
  color: #000000;
  text-align: center;
}
.cid-uwQqzYVvGv {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uwQqzYVvGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQqzYVvGv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQqzYVvGv .text-wrap {
  width: 100%;
}
.cid-uwQqzYVvGv .mbr-section-title {
  color: #829D85;
  margin-bottom: 70px;
}
.cid-uwQqzYVvGv .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .mbr-text {
    margin-top: 30px;
  }
}
.cid-uwQqzYVvGv .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uwQqzYVvGv .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uwQqzYVvGv .item-row {
    justify-content: flex-start;
  }
}
.cid-uwQqzYVvGv .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uwQqzYVvGv .item-row .item:nth-child(1) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uwQqzYVvGv .item-row .item:nth-child(2) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 0 20px 20px 20px;
}
.cid-uwQqzYVvGv .item-row .item:nth-child(3) .item-wrap {
  background-color: #f1dbda;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uwQqzYVvGv .item-row .item:nth-child(4) .item-wrap {
  background-color: #f6efe8;
  border-radius: 20px 20px 0 20px;
}
.cid-uwQqzYVvGv .item-row .item:nth-child(5) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uwQqzYVvGv .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uwQqzYVvGv .item-row .item:nth-child(6) .item-wrap {
  background-color: #bbcbbd;
  border-radius: 20px 20px 0 20px;
}
.cid-uwQqzYVvGv .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uwQqzYVvGv .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uwQqzYVvGv .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uwQqzYVvGv .item-row .item:nth-child(7) .item-wrap {
  background-color: #f1dbda;
  border-radius: 20px 20px 20px 0;
}
.cid-uwQqzYVvGv .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uwQqzYVvGv .item-text {
  color: #000000;
  text-align: center;
}
.cid-uwAvyZFlDD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwAvyZFlDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAvyZFlDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAvyZFlDD .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwAvyZFlDD .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwAvyZFlDD .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwAvyZFlDD .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwAvyZFlDD .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAvyZFlDD .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwAvyZFlDD .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAvyZFlDD .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqHSApcMi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqHSApcMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqHSApcMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqHSApcMi .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqHSApcMi .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqHSApcMi .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqHSApcMi .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqHSApcMi .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqHSApcMi .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqHSApcMi .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqHSApcMi .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAvz0c8Vw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwAvz0c8Vw .mbr-text {
  color: #FFFCF5;
}
.cid-uwAvz0c8Vw .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwAFsc7j8L {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwAFsc7j8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAFsc7j8L .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-uwAFsc7j8L .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwAFsc7j8L .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwAFsc7j8L .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwAFsc7j8L .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwAFsc7j8L .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwAFsc7j8L .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwAFsc7j8L .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwAFsc7j8L .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwAFsc7j8L .btn-wrapper {
  margin-top: -15%;
}
.cid-uwAFsc7j8L .mbr-section-title {
  color: #272b2e;
}
.cid-uwAFsc7j8L .mbr-text,
.cid-uwAFsc7j8L .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uwAFsc7j8L .mbr-section-title,
.cid-uwAFsc7j8L .mbr-section-btn,
.cid-uwAFsc7j8L .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uwAF4bM0w7 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #fffdfb;
  overflow: hidden;
}
.cid-uwAF4bM0w7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAF4bM0w7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAF4bM0w7 .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-uwAF4bM0w7 .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uwAF4bM0w7 .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uwAF4bM0w7 .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-uwAF4bM0w7 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uwAF4bM0w7 .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwAF4bM0w7 .items-row {
    row-gap: 50px;
  }
}
.cid-uwAF4bM0w7 .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #61411e;
}
@media (max-width: 575px) {
  .cid-uwAF4bM0w7 .card-title {
    max-width: 100%;
  }
}
.cid-uwAF4bM0w7 .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
}
@media (max-width: 575px) {
  .cid-uwAF4bM0w7 .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-uwAF4bM0w7 .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-uwAF4bM0w7 .item-wrap {
    padding: 20px !important;
  }
}
.cid-uwAF4bM0w7 .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-uwAF4bM0w7 .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.png");
}
.cid-uwAF4bM0w7 .item:nth-child(2) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-uwAF4bM0w7 .item:nth-child(2) {
    margin: 0;
  }
}
.cid-uwAF4bM0w7 .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.png");
}
.cid-uwAF4bM0w7 .item:nth-child(3) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-uwAF4bM0w7 .item:nth-child(3) {
    margin: 0;
  }
}
.cid-uwAF4bM0w7 .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.png");
}
.cid-uwAF4bM0w7 .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.png");
}
.cid-uwAF4cqhM4 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #e2e8e3;
}
.cid-uwAF4cqhM4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAF4cqhM4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAF4cqhM4 .text-wrap {
  width: 100%;
}
.cid-uwAF4cqhM4 .mbr-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-uwAF4cqhM4 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwAF4cqhM4 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAF4cqhM4 .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwAF4cqhM4 .list-box {
  width: 100%;
}
.cid-uwAF4cqhM4 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uwAF4cqhM4 .list-text {
  position: relative;
}
.cid-uwAF4cqhM4 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAF4cVn8B {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #fffdfb;
}
.cid-uwAF4cVn8B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAF4cVn8B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAF4cVn8B .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 280px;
  padding: 70px 50px;
  background-image: url("../../../assets/images/blobs-3.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uwAF4cVn8B .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uwAF4cVn8B .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-uwAF4cVn8B .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-uwAF4cVn8B .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-uwAF4cVn8B .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAF4cVn8B .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwAF4cVn8B .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAF4cVn8B .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwR1SkGWMb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwR1SkGWMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwR1SkGWMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwR1SkGWMb .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwR1SkGWMb .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwR1SkGWMb .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwR1SkGWMb .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwR1SkGWMb .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwR1SkGWMb .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwR1SkGWMb .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwR1SkGWMb .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqJQ3faUQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqJQ3faUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqJQ3faUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqJQ3faUQ .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqJQ3faUQ .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqJQ3faUQ .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqJQ3faUQ .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqJQ3faUQ .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqJQ3faUQ .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqJQ3faUQ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqJQ3faUQ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAF4e43kp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwAF4e43kp .mbr-text {
  color: #FFFCF5;
}
.cid-uwAF4e43kp .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwAIBggmPg {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwAIBggmPg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAIBggmPg .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-uwAIBggmPg .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwAIBggmPg .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwAIBggmPg .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwAIBggmPg .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwAIBggmPg .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwAIBggmPg .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwAIBggmPg .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwAIBggmPg .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwAIBggmPg .btn-wrapper {
  margin-top: -15%;
}
.cid-uwAIBggmPg .mbr-section-title {
  color: #272b2e;
}
.cid-uwAIBggmPg .mbr-text,
.cid-uwAIBggmPg .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uwAIBggmPg .mbr-section-title,
.cid-uwAIBggmPg .mbr-section-btn,
.cid-uwAIBggmPg .clients-wrapper {
  text-align: center;
}
.cid-uwAJ93wyYc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uwAJ93wyYc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAJ93wyYc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAJ93wyYc .text-wrap {
  width: 100%;
}
.cid-uwAJ93wyYc .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uwAJ93wyYc .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwAJ93wyYc .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwAJ93wyYc .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwAJ93wyYc .list-box {
  width: 100%;
}
.cid-uwAJ93wyYc .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwAJ93wyYc .list-text {
  position: relative;
}
.cid-uwAJ93wyYc .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwAJ93wyYc .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-uCArsSYciz {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background4-1.jpg");
}
.cid-uCArsSYciz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCArsSYciz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCArsSYciz .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uCArsSYciz .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uCArsSYciz .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uCArsSYciz .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-uCArsSYciz .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uCArsSYciz .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uCArsSYciz form {
  width: 100%;
}
.cid-uCArsSYciz form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-uCArsSYciz form p {
  color: #353535;
}
.cid-uCArsSYciz form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uCArsSYciz form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-uCArsSYciz form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-uCArsSYciz form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-uCArsSYciz form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #a9bbab !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 20px 0;
  font-size: 18px;
  color: #353535;
  font-weight: 500;
  transition: .3s;
}
.cid-uCArsSYciz form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-uCArsSYciz form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-uCArsSYciz form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-uCArsSYciz form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-uCArsSYciz form select {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-uCArsSYciz form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form input,
.cid-uCArsSYciz form textarea {
  transition: .4s all;
}
.cid-uCArsSYciz form input:active,
.cid-uCArsSYciz form textarea:active,
.cid-uCArsSYciz form input:focus,
.cid-uCArsSYciz form textarea:focus {
  background-color: transparent !important;
  border-color: #a9bbab !important;
  outline: none !important;
}
.cid-uCArsSYciz form input:active::-webkit-input-placeholder,
.cid-uCArsSYciz form textarea:active::-webkit-input-placeholder,
.cid-uCArsSYciz form input:focus::-webkit-input-placeholder,
.cid-uCArsSYciz form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form input:active::-moz-placeholder,
.cid-uCArsSYciz form textarea:active::-moz-placeholder,
.cid-uCArsSYciz form input:focus::-moz-placeholder,
.cid-uCArsSYciz form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form input:active:-moz-placeholder,
.cid-uCArsSYciz form textarea:active:-moz-placeholder,
.cid-uCArsSYciz form input:focus:-moz-placeholder,
.cid-uCArsSYciz form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form input:active:-ms-input-placeholder,
.cid-uCArsSYciz form textarea:active:-ms-input-placeholder,
.cid-uCArsSYciz form input:focus:-ms-input-placeholder,
.cid-uCArsSYciz form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-uCArsSYciz form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-uCArsSYciz form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-uCArsSYciz form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-uCArsSYciz form .form-check label {
  color: #353535;
}
.cid-uCArsSYciz form .form-check-input {
  border-color: #a9bbab !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-uCArsSYciz form .form-check-input:focus,
.cid-uCArsSYciz form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #a9bbab !important;
}
.cid-uCArsSYciz form .form-check-input:checked {
  border-color: #a9bbab !important;
  background-color: #FFFCF5 !important;
}
.cid-uwAIBlRtVQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwAIBlRtVQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwAIBlRtVQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwAIBlRtVQ .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwAIBlRtVQ .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwAIBlRtVQ .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwAIBlRtVQ .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwAIBlRtVQ .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAIBlRtVQ .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwAIBlRtVQ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwAIBlRtVQ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqK1WrYcK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqK1WrYcK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqK1WrYcK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqK1WrYcK .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqK1WrYcK .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqK1WrYcK .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqK1WrYcK .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqK1WrYcK .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqK1WrYcK .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqK1WrYcK .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqK1WrYcK .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwAIBmBRVm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwAIBmBRVm .mbr-text {
  color: #FFFCF5;
}
.cid-uwAIBmBRVm .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwANcUHrrY {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwANcUHrrY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwANcUHrrY .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-uwANcUHrrY .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwANcUHrrY .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwANcUHrrY .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwANcUHrrY .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwANcUHrrY .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwANcUHrrY .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwANcUHrrY .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwANcUHrrY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwANcUHrrY .btn-wrapper {
  margin-top: -15%;
}
.cid-uwANcUHrrY .mbr-section-title {
  color: #272b2e;
}
.cid-uwANcUHrrY .mbr-text,
.cid-uwANcUHrrY .text-wrapper {
  color: #353535;
  text-align: center;
}
.cid-uwANcUHrrY .mbr-section-title,
.cid-uwANcUHrrY .mbr-section-btn,
.cid-uwANcUHrrY .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uyqKc2V861 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-uyqKc2V861 h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqKc2V861 .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqKc2V861 .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uyqKl2MlvO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-uyqKl2MlvO h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqKl2MlvO .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqKl2MlvO .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uwQxfiHxP0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uwQxfiHxP0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQxfiHxP0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQxfiHxP0 .text-wrap {
  width: 100%;
}
.cid-uwQxfiHxP0 .mbr-title {
  margin-bottom: 0;
  color: #829d85;
}
.cid-uwQxfiHxP0 .mbr-text {
  padding-top: 16px;
  color: #272b2e;
}
.cid-uwQxfiHxP0 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQxfiHxP0 .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQxfiHxP0 .list-box {
  width: 100%;
}
.cid-uwQxfiHxP0 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQxfiHxP0 .list-text {
  position: relative;
}
.cid-uwQxfiHxP0 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQxfiHxP0 .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-uwQxgmRcAZ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-uwQxgmRcAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwQxgmRcAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwQxgmRcAZ .text-wrap {
  width: 100%;
}
.cid-uwQxgmRcAZ .mbr-title {
  margin-bottom: 0;
  color: #829d85;
}
.cid-uwQxgmRcAZ .mbr-text {
  padding-top: 16px;
  color: #272b2e;
}
.cid-uwQxgmRcAZ .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwQxgmRcAZ .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwQxgmRcAZ .list-box {
  width: 100%;
}
.cid-uwQxgmRcAZ .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwQxgmRcAZ .list-text {
  position: relative;
}
.cid-uwQxgmRcAZ .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwQxgmRcAZ .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-uwANcW3u5S {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-uwANcW3u5S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwANcW3u5S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwANcW3u5S .text-wrap {
  width: 100%;
}
.cid-uwANcW3u5S .mbr-title {
  margin-bottom: 0;
  color: #829d85;
}
.cid-uwANcW3u5S .mbr-text {
  padding-top: 16px;
  color: #272b2e;
}
.cid-uwANcW3u5S .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwANcW3u5S .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwANcW3u5S .list-box {
  width: 100%;
}
.cid-uwANcW3u5S .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwANcW3u5S .list-text {
  position: relative;
}
.cid-uwANcW3u5S .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwANcW3u5S .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-uwANcXPGyC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwANcXPGyC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwANcXPGyC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwANcXPGyC .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwANcXPGyC .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwANcXPGyC .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwANcXPGyC .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwANcXPGyC .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwANcXPGyC .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwANcXPGyC .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwANcXPGyC .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqHXBjv7J {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqHXBjv7J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqHXBjv7J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqHXBjv7J .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqHXBjv7J .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqHXBjv7J .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqHXBjv7J .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqHXBjv7J .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqHXBjv7J .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqHXBjv7J .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqHXBjv7J .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwANcYjM9u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwANcYjM9u .mbr-text {
  color: #FFFCF5;
}
.cid-uwANcYjM9u .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uwE0BgxJYn {
  z-index: 1000;
  width: 100%;
}
.cid-uwE0BgxJYn nav.navbar {
  position: fixed;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwE0BgxJYn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwE0BgxJYn .dropdown-item:hover,
.cid-uwE0BgxJYn .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uwE0BgxJYn .dropdown-item:hover span {
  color: white;
}
.cid-uwE0BgxJYn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwE0BgxJYn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwE0BgxJYn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwE0BgxJYn .nav-link {
  position: relative;
}
.cid-uwE0BgxJYn .container {
  display: flex;
  margin: auto;
}
.cid-uwE0BgxJYn .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uwE0BgxJYn .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uwE0BgxJYn .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uwE0BgxJYn .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uwE0BgxJYn .dropdown-menu,
.cid-uwE0BgxJYn .navbar.opened {
  background: #a9bbab !important;
}
.cid-uwE0BgxJYn .nav-item:focus,
.cid-uwE0BgxJYn .nav-link:focus {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwE0BgxJYn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwE0BgxJYn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwE0BgxJYn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwE0BgxJYn .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uwE0BgxJYn .navbar.opened {
  transition: all 0.3s;
}
.cid-uwE0BgxJYn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwE0BgxJYn .navbar .navbar-logo img {
  width: auto;
}
.cid-uwE0BgxJYn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwE0BgxJYn .navbar.collapsed {
  justify-content: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwE0BgxJYn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwE0BgxJYn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwE0BgxJYn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwE0BgxJYn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwE0BgxJYn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwE0BgxJYn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwE0BgxJYn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwE0BgxJYn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwE0BgxJYn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwE0BgxJYn .navbar.navbar-short {
  min-height: 90px;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwE0BgxJYn .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwE0BgxJYn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwE0BgxJYn .dropdown-item.active,
.cid-uwE0BgxJYn .dropdown-item:active {
  background-color: transparent;
}
.cid-uwE0BgxJYn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwE0BgxJYn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uwE0BgxJYn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwE0BgxJYn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwE0BgxJYn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-buttons {
  text-align: center;
}
.cid-uwE0BgxJYn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uwE0BgxJYn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwE0BgxJYn nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uwE0BgxJYn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwE0BgxJYn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwE0BgxJYn .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-uwE0BgxJYn .navbar {
    height: 70px;
  }
  .cid-uwE0BgxJYn .navbar.opened {
    height: auto;
  }
  .cid-uwE0BgxJYn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwE0BgxJYn .container,
.cid-uwE0BgxJYn .container-fluid {
  flex-wrap: wrap;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uwE0BgxJYn .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uwE0BgxJYn .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uwE0BgxJYn .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uwE0BgxJYn .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uwE0BgxJYn .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwE0BgxJYn .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uwE0BgxJYn .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uwE0BgxJYn .navbar-nav {
    width: 100%;
  }
}
.cid-uwDL0lKdPw {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uwDL0lKdPw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwDL0lKdPw .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-uwDL0lKdPw .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uwDL0lKdPw .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uwDL0lKdPw .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uwDL0lKdPw .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uwDL0lKdPw .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uwDL0lKdPw .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uwDL0lKdPw .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uwDL0lKdPw .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uwDL0lKdPw .btn-wrapper {
  margin-top: -15%;
}
.cid-uwDL0lKdPw .mbr-section-title {
  color: #272b2e;
}
.cid-uwDL0lKdPw .mbr-text,
.cid-uwDL0lKdPw .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uwDL0lKdPw .mbr-section-title,
.cid-uwDL0lKdPw .mbr-section-btn,
.cid-uwDL0lKdPw .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uwDLyA0pnf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uwDLyA0pnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwDLyA0pnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwDLyA0pnf .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uwDLyA0pnf .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uwDLyA0pnf .col-text {
    order: 2;
  }
}
.cid-uwDLyA0pnf .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uwDLyA0pnf .text-wrap {
    margin-top: 30px;
  }
}
.cid-uwDLyA0pnf .mbr-section-title {
  color: #353535;
}
.cid-uwDLyA0pnf .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwDLyA0pnf .mbr-text {
    margin-top: 12px;
  }
}
.cid-uwDLyA0pnf .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwDLyA0pnf .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uwDLyA0pnf .col-img {
    order: 1;
  }
}
.cid-uwDLyA0pnf .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uwDLyA0pnf .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
  border-radius: 65px 65px 0 65px;
}
@media (max-width: 1199px) {
  .cid-uwDLyA0pnf .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uwDLyA0pnf .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uwDLyA0pnf .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uwDLyA0pnf .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uwDLyA0pnf .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwDL0mzAP4 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uwDL0mzAP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwDL0mzAP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwDL0mzAP4 .text-wrap {
  width: 100%;
}
.cid-uwDL0mzAP4 .mbr-title {
  margin-bottom: 0;
  color: #618365;
}
.cid-uwDL0mzAP4 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uwDL0mzAP4 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uwDL0mzAP4 .list-wrap {
    margin-top: 24px;
  }
}
.cid-uwDL0mzAP4 .list-box {
  width: 100%;
}
.cid-uwDL0mzAP4 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uwDL0mzAP4 .list-text {
  position: relative;
}
.cid-uwDL0mzAP4 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uwDL0mzAP4 .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-uwDLjFWlv8 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #f1dbda;
}
.cid-uwDLjFWlv8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwDLjFWlv8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwDLjFWlv8 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uwDLjFWlv8 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uwDLjFWlv8 .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uwDLjFWlv8 .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-uwDLjFWlv8 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .cid-uwDLjFWlv8 .col-img {
    padding-bottom: 50px;
  }
}
.cid-uwDLjFWlv8 .img-wrap {
  width: 100%;
}
.cid-uwDLjFWlv8 .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uwDLjFWlv8 .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
  }
}
.cid-uwDLjFWlv8 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uwDLjFWlv8 .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #895957;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-uwDLjFWlv8 .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(202, 169, 168, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-uwDLjFWlv8 .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-uwDLjFWlv8 .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-uwDLjFWlv8 .panel-group {
    margin-top: 0;
  }
}
.cid-uwDLjFWlv8 .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-uwDLjFWlv8 .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uwDLjFWlv8 .card-header {
    padding: 8px 0;
  }
}
.cid-uwDLjFWlv8 .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-uwDLjFWlv8 .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-uwDLjFWlv8 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-uwDLjFWlv8 .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uwDLjFWlv8 .panel-title-edit {
  color: #895957;
}
.cid-uwDLjFWlv8 .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-uwDLjFWlv8 .panel-body {
    padding: 0 0 24px;
  }
}
.cid-uwDLjFWlv8 .panel-text {
  color: #353535;
  margin: 0;
}
.cid-uwDL0nzHqB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uwDL0nzHqB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwDL0nzHqB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwDL0nzHqB .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uwDL0nzHqB .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uwDL0nzHqB .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uwDL0nzHqB .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uwDL0nzHqB .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwDL0nzHqB .mbr-text {
    margin-top: 16px;
  }
}
.cid-uwDL0nzHqB .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uwDL0nzHqB .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uxqH1hVfT5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uxqH1hVfT5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxqH1hVfT5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxqH1hVfT5 .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uxqH1hVfT5 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uxqH1hVfT5 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uxqH1hVfT5 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uxqH1hVfT5 .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqH1hVfT5 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uxqH1hVfT5 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uxqH1hVfT5 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uwDL0o0NPl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uwDL0o0NPl .mbr-text {
  color: #FFFCF5;
}
.cid-uwDL0o0NPl .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uyqAC29aL5 {
  z-index: 1000;
  width: 100%;
}
.cid-uyqAC29aL5 nav.navbar {
  position: fixed;
}
.cid-uyqAC29aL5 .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-uyqAC29aL5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uyqAC29aL5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uyqAC29aL5 .dropdown-item:hover,
.cid-uyqAC29aL5 .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uyqAC29aL5 .dropdown-item:hover span {
  color: white;
}
.cid-uyqAC29aL5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uyqAC29aL5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uyqAC29aL5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uyqAC29aL5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uyqAC29aL5 .nav-link {
  position: relative;
}
.cid-uyqAC29aL5 .container {
  display: flex;
  margin: auto;
}
.cid-uyqAC29aL5 .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uyqAC29aL5 .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uyqAC29aL5 .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uyqAC29aL5 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uyqAC29aL5 .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uyqAC29aL5 .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uyqAC29aL5 .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uyqAC29aL5 .dropdown-menu,
.cid-uyqAC29aL5 .navbar.opened {
  background: #a9bbab !important;
}
.cid-uyqAC29aL5 .nav-item:focus,
.cid-uyqAC29aL5 .nav-link:focus {
  outline: none;
}
.cid-uyqAC29aL5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyqAC29aL5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyqAC29aL5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyqAC29aL5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyqAC29aL5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyqAC29aL5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyqAC29aL5 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uyqAC29aL5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uyqAC29aL5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uyqAC29aL5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uyqAC29aL5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uyqAC29aL5 .navbar.collapsed {
  justify-content: center;
}
.cid-uyqAC29aL5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyqAC29aL5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uyqAC29aL5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyqAC29aL5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyqAC29aL5 .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-uyqAC29aL5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyqAC29aL5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uyqAC29aL5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uyqAC29aL5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyqAC29aL5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyqAC29aL5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyqAC29aL5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uyqAC29aL5 .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-uyqAC29aL5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyqAC29aL5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uyqAC29aL5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uyqAC29aL5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uyqAC29aL5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyqAC29aL5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uyqAC29aL5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uyqAC29aL5 .navbar.navbar-short {
  min-height: 90px;
}
.cid-uyqAC29aL5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyqAC29aL5 .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uyqAC29aL5 .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-uyqAC29aL5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uyqAC29aL5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyqAC29aL5 .dropdown-item.active,
.cid-uyqAC29aL5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uyqAC29aL5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uyqAC29aL5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyqAC29aL5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyqAC29aL5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uyqAC29aL5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyqAC29aL5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyqAC29aL5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uyqAC29aL5 .navbar-buttons {
  text-align: center;
}
.cid-uyqAC29aL5 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uyqAC29aL5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uyqAC29aL5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uyqAC29aL5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uyqAC29aL5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uyqAC29aL5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uyqAC29aL5 nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uyqAC29aL5 nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uyqAC29aL5 nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyqAC29aL5 nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uyqAC29aL5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uyqAC29aL5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uyqAC29aL5 .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-uyqAC29aL5 .navbar {
    height: 70px;
  }
  .cid-uyqAC29aL5 .navbar.opened {
    height: auto;
  }
  .cid-uyqAC29aL5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyqAC29aL5 .container,
.cid-uyqAC29aL5 .container-fluid {
  flex-wrap: wrap;
}
.cid-uyqAC29aL5 .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uyqAC29aL5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uyqAC29aL5 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uyqAC29aL5 .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uyqAC29aL5 .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uyqAC29aL5 .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uyqAC29aL5 .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uyqAC29aL5 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uyqAC29aL5 .navbar-nav {
    width: 100%;
  }
}
.cid-uyqAC2MS7e {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uyqAC2MS7e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyqAC2MS7e .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-uyqAC2MS7e .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uyqAC2MS7e .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uyqAC2MS7e .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uyqAC2MS7e .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uyqAC2MS7e .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uyqAC2MS7e .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uyqAC2MS7e .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uyqAC2MS7e .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uyqAC2MS7e .btn-wrapper {
  margin-top: -15%;
}
.cid-uyqAC2MS7e .mbr-section-title {
  color: #272b2e;
}
.cid-uyqAC2MS7e .mbr-text,
.cid-uyqAC2MS7e .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uyqAC2MS7e .mbr-section-title,
.cid-uyqAC2MS7e .mbr-section-btn,
.cid-uyqAC2MS7e .clients-wrapper {
  text-align: center;
}
.cid-uyqAC36lmj {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uyqAC36lmj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyqAC36lmj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyqAC36lmj .text-wrap {
  width: 100%;
}
.cid-uyqAC36lmj .mbr-title {
  margin-bottom: 0;
  color: #829D85;
}
.cid-uyqAC36lmj .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uyqAC36lmj .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uyqAC36lmj .list-wrap {
    margin-top: 24px;
  }
}
.cid-uyqAC36lmj .list-box {
  width: 100%;
}
.cid-uyqAC36lmj .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uyqAC36lmj .list-text {
  position: relative;
}
.cid-uyqAC36lmj .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uyqAC36lmj .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-uyqBIwb4hv {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uyqBIwb4hv h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqBIwb4hv .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqBIwb4hv .mbr-section-title {
  text-align: left;
}
.cid-uyqAC4jv8l {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uyqAC4jv8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyqAC4jv8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyqAC4jv8l .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uyqAC4jv8l .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uyqAC4jv8l .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uyqAC4jv8l .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uyqAC4jv8l .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uyqAC4jv8l .mbr-text {
    margin-top: 16px;
  }
}
.cid-uyqAC4jv8l .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uyqAC4jv8l .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uyqAC4BuRy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uyqAC4BuRy .mbr-text {
  color: #FFFCF5;
}
.cid-uyqAC4BuRy .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uyqCqhEhJe {
  z-index: 1000;
  width: 100%;
}
.cid-uyqCqhEhJe nav.navbar {
  position: fixed;
}
.cid-uyqCqhEhJe .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-uyqCqhEhJe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uyqCqhEhJe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uyqCqhEhJe .dropdown-item:hover,
.cid-uyqCqhEhJe .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uyqCqhEhJe .dropdown-item:hover span {
  color: white;
}
.cid-uyqCqhEhJe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uyqCqhEhJe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uyqCqhEhJe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uyqCqhEhJe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uyqCqhEhJe .nav-link {
  position: relative;
}
.cid-uyqCqhEhJe .container {
  display: flex;
  margin: auto;
}
.cid-uyqCqhEhJe .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uyqCqhEhJe .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uyqCqhEhJe .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uyqCqhEhJe .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uyqCqhEhJe .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uyqCqhEhJe .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uyqCqhEhJe .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uyqCqhEhJe .dropdown-menu,
.cid-uyqCqhEhJe .navbar.opened {
  background: #a9bbab !important;
}
.cid-uyqCqhEhJe .nav-item:focus,
.cid-uyqCqhEhJe .nav-link:focus {
  outline: none;
}
.cid-uyqCqhEhJe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uyqCqhEhJe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uyqCqhEhJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uyqCqhEhJe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uyqCqhEhJe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uyqCqhEhJe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uyqCqhEhJe .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uyqCqhEhJe .navbar.opened {
  transition: all 0.3s;
}
.cid-uyqCqhEhJe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uyqCqhEhJe .navbar .navbar-logo img {
  width: auto;
}
.cid-uyqCqhEhJe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uyqCqhEhJe .navbar.collapsed {
  justify-content: center;
}
.cid-uyqCqhEhJe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uyqCqhEhJe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uyqCqhEhJe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uyqCqhEhJe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uyqCqhEhJe .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-uyqCqhEhJe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uyqCqhEhJe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uyqCqhEhJe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uyqCqhEhJe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uyqCqhEhJe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uyqCqhEhJe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uyqCqhEhJe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uyqCqhEhJe .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-uyqCqhEhJe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uyqCqhEhJe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uyqCqhEhJe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uyqCqhEhJe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uyqCqhEhJe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uyqCqhEhJe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uyqCqhEhJe .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uyqCqhEhJe .navbar.navbar-short {
  min-height: 90px;
}
.cid-uyqCqhEhJe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uyqCqhEhJe .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uyqCqhEhJe .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-uyqCqhEhJe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uyqCqhEhJe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uyqCqhEhJe .dropdown-item.active,
.cid-uyqCqhEhJe .dropdown-item:active {
  background-color: transparent;
}
.cid-uyqCqhEhJe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uyqCqhEhJe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uyqCqhEhJe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uyqCqhEhJe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uyqCqhEhJe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uyqCqhEhJe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uyqCqhEhJe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uyqCqhEhJe .navbar-buttons {
  text-align: center;
}
.cid-uyqCqhEhJe button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uyqCqhEhJe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uyqCqhEhJe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uyqCqhEhJe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uyqCqhEhJe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uyqCqhEhJe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uyqCqhEhJe nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uyqCqhEhJe nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uyqCqhEhJe nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uyqCqhEhJe nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uyqCqhEhJe .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uyqCqhEhJe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uyqCqhEhJe .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-uyqCqhEhJe .navbar {
    height: 70px;
  }
  .cid-uyqCqhEhJe .navbar.opened {
    height: auto;
  }
  .cid-uyqCqhEhJe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uyqCqhEhJe .container,
.cid-uyqCqhEhJe .container-fluid {
  flex-wrap: wrap;
}
.cid-uyqCqhEhJe .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uyqCqhEhJe .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uyqCqhEhJe .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uyqCqhEhJe .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uyqCqhEhJe .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uyqCqhEhJe .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uyqCqhEhJe .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uyqCqhEhJe .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uyqCqhEhJe .navbar-nav {
    width: 100%;
  }
}
.cid-uyqCqixXfF {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uyqCqixXfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyqCqixXfF .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-uyqCqixXfF .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uyqCqixXfF .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uyqCqixXfF .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uyqCqixXfF .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uyqCqixXfF .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uyqCqixXfF .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uyqCqixXfF .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uyqCqixXfF .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uyqCqixXfF .btn-wrapper {
  margin-top: -15%;
}
.cid-uyqCqixXfF .mbr-section-title {
  color: #272b2e;
}
.cid-uyqCqixXfF .mbr-text,
.cid-uyqCqixXfF .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uyqCqixXfF .mbr-section-title,
.cid-uyqCqixXfF .mbr-section-btn,
.cid-uyqCqixXfF .clients-wrapper {
  text-align: center;
}
.cid-uyqDct6rCu {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uyqDct6rCu h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqDct6rCu .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqDct6rCu .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uyqDEA7nMx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uyqDEA7nMx h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqDEA7nMx .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqDEA7nMx .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uyqFPhJux2 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uyqFPhJux2 h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqFPhJux2 .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqFPhJux2 .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uyqHusXvgZ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #fffcf5;
}
.cid-uyqHusXvgZ h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqHusXvgZ .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqHusXvgZ .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uyqHXbFcBG {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-uyqHXbFcBG h3 {
  margin-bottom: 0.3em!important;
}
.cid-uyqHXbFcBG .mbr-section-subtitle {
  text-align: left;
}
.cid-uyqHXbFcBG .mbr-section-title {
  text-align: left;
  color: #829d85;
}
.cid-uyqCqjD4zM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uyqCqjD4zM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyqCqjD4zM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyqCqjD4zM .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uyqCqjD4zM .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uyqCqjD4zM .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uyqCqjD4zM .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uyqCqjD4zM .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uyqCqjD4zM .mbr-text {
    margin-top: 16px;
  }
}
.cid-uyqCqjD4zM .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uyqCqjD4zM .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uyqCqk2VVj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uyqCqk2VVj .mbr-text {
  color: #FFFCF5;
}
.cid-uyqCqk2VVj .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uzWtcXRZWW {
  z-index: 1000;
  width: 100%;
}
.cid-uzWtcXRZWW nav.navbar {
  position: fixed;
}
.cid-uzWtcXRZWW .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-uzWtcXRZWW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzWtcXRZWW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzWtcXRZWW .dropdown-item:hover,
.cid-uzWtcXRZWW .dropdown-item:focus {
  background: #a9bbab !important;
  color: white !important;
}
.cid-uzWtcXRZWW .dropdown-item:hover span {
  color: white;
}
.cid-uzWtcXRZWW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzWtcXRZWW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzWtcXRZWW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzWtcXRZWW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzWtcXRZWW .nav-link {
  position: relative;
}
.cid-uzWtcXRZWW .container {
  display: flex;
  margin: auto;
}
.cid-uzWtcXRZWW .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uzWtcXRZWW .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uzWtcXRZWW .iconfont-wrapper .mbr-iconfont:hover {
  color: #a9bbab;
}
.cid-uzWtcXRZWW .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uzWtcXRZWW .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uzWtcXRZWW .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uzWtcXRZWW .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uzWtcXRZWW .dropdown-menu,
.cid-uzWtcXRZWW .navbar.opened {
  background: #a9bbab !important;
}
.cid-uzWtcXRZWW .nav-item:focus,
.cid-uzWtcXRZWW .nav-link:focus {
  outline: none;
}
.cid-uzWtcXRZWW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzWtcXRZWW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzWtcXRZWW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzWtcXRZWW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzWtcXRZWW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzWtcXRZWW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzWtcXRZWW .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: rgba(169, 187, 171, 0.5);
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uzWtcXRZWW .navbar.opened {
  transition: all 0.3s;
}
.cid-uzWtcXRZWW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzWtcXRZWW .navbar .navbar-logo img {
  width: auto;
}
.cid-uzWtcXRZWW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzWtcXRZWW .navbar.collapsed {
  justify-content: center;
}
.cid-uzWtcXRZWW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzWtcXRZWW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uzWtcXRZWW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzWtcXRZWW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzWtcXRZWW .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-uzWtcXRZWW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzWtcXRZWW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzWtcXRZWW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzWtcXRZWW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzWtcXRZWW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzWtcXRZWW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzWtcXRZWW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzWtcXRZWW .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-uzWtcXRZWW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzWtcXRZWW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzWtcXRZWW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzWtcXRZWW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzWtcXRZWW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzWtcXRZWW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzWtcXRZWW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzWtcXRZWW .navbar.navbar-short {
  min-height: 90px;
}
.cid-uzWtcXRZWW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzWtcXRZWW .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uzWtcXRZWW .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-uzWtcXRZWW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzWtcXRZWW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzWtcXRZWW .dropdown-item.active,
.cid-uzWtcXRZWW .dropdown-item:active {
  background-color: transparent;
}
.cid-uzWtcXRZWW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzWtcXRZWW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzWtcXRZWW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzWtcXRZWW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #a9bbab;
}
.cid-uzWtcXRZWW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzWtcXRZWW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzWtcXRZWW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzWtcXRZWW .navbar-buttons {
  text-align: center;
}
.cid-uzWtcXRZWW button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #a9bbab;
  border-radius: 50%;
}
.cid-uzWtcXRZWW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}
.cid-uzWtcXRZWW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uzWtcXRZWW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uzWtcXRZWW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uzWtcXRZWW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uzWtcXRZWW nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uzWtcXRZWW nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uzWtcXRZWW nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzWtcXRZWW nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uzWtcXRZWW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uzWtcXRZWW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzWtcXRZWW .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-uzWtcXRZWW .navbar {
    height: 70px;
  }
  .cid-uzWtcXRZWW .navbar.opened {
    height: auto;
  }
  .cid-uzWtcXRZWW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzWtcXRZWW .container,
.cid-uzWtcXRZWW .container-fluid {
  flex-wrap: wrap;
}
.cid-uzWtcXRZWW .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uzWtcXRZWW .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uzWtcXRZWW .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-uzWtcXRZWW .navbar-brand {
  width: auto;
  min-height: 89px;
}
.cid-uzWtcXRZWW .navbar-collapse {
  width: 100%;
  min-height: auto;
  padding-bottom: 1rem;
  order: 5;
}
.cid-uzWtcXRZWW .navbar-nav {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzWtcXRZWW .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uzWtcXRZWW .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uzWtcXRZWW .navbar-nav {
    width: 100%;
  }
}
.cid-uzWtcYH8cb {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/dsc07763-2000x1333.jpg");
}
.cid-uzWtcYH8cb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzWtcYH8cb .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-uzWtcYH8cb .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uzWtcYH8cb .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uzWtcYH8cb .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uzWtcYH8cb .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uzWtcYH8cb .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uzWtcYH8cb .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uzWtcYH8cb .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uzWtcYH8cb .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uzWtcYH8cb .btn-wrapper {
  margin-top: -15%;
}
.cid-uzWtcYH8cb .mbr-section-title {
  color: #272b2e;
}
.cid-uzWtcYH8cb .mbr-text,
.cid-uzWtcYH8cb .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uzWtcYH8cb .mbr-section-title,
.cid-uzWtcYH8cb .mbr-section-btn,
.cid-uzWtcYH8cb .clients-wrapper {
  text-align: center;
  color: #353535;
}
.cid-uzWw0Vw0ay {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uzWw0Vw0ay .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzWw0Vw0ay .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzWw0Vw0ay .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uzWw0Vw0ay .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uzWw0Vw0ay .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uzWw0Vw0ay .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uzWw0Vw0ay .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWw0Vw0ay .mbr-text {
    margin-top: 16px;
  }
}
.cid-uzWw0Vw0ay .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWw0Vw0ay .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uzWtcZDWIt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uzWtcZDWIt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzWtcZDWIt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzWtcZDWIt .text-wrap {
  width: 100%;
}
.cid-uzWtcZDWIt .mbr-title {
  margin-bottom: 0;
  color: #353535;
  text-align: center;
}
.cid-uzWtcZDWIt .mbr-text {
  padding-top: 16px;
  color: #353535;
  text-align: center;
}
.cid-uzWtcZDWIt .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uzWtcZDWIt .list-wrap {
    margin-top: 24px;
  }
}
.cid-uzWtcZDWIt .list-box {
  width: 100%;
}
.cid-uzWtcZDWIt .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-uzWtcZDWIt .list-text {
  position: relative;
}
.cid-uzWtcZDWIt .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uzWv2tJygP {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fffcf5;
}
.cid-uzWv2tJygP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzWv2tJygP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzWv2tJygP .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uzWv2tJygP .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uzWv2tJygP .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uzWv2tJygP .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uzWv2tJygP .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWv2tJygP .mbr-text {
    margin-top: 16px;
  }
}
.cid-uzWv2tJygP .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWv2tJygP .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uzWtd0uDf7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dsc07845-1-2000x1333.jpeg");
}
.cid-uzWtd0uDf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzWtd0uDf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzWtd0uDf7 .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-uzWtd0uDf7 .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uzWtd0uDf7 .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uzWtd0uDf7 .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uzWtd0uDf7 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWtd0uDf7 .mbr-text {
    margin-top: 16px;
  }
}
.cid-uzWtd0uDf7 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWtd0uDf7 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uzWtd0QSuF {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #f1dbda;
}
.cid-uzWtd0QSuF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzWtd0QSuF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzWtd0QSuF .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uzWtd0QSuF .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uzWtd0QSuF .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uzWtd0QSuF .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uzWtd0QSuF .mbr-text {
  width: 100%;
  color: #353535;
  font-size: 0.8em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWtd0QSuF .mbr-text {
    margin-top: 16px;
  }
}
.cid-uzWtd0QSuF .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uzWtd0QSuF .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uzWtd1gwXX {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #caa9a8;
}
.cid-uzWtd1gwXX .mbr-text {
  color: #FFFCF5;
}
.cid-uzWtd1gwXX .media-container-row .mbr-text {
  color: #ffffff;
}
