body {
  font-family: Noto Sans;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.375rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.46875rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.0625rem;
    font-size: calc( 2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.18125rem + (4.375 - 2.18125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f8f1ea !important;
}
.bg-success {
  background-color: #446a49 !important;
}
.bg-info {
  background-color: #d0c4b7 !important;
}
.bg-warning {
  background-color: #caa9a8 !important;
}
.bg-danger {
  background-color: #b6bfcc !important;
}
.btn-primary:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f8f1ea;
  border: 1px solid #f8f1ea;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary,
.btn-primary:active {
  background-color: transparent  !important;
  border-color: #f8f1ea !important;
  color: #8f71bf !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: #8f71bf !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before,
.btn-primary.active:before {
  background-color: #f8f1ea !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #8f71bf !important;
  background-color: #e2c6a9 !important;
  border-color: #e2c6a9 !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: #b6bfcc;
  border: 1px solid #b6bfcc;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger,
.btn-danger:active {
  background-color: transparent  !important;
  border-color: #b6bfcc !important;
  color: #686e62 !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: #686e62 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before,
.btn-danger.active:before {
  background-color: #b6bfcc !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #686e62 !important;
  background-color: #8392a8 !important;
  border-color: #8392a8 !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 #f8f1ea;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-primary-outline,
.btn-primary-outline:active {
  color: #8f71bf;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #8f71bf !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #8f71bf !important;
  background-color: #e2c6a9 !important;
  border-color: #e2c6a9 !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 #b6bfcc;
  transform: rotate(-5deg);
  z-index: -1;
  transition: .35s all;
}
.btn-danger-outline,
.btn-danger-outline:active {
  color: #686e62;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #686e62 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #686e62 !important;
  background-color: #8392a8 !important;
  border-color: #8392a8 !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: #f8f1ea !important;
}
.text-secondary {
  color: #987a5a !important;
}
.text-success {
  color: #446a49 !important;
}
.text-info {
  color: #d0c4b7 !important;
}
.text-warning {
  color: #caa9a8 !important;
}
.text-danger {
  color: #b6bfcc !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #353535 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #dfbe9e !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: #7a8aa2 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #020202 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f8f1ea;
}
.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: #b6bfcc;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f8f1ea;
  border-color: #f8f1ea;
  color: #bd7e3f;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f8f1ea;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f8f1ea !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #f8f1ea;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f8f1ea;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f8f1ea;
}
.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: #f8f1ea;
  border-bottom-color: #f8f1ea;
}
.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: #f8f1ea !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='%23f8f1ea' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1190px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .container {
    max-width: 990px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 670px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 200px;
  min-height: 60px;
  padding: 14px 28px;
  font-weight: 500;
  transition-duration: .35s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  z-index: 2;
}
.mbr-section-btn .btn.btn-black {
  color: #ffffff !important;
}
.mbr-section-btn .btn.btn-white {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-black-outline {
  color: #353535 !important;
}
.mbr-section-btn .btn.btn-white-outline {
  color: #ffffff !important;
}
.mbr-section-btn .btn:hover {
  transform: scale(0.9);
}
.mbr-section-btn .btn:hover:before {
  transform: rotate(0deg) scale(1.1111);
}
.cid-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-tR3655Y19k {
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
  overflow: hidden;
}
.cid-tR3655Y19k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tR3655Y19k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tR3655Y19k .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tR3655Y19k .row {
    flex-wrap: wrap;
  }
}
.cid-tR3655Y19k .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tR3655Y19k .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tR3655Y19k .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tR3655Y19k .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tR3655Y19k .mbr-section-title {
  color: #895957;
  text-align: left;
}
.cid-tR3655Y19k .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tR3655Y19k .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tR3655Y19k .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tR3655Y19k .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tR3655Y19k .mbr-text {
    margin-top: 12px;
  }
}
.cid-tR3655Y19k .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tR3655Y19k .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tR3655Y19k .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tR3655Y19k .col-img {
    width: 350px;
  }
}
.cid-tR3655Y19k .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tR3655Y19k .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-tR3655Y19k .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tR3655Y19k .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tR3655Y19k .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tR3655Y19k .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tR3655Y19k .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tR3655Y19k .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tR3655Y19k .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tR3655Y19k .mbr-text,
.cid-tR3655Y19k .mbr-section-btn {
  text-align: left;
}
.cid-tVzduXjwVh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tVzduXjwVh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVzduXjwVh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVzduXjwVh .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVzduXjwVh .row {
    flex-wrap: wrap;
  }
}
.cid-tVzduXjwVh .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tVzduXjwVh .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f8f1ea;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tVzduXjwVh .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tVzduXjwVh .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tVzduXjwVh .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tVzduXjwVh .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tVzduXjwVh .mbr-section-title {
  color: #353535;
}
.cid-tVzduXjwVh .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVzduXjwVh .mbr-text {
    margin-top: 12px;
  }
}
.cid-tVzduXjwVh .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVzduXjwVh .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tVzduXjwVh .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tVzduXjwVh .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tVzduXjwVh .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tVzduXjwVh .col-img {
    margin-bottom: -50px;
  }
}
.cid-tVzduXjwVh .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tVzduXjwVh .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tVzduXjwVh .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tVzduXjwVh .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-tVzduXjwVh .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-v5qY0zoGTI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #fffcf5;
}
.cid-v5qY0zoGTI .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-v5qY0zoGTI .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-v5qY0zoGTI .mbr-section-title {
  color: #895957;
  margin-bottom: 0;
}
.cid-v5qY0zoGTI .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-v5qY0zoGTI .box {
  width: 100%;
  border-radius: 45px;
  overflow: hidden;
  border: 1px solid rgba(137, 89, 87, 0.8);
}
.cid-v5qY0zoGTI .mbr-media {
  width: 100%;
  position: relative;
}
.cid-v5qY0zoGTI .mbr-media img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  max-width: 100%;
  object-fit: cover;
}
.cid-v5qY0zoGTI .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-v5qY0zoGTI .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: 0.4s all;
}
.cid-v5qY0zoGTI .icon-wrap:hover {
  transform: translate(-50%, -50%) scale(0.9);
}
.cid-v5qY0zoGTI .icon-wrap .mbr-iconfont {
  color: #353535;
  font-size: 5vw !important;
}
@media (max-width: 991px) {
  .cid-v5qY0zoGTI .icon-wrap .mbr-iconfont {
    font-size: 7vw !important;
  }
}
@media (max-width: 575px) {
  .cid-v5qY0zoGTI .icon-wrap .mbr-iconfont {
    font-size: 9vw !important;
  }
}
.cid-v5qY0zoGTI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v5qY0zoGTI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v5qY0zoGTI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v5qY0zoGTI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v5qY0zoGTI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tVANtgRd5o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tVANtgRd5o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVANtgRd5o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVANtgRd5o .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tVANtgRd5o .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tVANtgRd5o .col-text {
    order: 2;
  }
}
.cid-tVANtgRd5o .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVANtgRd5o .text-wrap {
    margin-top: 30px;
  }
}
.cid-tVANtgRd5o .mbr-section-title {
  color: #353535;
}
.cid-tVANtgRd5o .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVANtgRd5o .mbr-text {
    margin-top: 12px;
  }
}
.cid-tVANtgRd5o .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVANtgRd5o .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tVANtgRd5o .col-img {
    order: 1;
  }
}
.cid-tVANtgRd5o .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tVANtgRd5o .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-tVANtgRd5o .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tVANtgRd5o .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tVANtgRd5o .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tVANtgRd5o .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tVANtgRd5o .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tVAVbivY2Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
}
.cid-tVAVbivY2Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVAVbivY2Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVAVbivY2Z .mbr-section-title {
  width: 100%;
  color: #895957;
  margin-bottom: 0;
}
.cid-tVAVbivY2Z .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tVAVbivY2Z .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tVAVbivY2Z .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tVAVbivY2Z .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVAVbivY2Z .mbr-text {
    margin-top: 16px;
  }
}
.cid-tVAVbivY2Z .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVAVbivY2Z .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWTtrIAfkR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWTtrIAfkR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTtrIAfkR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTtrIAfkR .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWTtrIAfkR .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tWTtrIAfkR .col-text {
    order: 2;
  }
}
.cid-tWTtrIAfkR .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWTtrIAfkR .text-wrap {
    margin-top: 30px;
  }
}
.cid-tWTtrIAfkR .mbr-section-title {
  color: #353535;
}
.cid-tWTtrIAfkR .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWTtrIAfkR .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWTtrIAfkR .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWTtrIAfkR .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWTtrIAfkR .col-img {
    order: 1;
  }
}
.cid-tWTtrIAfkR .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWTtrIAfkR .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tWTtrIAfkR .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-tWTtrIAfkR .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-tWTtrIAfkR .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-tWTtrIAfkR .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-tWTtrIAfkR .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-v2knCpzREW.popup-builder {
  background-color: #ffffff;
}
.cid-v2knCpzREW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v2knCpzREW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v2knCpzREW .modal-content,
.cid-v2knCpzREW .modal-dialog {
  height: auto;
}
.cid-v2knCpzREW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v2knCpzREW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v2knCpzREW .form-wrapper .mbr-form .form-group,
  .cid-v2knCpzREW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v2knCpzREW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v2knCpzREW .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v2knCpzREW .mbr-text {
  text-align: center;
}
.cid-v2knCpzREW .pt-0 {
  padding-top: 0 !important;
}
.cid-v2knCpzREW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v2knCpzREW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v2knCpzREW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v2knCpzREW .modal-open {
  overflow: hidden;
}
.cid-v2knCpzREW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v2knCpzREW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v2knCpzREW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v2knCpzREW .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v2knCpzREW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v2knCpzREW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v2knCpzREW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v2knCpzREW .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v2knCpzREW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v2knCpzREW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v2knCpzREW .modal-backdrop.fade {
  opacity: 0;
}
.cid-v2knCpzREW .modal-backdrop.show {
  opacity: .5;
}
.cid-v2knCpzREW .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v2knCpzREW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2knCpzREW .modal-header {
    padding: 1rem;
  }
}
.cid-v2knCpzREW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v2knCpzREW .modal-header .close svg {
  fill: #353535;
}
.cid-v2knCpzREW .modal-header .close:hover {
  opacity: 1;
}
.cid-v2knCpzREW .modal-header .close:focus {
  outline: none;
}
.cid-v2knCpzREW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v2knCpzREW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v2knCpzREW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2knCpzREW .modal-body {
    padding: 1rem;
  }
}
.cid-v2knCpzREW .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v2knCpzREW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2knCpzREW .modal-footer {
    padding: 1rem;
  }
}
.cid-v2knCpzREW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v2knCpzREW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v2knCpzREW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v2knCpzREW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v2knCpzREW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v2knCpzREW .modal-lg,
  .cid-v2knCpzREW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v2knCpzREW .modal-xl {
    max-width: 1140px;
  }
}
.cid-v2knCpzREW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v2knCpzREW .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v2knCpzREW .form-group {
  margin-bottom: 1rem;
}
.cid-v2knCpzREW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v2knCpzREW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v2knCpzREW .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v2knCpzREW .mbr-section-btn {
  margin: 0;
}
.cid-v2knCpzREW .mbr-section-btn .btn {
  margin: 0;
}
.cid-tV7uh9OLWQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tV7uh9OLWQ nav.navbar {
  position: fixed;
}
.cid-tV7uh9OLWQ .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-tV7uh9OLWQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV7uh9OLWQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV7uh9OLWQ .dropdown-item:hover,
.cid-tV7uh9OLWQ .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tV7uh9OLWQ .dropdown-item:hover span {
  color: white;
}
.cid-tV7uh9OLWQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV7uh9OLWQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV7uh9OLWQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV7uh9OLWQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV7uh9OLWQ .nav-link {
  position: relative;
}
.cid-tV7uh9OLWQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV7uh9OLWQ .container {
    flex-wrap: nowrap;
  }
}
.cid-tV7uh9OLWQ .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tV7uh9OLWQ .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tV7uh9OLWQ .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tV7uh9OLWQ .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tV7uh9OLWQ .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tV7uh9OLWQ .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tV7uh9OLWQ .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tV7uh9OLWQ .dropdown-menu,
.cid-tV7uh9OLWQ .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tV7uh9OLWQ .nav-item:focus,
.cid-tV7uh9OLWQ .nav-link:focus {
  outline: none;
}
.cid-tV7uh9OLWQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV7uh9OLWQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV7uh9OLWQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV7uh9OLWQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV7uh9OLWQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV7uh9OLWQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV7uh9OLWQ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tV7uh9OLWQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tV7uh9OLWQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV7uh9OLWQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tV7uh9OLWQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV7uh9OLWQ .navbar.collapsed {
  justify-content: center;
}
.cid-tV7uh9OLWQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV7uh9OLWQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV7uh9OLWQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV7uh9OLWQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV7uh9OLWQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV7uh9OLWQ .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-tV7uh9OLWQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV7uh9OLWQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV7uh9OLWQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV7uh9OLWQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV7uh9OLWQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV7uh9OLWQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV7uh9OLWQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV7uh9OLWQ .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-tV7uh9OLWQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV7uh9OLWQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV7uh9OLWQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV7uh9OLWQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV7uh9OLWQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV7uh9OLWQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV7uh9OLWQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV7uh9OLWQ .navbar.navbar-short {
  min-height: 90px;
}
.cid-tV7uh9OLWQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV7uh9OLWQ .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tV7uh9OLWQ .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-tV7uh9OLWQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV7uh9OLWQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV7uh9OLWQ .dropdown-item.active,
.cid-tV7uh9OLWQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tV7uh9OLWQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV7uh9OLWQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV7uh9OLWQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV7uh9OLWQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tV7uh9OLWQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV7uh9OLWQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV7uh9OLWQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV7uh9OLWQ .navbar-buttons {
  text-align: center;
}
.cid-tV7uh9OLWQ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tV7uh9OLWQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tV7uh9OLWQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tV7uh9OLWQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tV7uh9OLWQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tV7uh9OLWQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tV7uh9OLWQ nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tV7uh9OLWQ nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tV7uh9OLWQ nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV7uh9OLWQ nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tV7uh9OLWQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV7uh9OLWQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV7uh9OLWQ .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-tV7uh9OLWQ .navbar {
    height: 70px;
  }
  .cid-tV7uh9OLWQ .navbar.opened {
    height: auto;
  }
  .cid-tV7uh9OLWQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV7uh9OLWQ .container,
.cid-tV7uh9OLWQ .container-fluid {
  flex-wrap: wrap;
}
.cid-tV7uh9OLWQ .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tV7uh9OLWQ .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tV7uh9OLWQ .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tV7uh9OLWQ .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tV7uh9OLWQ .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tV7uh9OLWQ .navbar-nav {
    width: 100%;
  }
}
.cid-tV7uhabkme {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
  overflow: hidden;
}
.cid-tV7uhabkme .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV7uhabkme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV7uhabkme .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tV7uhabkme .row {
    flex-wrap: wrap;
  }
}
.cid-tV7uhabkme .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tV7uhabkme .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tV7uhabkme .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tV7uhabkme .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tV7uhabkme .mbr-section-title {
  color: #895957;
  text-align: center;
}
.cid-tV7uhabkme .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tV7uhabkme .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tV7uhabkme .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tV7uhabkme .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tV7uhabkme .mbr-text {
    margin-top: 12px;
  }
}
.cid-tV7uhabkme .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tV7uhabkme .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tV7uhabkme .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tV7uhabkme .col-img {
    width: 350px;
  }
}
.cid-tV7uhabkme .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tV7uhabkme .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-tV7uhabkme .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tV7uhabkme .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tV7uhabkme .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tV7uhabkme .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tV7uhabkme .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tV7uhabkme .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tV7uhabkme .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tV7uhabkme .mbr-text,
.cid-tV7uhabkme .mbr-section-btn {
  text-align: left;
}
.cid-tVAKgwHidq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tVAKgwHidq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVAKgwHidq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVAKgwHidq .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVAKgwHidq .row {
    flex-wrap: wrap;
  }
}
.cid-tVAKgwHidq .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tVAKgwHidq .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f8f1ea;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tVAKgwHidq .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tVAKgwHidq .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tVAKgwHidq .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tVAKgwHidq .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tVAKgwHidq .mbr-section-title {
  color: #353535;
}
.cid-tVAKgwHidq .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAKgwHidq .mbr-text {
    margin-top: 12px;
  }
}
.cid-tVAKgwHidq .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAKgwHidq .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tVAKgwHidq .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tVAKgwHidq .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tVAKgwHidq .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tVAKgwHidq .col-img {
    margin-bottom: -50px;
  }
}
.cid-tVAKgwHidq .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tVAKgwHidq .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tVAKgwHidq .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tVAKgwHidq .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-tVAKgwHidq .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWTtHjwtRo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWTtHjwtRo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTtHjwtRo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTtHjwtRo .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWTtHjwtRo .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tWTtHjwtRo .col-text {
    order: 2;
  }
}
.cid-tWTtHjwtRo .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWTtHjwtRo .text-wrap {
    margin-top: 30px;
  }
}
.cid-tWTtHjwtRo .mbr-section-title {
  color: #353535;
}
.cid-tWTtHjwtRo .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWTtHjwtRo .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWTtHjwtRo .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWTtHjwtRo .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWTtHjwtRo .col-img {
    order: 1;
  }
}
.cid-tWTtHjwtRo .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWTtHjwtRo .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 65px 65px 65px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tWTtHjwtRo .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 991px) {
  .cid-tWTtHjwtRo .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
  }
}
@media (max-width: 767px) {
  .cid-tWTtHjwtRo .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
  }
}
@media (max-width: 575px) {
  .cid-tWTtHjwtRo .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
  }
}
.cid-tWTtHjwtRo .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tYegTqbpst {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f1ea;
}
.cid-tYegTqbpst .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYegTqbpst .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYegTqbpst .text-wrap {
  width: 100%;
}
.cid-tYegTqbpst .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tYegTqbpst .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tYegTqbpst .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tYegTqbpst .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tYegTqbpst .item-row {
  row-gap: 50px;
}
.cid-tYegTqbpst .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-tYegTqbpst .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-tYegTqbpst .img-box img {
  width: 100%;
  height: auto;
}
.cid-tYegTqbpst .item-title {
  width: 100%;
  margin: 0;
  color: #895957;
}
.cid-tYegTqbpst .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-tYegTqbpst .item-text {
    margin: 16px 0 0;
  }
}
.cid-tYegTqbpst .mbr-section-btn {
  margin-top: 20px;
}
.cid-tYegTqbpst .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tYegTqbpst .item-text,
.cid-tYegTqbpst .mbr-section-btn {
  text-align: center;
}
.cid-tWTiAVaVpo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWTiAVaVpo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTiAVaVpo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWTiAVaVpo .row {
    align-items: center !important;
  }
}
.cid-tWTiAVaVpo .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tWTiAVaVpo .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tWTiAVaVpo .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tWTiAVaVpo .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tWTiAVaVpo .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tWTiAVaVpo .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-tWTiAVaVpo .text-wrap {
    padding: 30px 0;
  }
}
.cid-tWTiAVaVpo .mbr-title {
  color: #895957;
}
.cid-tWTiAVaVpo .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tWTiAVaVpo .list-box {
  width: 100%;
}
.cid-tWTiAVaVpo .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tWTiAVaVpo .list-text {
  position: relative;
}
.cid-tWTiAVaVpo .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tWTiAVaVpo .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-tWTiAVaVpo .mbr-section-btn {
  margin-top: 20px;
}
.cid-tWTiAVaVpo .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tWTiAVaVpo .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tWTiAVaVpo .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-tWTiAVaVpo .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tVAV1jASxC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
}
.cid-tVAV1jASxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVAV1jASxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVAV1jASxC .mbr-section-title {
  width: 100%;
  color: #895957;
  margin-bottom: 0;
}
.cid-tVAV1jASxC .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tVAV1jASxC .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tVAV1jASxC .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tVAV1jASxC .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVAV1jASxC .mbr-text {
    margin-top: 16px;
  }
}
.cid-tVAV1jASxC .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tVAV1jASxC .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWTkHeN9MA {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #fffcf5;
}
.cid-tWTkHeN9MA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTkHeN9MA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTkHeN9MA .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tWTkHeN9MA .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tWTkHeN9MA .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tWTkHeN9MA .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tWTkHeN9MA .carousel img {
    height: 600px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWTkHeN9MA .carousel img {
    height: 396px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .carousel img {
    height: 336px;
    object-fit: cover;
  }
  .cid-tWTkHeN9MA .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tWTkHeN9MA .carousel {
  display: flex;
}
.cid-tWTkHeN9MA .carousel-inner {
  display: flex;
}
.cid-tWTkHeN9MA .carousel-inner .carousel-item:nth-child(1n) img {
  border-radius: 0 45px 45px 45px;
}
.cid-tWTkHeN9MA .carousel-inner .carousel-item:nth-child(2n) img {
  border-radius: 45px;
}
.cid-tWTkHeN9MA .carousel-inner .carousel-item:nth-child(3n) img {
  border-radius: 45px 0 45px 45px;
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-tWTkHeN9MA .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-tWTkHeN9MA .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .item-wrapper {
    padding: 0;
  }
}
.cid-tWTkHeN9MA .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-tWTkHeN9MA .caption-title {
  color: #353535;
}
.cid-tWTkHeN9MA .caption-text {
  color: #353535;
}
.cid-tWTkHeN9MA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tWTkHeN9MA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tWTkHeN9MA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tWTkHeN9MA .carousel-control {
  top: calc(6 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #895957;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWTkHeN9MA .carousel-control {
    top: calc(6 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-tWTkHeN9MA .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-tWTkHeN9MA .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-tWTkHeN9MA .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-tWTkHeN9MA .carousel-indicators {
  position: absolute;
  top: calc(6 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWTkHeN9MA .carousel-indicators {
    top: calc(6 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-tWTkHeN9MA .carousel-indicators {
    top: calc(6 * 56px - 30px);
  }
}
.cid-tWTkHeN9MA .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-tWTkHeN9MA .carousel-indicators li.active,
.cid-tWTkHeN9MA .carousel-indicators li:hover {
  opacity: 1;
  background-color: #f8f1ea;
}
.cid-tWTkHeN9MA .carousel-indicators li::after,
.cid-tWTkHeN9MA .carousel-indicators li::before {
  content: none;
}
.cid-tWTkHeN9MA .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tWTkHeN9MA .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-tWToNCpva8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fffcf5;
}
.cid-tWToNCpva8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWToNCpva8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWToNCpva8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 75%;
  max-width: 75%;
}
@media (max-width: 768px) {
  .cid-tWToNCpva8 .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
}
.cid-tWToNCpva8 .embla__slide .card-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.cid-tWToNCpva8 .embla__slide .card-wrap .card-text {
  margin-bottom: 50px;
}
.cid-tWToNCpva8 .embla__slide .card-wrap .content-wrap .card-name {
  margin-bottom: 12px;
}
.cid-tWToNCpva8 .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 0;
}
.cid-tWToNCpva8 .embla__button--next,
.cid-tWToNCpva8 .embla__button--prev {
  display: flex;
}
.cid-tWToNCpva8 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #895957;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWToNCpva8 .embla__button .mbr-iconfont {
  font-size: 48px;
}
@media (max-width: 768px) {
  .cid-tWToNCpva8 .embla__button .mbr-iconfont {
    font-size: 22px;
  }
}
.cid-tWToNCpva8 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tWToNCpva8 .embla__button:hover {
  background: transparent;
  color: #895957;
  border: none;
  opacity: .65;
}
.cid-tWToNCpva8 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-tWToNCpva8 .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-tWToNCpva8 .embla__button {
    top: auto;
    bottom: -5rem;
  }
}
.cid-tWToNCpva8 .embla {
  position: relative;
  width: 100%;
}
.cid-tWToNCpva8 .embla__viewport {
  overflow: hidden;
  width: 80%;
}
.cid-tWToNCpva8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tWToNCpva8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tWToNCpva8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tWToNCpva8 .icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.cid-tWToNCpva8 .icon-wrapper .mbr-iconfont {
  font-size: 56px;
  display: block;
  color: #895957;
}
.cid-tWToNCpva8 .card-text {
  color: #747474;
  text-align: center;
}
.cid-tWToNCpva8 .card-name {
  color: #895957;
  text-align: center;
}
.cid-tWToNCpva8 .card-desc {
  color: #747474;
  text-align: center;
}
.cid-tVALuJhWe4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tVALuJhWe4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVALuJhWe4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVALuJhWe4 .text-wrap {
  width: 100%;
}
.cid-tVALuJhWe4 .mbr-title {
  margin-bottom: 0;
  color: #353535;
  text-align: center;
}
.cid-tVALuJhWe4 .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tVALuJhWe4 .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVALuJhWe4 .list-wrap {
    margin-top: 24px;
  }
}
.cid-tVALuJhWe4 .list-box {
  width: 100%;
}
.cid-tVALuJhWe4 .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tVALuJhWe4 .list-text {
  position: relative;
}
.cid-tVALuJhWe4 .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tVALuJhWe4 .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-tWUkjaDy5s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f1ea;
}
.cid-tWUkjaDy5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUkjaDy5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUkjaDy5s .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tWUkjaDy5s .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tWUkjaDy5s .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tWUkjaDy5s .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tWUkjaDy5s .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUkjaDy5s .mbr-text {
    margin-top: 16px;
  }
}
.cid-tWUkjaDy5s .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUkjaDy5s .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWbqdnkhOV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWbqdnkhOV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWbqdnkhOV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWbqdnkhOV .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWbqdnkhOV .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tWbqdnkhOV .col-text {
    order: 2;
  }
}
.cid-tWbqdnkhOV .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWbqdnkhOV .text-wrap {
    margin-top: 30px;
  }
}
.cid-tWbqdnkhOV .mbr-section-title {
  color: #353535;
}
.cid-tWbqdnkhOV .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWbqdnkhOV .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWbqdnkhOV .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWbqdnkhOV .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWbqdnkhOV .col-img {
    order: 1;
  }
}
.cid-tWbqdnkhOV .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWbqdnkhOV .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-tWbqdnkhOV .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tWbqdnkhOV .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tWbqdnkhOV .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tWbqdnkhOV .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tWbqdnkhOV .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-tVAMNq7DhM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tVAMNq7DhM nav.navbar {
  position: fixed;
}
.cid-tVAMNq7DhM .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-tVAMNq7DhM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVAMNq7DhM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVAMNq7DhM .dropdown-item:hover,
.cid-tVAMNq7DhM .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tVAMNq7DhM .dropdown-item:hover span {
  color: white;
}
.cid-tVAMNq7DhM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVAMNq7DhM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVAMNq7DhM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVAMNq7DhM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVAMNq7DhM .nav-link {
  position: relative;
}
.cid-tVAMNq7DhM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVAMNq7DhM .container {
    flex-wrap: nowrap;
  }
}
.cid-tVAMNq7DhM .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tVAMNq7DhM .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tVAMNq7DhM .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tVAMNq7DhM .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tVAMNq7DhM .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tVAMNq7DhM .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tVAMNq7DhM .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tVAMNq7DhM .dropdown-menu,
.cid-tVAMNq7DhM .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tVAMNq7DhM .nav-item:focus,
.cid-tVAMNq7DhM .nav-link:focus {
  outline: none;
}
.cid-tVAMNq7DhM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVAMNq7DhM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVAMNq7DhM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVAMNq7DhM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVAMNq7DhM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVAMNq7DhM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVAMNq7DhM .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tVAMNq7DhM .navbar.opened {
  transition: all 0.3s;
}
.cid-tVAMNq7DhM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVAMNq7DhM .navbar .navbar-logo img {
  width: auto;
}
.cid-tVAMNq7DhM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVAMNq7DhM .navbar.collapsed {
  justify-content: center;
}
.cid-tVAMNq7DhM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVAMNq7DhM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVAMNq7DhM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tVAMNq7DhM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVAMNq7DhM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVAMNq7DhM .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-tVAMNq7DhM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVAMNq7DhM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVAMNq7DhM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVAMNq7DhM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVAMNq7DhM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVAMNq7DhM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVAMNq7DhM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVAMNq7DhM .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-tVAMNq7DhM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVAMNq7DhM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVAMNq7DhM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVAMNq7DhM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVAMNq7DhM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVAMNq7DhM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tVAMNq7DhM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tVAMNq7DhM .navbar.navbar-short {
  min-height: 90px;
}
.cid-tVAMNq7DhM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVAMNq7DhM .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tVAMNq7DhM .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-tVAMNq7DhM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVAMNq7DhM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVAMNq7DhM .dropdown-item.active,
.cid-tVAMNq7DhM .dropdown-item:active {
  background-color: transparent;
}
.cid-tVAMNq7DhM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVAMNq7DhM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVAMNq7DhM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVAMNq7DhM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tVAMNq7DhM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVAMNq7DhM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVAMNq7DhM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVAMNq7DhM .navbar-buttons {
  text-align: center;
}
.cid-tVAMNq7DhM button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tVAMNq7DhM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tVAMNq7DhM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tVAMNq7DhM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tVAMNq7DhM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tVAMNq7DhM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tVAMNq7DhM nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tVAMNq7DhM nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tVAMNq7DhM nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVAMNq7DhM nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tVAMNq7DhM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVAMNq7DhM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVAMNq7DhM .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-tVAMNq7DhM .navbar {
    height: 70px;
  }
  .cid-tVAMNq7DhM .navbar.opened {
    height: auto;
  }
  .cid-tVAMNq7DhM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVAMNq7DhM .container,
.cid-tVAMNq7DhM .container-fluid {
  flex-wrap: wrap;
}
.cid-tVAMNq7DhM .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tVAMNq7DhM .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tVAMNq7DhM .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVAMNq7DhM .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tVAMNq7DhM .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tVAMNq7DhM .navbar-nav {
    width: 100%;
  }
}
.cid-tVAMNqzvYp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tVAMNqzvYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVAMNqzvYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVAMNqzvYp .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVAMNqzvYp .row {
    flex-wrap: wrap;
  }
}
.cid-tVAMNqzvYp .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVAMNqzvYp .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tVAMNqzvYp .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tVAMNqzvYp .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tVAMNqzvYp .mbr-section-title {
  color: #895957;
  text-align: left;
}
.cid-tVAMNqzvYp .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tVAMNqzvYp .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tVAMNqzvYp .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tVAMNqzvYp .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAMNqzvYp .mbr-text {
    margin-top: 12px;
  }
}
.cid-tVAMNqzvYp .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAMNqzvYp .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tVAMNqzvYp .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tVAMNqzvYp .col-img {
    width: 350px;
  }
}
.cid-tVAMNqzvYp .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tVAMNqzvYp .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-tVAMNqzvYp .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tVAMNqzvYp .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tVAMNqzvYp .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tVAMNqzvYp .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tVAMNqzvYp .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tVAMNqzvYp .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tVAMNqzvYp .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tVAMNqzvYp .mbr-text,
.cid-tVAMNqzvYp .mbr-section-btn {
  text-align: left;
}
.cid-tVAMNqzvYp .mbr-section-title DIV {
  text-align: center;
}
.cid-tVATxsoe2f {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fffcf5;
}
.cid-tVATxsoe2f .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVATxsoe2f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVATxsoe2f .text-wrap {
  width: 100%;
}
.cid-tVATxsoe2f .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tVATxsoe2f .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tVATxsoe2f .mbr-section-title {
  color: #895957;
  margin-bottom: 0;
}
.cid-tVATxsoe2f .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tVATxsoe2f .item-row {
  row-gap: 40px;
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tVATxsoe2f .item-row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tVATxsoe2f .card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tVATxsoe2f .card_1 {
  border: 1px solid rgba(137, 89, 87, 0.8);
  border-radius: 0 45px 45px 45px;
}
.cid-tVATxsoe2f .card_1 .card-title-wrap {
  border-radius: 0 44px 44px 44px;
  border: 1px solid rgba(137, 89, 87, 0.8);
  background-color: rgba(242, 242, 242, 0.8);
}
.cid-tVATxsoe2f .card_2 {
  border: 1px solid rgba(137, 89, 87, 0.8);
  border-radius: 45px;
}
.cid-tVATxsoe2f .card_2 .card-title-wrap {
  border-radius: 44px;
  border: 1px solid rgba(137, 89, 87, 0.8);
  background-color: rgba(246, 237, 234, 0.8);
}
.cid-tVATxsoe2f .card_3 {
  border: 1px solid rgba(137, 89, 87, 0.8);
  border-radius: 45px 45px 0 45px;
}
.cid-tVATxsoe2f .card_3 .card-title-wrap {
  border-radius: 44px 44px 0 44px;
  border: 1px solid rgba(137, 89, 87, 0.8);
  background-color: rgba(221, 232, 222, 0.8);
}
.cid-tVATxsoe2f .card-title-wrap {
  padding: 45px 26px;
}
.cid-tVATxsoe2f .card-title {
  width: 100%;
  margin: 0;
  color: #895957;
}
.cid-tVATxsoe2f .card-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-grow: 1;
  padding: 32px 26px 50px;
}
.cid-tVATxsoe2f .card-text {
  color: #353535;
  margin: 0 0 auto;
}
.cid-tVATxsoe2f .card-text-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 18px;
  margin-top: 28px;
}
.cid-tVATxsoe2f .card-duration {
  color: #353535;
  text-align: center;
}
.cid-tVATxsoe2f .card-cost {
  color: #353535;
  text-align: center;
}
.cid-tVATxsoe2f .mbr-section-btn {
  margin-top: 5px;
}
.cid-tVATxsoe2f .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tWUfBYwhyd {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-tWUfBYwhyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUfBYwhyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUfBYwhyd .text-wrap {
  width: 100%;
}
.cid-tWUfBYwhyd .mbr-title {
  margin-bottom: 0;
  color: #895957;
}
.cid-tWUfBYwhyd .mbr-text {
  padding-top: 16px;
  color: #353535;
  text-align: center;
}
.cid-tWUfBYwhyd .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWUfBYwhyd .list-wrap {
    margin-top: 24px;
  }
}
.cid-tWUfBYwhyd .list-box {
  width: 100%;
}
.cid-tWUfBYwhyd .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tWUfBYwhyd .list-text {
  position: relative;
}
.cid-tWUfBYwhyd .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tWTxFVqpTJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tWTxFVqpTJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxFVqpTJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxFVqpTJ .google-map {
  height: 35rem;
  position: relative;
}
.cid-tWTxFVqpTJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tWTxFVqpTJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tWTxFVqpTJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tWTxFVqpTJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tWTxFVqpTJ .mbr-section-title {
  color: #00004c;
}
.cid-tWTxMtEwce {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-tWTxMtEwce .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxMtEwce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxMtEwce .text-wrap {
  width: 100%;
}
.cid-tWTxMtEwce .mbr-title {
  margin-bottom: 0;
  color: #895957;
  text-align: center;
}
.cid-tWTxMtEwce .mbr-text {
  padding-top: 16px;
  color: #353535;
  text-align: center;
}
.cid-tWTxMtEwce .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWTxMtEwce .list-wrap {
    margin-top: 24px;
  }
}
.cid-tWTxMtEwce .list-box {
  width: 100%;
}
.cid-tWTxMtEwce .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
  padding-left: 0;
}
.cid-tWTxMtEwce .list-text {
  position: relative;
}
.cid-tWTxMtEwce .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tWTxHnSqoY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWTxHnSqoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTxHnSqoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTxHnSqoY .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tWTxHnSqoY .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tWTxHnSqoY .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tWTxHnSqoY .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-tWTxHnSqoY .carousel img {
    height: 1000px;
    object-fit: cover;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWTxHnSqoY .carousel img {
    height: 660px;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .carousel img {
    height: 560px;
    object-fit: cover;
  }
  .cid-tWTxHnSqoY .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tWTxHnSqoY .carousel {
  display: flex;
}
.cid-tWTxHnSqoY .carousel-inner {
  display: flex;
}
.cid-tWTxHnSqoY .carousel-inner .carousel-item:nth-child(1n) img {
  border-radius: 0 45px 45px 45px;
}
.cid-tWTxHnSqoY .carousel-inner .carousel-item:nth-child(2n) img {
  border-radius: 45px;
}
.cid-tWTxHnSqoY .carousel-inner .carousel-item:nth-child(3n) img {
  border-radius: 45px 0 45px 45px;
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .carousel-inner {
    margin-bottom: 40px;
  }
}
.cid-tWTxHnSqoY .item-wrapper {
  width: 100%;
  padding: 0 50px;
}
.cid-tWTxHnSqoY .item-wrapper img {
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .item-wrapper {
    padding: 0;
  }
}
.cid-tWTxHnSqoY .carousel-caption {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  max-width: 560px;
  margin: 0 auto;
  z-index: 101;
}
.cid-tWTxHnSqoY .caption-title {
  color: #353535;
}
.cid-tWTxHnSqoY .caption-text {
  color: #353535;
}
.cid-tWTxHnSqoY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tWTxHnSqoY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tWTxHnSqoY .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tWTxHnSqoY .carousel-control {
  top: calc(10 * 50px);
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  color: #829d85;
  background-color: #f6efe8;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 0.9;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWTxHnSqoY .carousel-control {
    top: calc(10 * 33px);
  }
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .carousel-control {
    top: calc(100% - 20px);
  }
}
.cid-tWTxHnSqoY .carousel-control:hover {
  color: #987a5a;
  background-color: #f1dbda;
  opacity: 0.9;
}
.cid-tWTxHnSqoY .carousel-control.carousel-control-prev {
  left: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .carousel-control.carousel-control-prev {
    margin-right: 0;
    left: calc(50% - 50px);
  }
}
.cid-tWTxHnSqoY .carousel-control.carousel-control-next {
  right: 0;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .carousel-control.carousel-control-next {
    margin-left: 0;
    right: calc(50% - 50px);
  }
}
.cid-tWTxHnSqoY .carousel-indicators {
  position: absolute;
  top: calc(10 * 100px - 30px);
  bottom: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto !important;
  flex-wrap: wrap;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tWTxHnSqoY .carousel-indicators {
    top: calc(10 * 66px - 30px);
  }
}
@media (max-width: 767px) {
  .cid-tWTxHnSqoY .carousel-indicators {
    top: calc(10 * 56px - 30px);
  }
}
.cid-tWTxHnSqoY .carousel-indicators li {
  max-width: 5px;
  height: 5px;
  width: 5px;
  max-height: 5px;
  margin: 7px;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-tWTxHnSqoY .carousel-indicators li.active,
.cid-tWTxHnSqoY .carousel-indicators li:hover {
  opacity: 1;
  background-color: #f8f1ea;
}
.cid-tWTxHnSqoY .carousel-indicators li::after,
.cid-tWTxHnSqoY .carousel-indicators li::before {
  content: none;
}
.cid-tWTxHnSqoY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tWTxHnSqoY .item-menu-overlay {
  z-index: 100 !important;
  opacity: 0 !important;
}
.cid-tWUiUqhFIb {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWUiUqhFIb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUiUqhFIb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUiUqhFIb .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tWUiUqhFIb .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tWUiUqhFIb .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tWUiUqhFIb .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tWUiUqhFIb .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUiUqhFIb .mbr-text {
    margin-top: 16px;
  }
}
.cid-tWUiUqhFIb .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUiUqhFIb .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWbqthQpz6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f1ea;
}
.cid-tWbqthQpz6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWbqthQpz6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWbqthQpz6 .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tWbqthQpz6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tWbqthQpz6 .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-tWbqthQpz6 .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tWbqthQpz6 .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tWbqthQpz6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWbqthQpz6 .col-img {
    display: none;
  }
}
.cid-tWbqthQpz6 .img-wrap {
  width: 100%;
}
.cid-tWbqthQpz6 .img-wrap .img-box {
  width: 100%;
  border-radius: 65px 65px 0 65px;
  overflow: hidden;
  border-radius: 65px 65px 65px 0;
}
@media (max-width: 1199px) {
  .cid-tWbqthQpz6 .img-wrap .img-box {
    border-radius: 40px 40px 0 40px;
    border-radius: 40px  40px 40px 0;
  }
}
.cid-tWbqthQpz6 .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWbqthQpz6 .mbr-iconfont {
  position: relative;
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #987a5a;
  margin-left: 1rem;
  padding: 10px;
  transition: .3s all;
}
.cid-tWbqthQpz6 .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(195, 195, 195, 0.9);
  opacity: 0;
  transition: .3s all;
}
.cid-tWbqthQpz6 .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-tWbqthQpz6 .panel-group {
  border: none;
  border-top: 1px solid #895957;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tWbqthQpz6 .panel-group {
    margin-top: 0;
  }
}
.cid-tWbqthQpz6 .card {
  border-bottom: 1px solid #895957;
  border-radius: 0;
}
.cid-tWbqthQpz6 .card-header {
  padding: 20px 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tWbqthQpz6 .card-header {
    padding: 8px 0;
  }
}
.cid-tWbqthQpz6 .card-header:hover .mbr-iconfont {
  color: #895957;
}
.cid-tWbqthQpz6 .card-header:hover .mbr-iconfont:after {
  opacity: 1;
}
.cid-tWbqthQpz6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #987A5A;
}
.cid-tWbqthQpz6 .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-tWbqthQpz6 .panel-title-edit {
  color: #8f7964;
}
.cid-tWbqthQpz6 .panel-body {
  padding: 0 0 40px;
}
@media (max-width: 767px) {
  .cid-tWbqthQpz6 .panel-body {
    padding: 0 0 24px;
  }
}
.cid-tWbqthQpz6 .panel-text {
  color: #353535;
  margin: 0;
}
.cid-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-tV7uksUM05 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tV7uksUM05 nav.navbar {
  position: fixed;
}
.cid-tV7uksUM05 .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-tV7uksUM05 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV7uksUM05 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV7uksUM05 .dropdown-item:hover,
.cid-tV7uksUM05 .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tV7uksUM05 .dropdown-item:hover span {
  color: white;
}
.cid-tV7uksUM05 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV7uksUM05 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV7uksUM05 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV7uksUM05 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV7uksUM05 .nav-link {
  position: relative;
}
.cid-tV7uksUM05 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV7uksUM05 .container {
    flex-wrap: nowrap;
  }
}
.cid-tV7uksUM05 .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tV7uksUM05 .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tV7uksUM05 .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tV7uksUM05 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tV7uksUM05 .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tV7uksUM05 .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tV7uksUM05 .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tV7uksUM05 .dropdown-menu,
.cid-tV7uksUM05 .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tV7uksUM05 .nav-item:focus,
.cid-tV7uksUM05 .nav-link:focus {
  outline: none;
}
.cid-tV7uksUM05 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV7uksUM05 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV7uksUM05 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV7uksUM05 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV7uksUM05 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV7uksUM05 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV7uksUM05 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tV7uksUM05 .navbar.opened {
  transition: all 0.3s;
}
.cid-tV7uksUM05 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV7uksUM05 .navbar .navbar-logo img {
  width: auto;
}
.cid-tV7uksUM05 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV7uksUM05 .navbar.collapsed {
  justify-content: center;
}
.cid-tV7uksUM05 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV7uksUM05 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV7uksUM05 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV7uksUM05 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV7uksUM05 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV7uksUM05 .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-tV7uksUM05 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV7uksUM05 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV7uksUM05 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV7uksUM05 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV7uksUM05 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV7uksUM05 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV7uksUM05 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV7uksUM05 .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-tV7uksUM05 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV7uksUM05 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV7uksUM05 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV7uksUM05 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV7uksUM05 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV7uksUM05 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV7uksUM05 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV7uksUM05 .navbar.navbar-short {
  min-height: 90px;
}
.cid-tV7uksUM05 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV7uksUM05 .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tV7uksUM05 .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-tV7uksUM05 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV7uksUM05 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV7uksUM05 .dropdown-item.active,
.cid-tV7uksUM05 .dropdown-item:active {
  background-color: transparent;
}
.cid-tV7uksUM05 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV7uksUM05 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV7uksUM05 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV7uksUM05 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tV7uksUM05 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV7uksUM05 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV7uksUM05 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV7uksUM05 .navbar-buttons {
  text-align: center;
}
.cid-tV7uksUM05 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tV7uksUM05 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tV7uksUM05 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tV7uksUM05 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tV7uksUM05 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tV7uksUM05 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tV7uksUM05 nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tV7uksUM05 nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tV7uksUM05 nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV7uksUM05 nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tV7uksUM05 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV7uksUM05 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV7uksUM05 .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-tV7uksUM05 .navbar {
    height: 70px;
  }
  .cid-tV7uksUM05 .navbar.opened {
    height: auto;
  }
  .cid-tV7uksUM05 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV7uksUM05 .container,
.cid-tV7uksUM05 .container-fluid {
  flex-wrap: wrap;
}
.cid-tV7uksUM05 .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tV7uksUM05 .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tV7uksUM05 .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tV7uksUM05 .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tV7uksUM05 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tV7uksUM05 .navbar-nav {
    width: 100%;
  }
}
.cid-tVAIBKcHOp {
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tVAIBKcHOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVAIBKcHOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVAIBKcHOp .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVAIBKcHOp .row {
    flex-wrap: wrap;
  }
}
.cid-tVAIBKcHOp .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVAIBKcHOp .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tVAIBKcHOp .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tVAIBKcHOp .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #caa9a8;
  transform: translateY(40%);
}
.cid-tVAIBKcHOp .mbr-section-title {
  color: #353535;
}
.cid-tVAIBKcHOp .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tVAIBKcHOp .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tVAIBKcHOp .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tVAIBKcHOp .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAIBKcHOp .mbr-text {
    margin-top: 12px;
  }
}
.cid-tVAIBKcHOp .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAIBKcHOp .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tVAIBKcHOp .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tVAIBKcHOp .col-img {
    width: 350px;
  }
}
.cid-tVAIBKcHOp .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tVAIBKcHOp .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-tVAIBKcHOp .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tVAIBKcHOp .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tVAIBKcHOp .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tVAIBKcHOp .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tVAIBKcHOp .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(35deg);
}
.cid-tVAIBKcHOp .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tVAIBKcHOp .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tV7ukubs9r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
}
.cid-tV7ukubs9r .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV7ukubs9r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV7ukubs9r .mbr-section-title {
  width: 100%;
  color: #895957;
  margin-bottom: 0;
}
.cid-tV7ukubs9r .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tV7ukubs9r .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tV7ukubs9r .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tV7ukubs9r .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tV7ukubs9r .mbr-text {
    margin-top: 16px;
  }
}
.cid-tV7ukubs9r .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tV7ukubs9r .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tVAPatF4Bs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f8f1ea;
}
.cid-tVAPatF4Bs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVAPatF4Bs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVAPatF4Bs .text-wrap {
  width: 100%;
}
.cid-tVAPatF4Bs .mbr-title {
  margin-bottom: 0;
  color: #a97f7d;
}
.cid-tVAPatF4Bs .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tVAPatF4Bs .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tVAPatF4Bs .list-wrap {
    margin-top: 24px;
  }
}
.cid-tVAPatF4Bs .list-box {
  width: 100%;
}
.cid-tVAPatF4Bs .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tVAPatF4Bs .list-text {
  position: relative;
}
.cid-tVAPatF4Bs .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tVAPatF4Bs .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-tWUrjF1aSJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWUrjF1aSJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUrjF1aSJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUrjF1aSJ .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWUrjF1aSJ .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tWUrjF1aSJ .col-text {
    order: 2;
  }
}
.cid-tWUrjF1aSJ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWUrjF1aSJ .text-wrap {
    margin-top: 30px;
  }
}
.cid-tWUrjF1aSJ .mbr-section-title {
  color: #353535;
}
.cid-tWUrjF1aSJ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWUrjF1aSJ .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWUrjF1aSJ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWUrjF1aSJ .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWUrjF1aSJ .col-img {
    order: 1;
  }
}
.cid-tWUrjF1aSJ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWUrjF1aSJ .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-tWUrjF1aSJ .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tWUrjF1aSJ .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tWUrjF1aSJ .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tWUrjF1aSJ .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tWUrjF1aSJ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWUjDnnsLJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWUjDnnsLJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUjDnnsLJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUjDnnsLJ .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tWUjDnnsLJ .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tWUjDnnsLJ .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tWUjDnnsLJ .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tWUjDnnsLJ .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUjDnnsLJ .mbr-text {
    margin-top: 16px;
  }
}
.cid-tWUjDnnsLJ .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUjDnnsLJ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-tV7utHfK7S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tV7utHfK7S nav.navbar {
  position: fixed;
}
.cid-tV7utHfK7S .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-tV7utHfK7S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tV7utHfK7S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tV7utHfK7S .dropdown-item:hover,
.cid-tV7utHfK7S .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tV7utHfK7S .dropdown-item:hover span {
  color: white;
}
.cid-tV7utHfK7S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tV7utHfK7S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tV7utHfK7S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tV7utHfK7S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tV7utHfK7S .nav-link {
  position: relative;
}
.cid-tV7utHfK7S .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tV7utHfK7S .container {
    flex-wrap: nowrap;
  }
}
.cid-tV7utHfK7S .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tV7utHfK7S .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tV7utHfK7S .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tV7utHfK7S .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tV7utHfK7S .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tV7utHfK7S .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tV7utHfK7S .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tV7utHfK7S .dropdown-menu,
.cid-tV7utHfK7S .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tV7utHfK7S .nav-item:focus,
.cid-tV7utHfK7S .nav-link:focus {
  outline: none;
}
.cid-tV7utHfK7S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tV7utHfK7S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tV7utHfK7S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tV7utHfK7S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tV7utHfK7S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tV7utHfK7S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tV7utHfK7S .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tV7utHfK7S .navbar.opened {
  transition: all 0.3s;
}
.cid-tV7utHfK7S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tV7utHfK7S .navbar .navbar-logo img {
  width: auto;
}
.cid-tV7utHfK7S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tV7utHfK7S .navbar.collapsed {
  justify-content: center;
}
.cid-tV7utHfK7S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tV7utHfK7S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tV7utHfK7S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tV7utHfK7S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tV7utHfK7S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tV7utHfK7S .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-tV7utHfK7S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tV7utHfK7S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tV7utHfK7S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tV7utHfK7S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tV7utHfK7S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tV7utHfK7S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tV7utHfK7S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tV7utHfK7S .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-tV7utHfK7S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tV7utHfK7S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tV7utHfK7S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tV7utHfK7S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tV7utHfK7S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tV7utHfK7S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tV7utHfK7S .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tV7utHfK7S .navbar.navbar-short {
  min-height: 90px;
}
.cid-tV7utHfK7S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tV7utHfK7S .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tV7utHfK7S .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-tV7utHfK7S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tV7utHfK7S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tV7utHfK7S .dropdown-item.active,
.cid-tV7utHfK7S .dropdown-item:active {
  background-color: transparent;
}
.cid-tV7utHfK7S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tV7utHfK7S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tV7utHfK7S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tV7utHfK7S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tV7utHfK7S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tV7utHfK7S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tV7utHfK7S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tV7utHfK7S .navbar-buttons {
  text-align: center;
}
.cid-tV7utHfK7S button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tV7utHfK7S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tV7utHfK7S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tV7utHfK7S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tV7utHfK7S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tV7utHfK7S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tV7utHfK7S nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tV7utHfK7S nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tV7utHfK7S nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tV7utHfK7S nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tV7utHfK7S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tV7utHfK7S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tV7utHfK7S .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-tV7utHfK7S .navbar {
    height: 70px;
  }
  .cid-tV7utHfK7S .navbar.opened {
    height: auto;
  }
  .cid-tV7utHfK7S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tV7utHfK7S .container,
.cid-tV7utHfK7S .container-fluid {
  flex-wrap: wrap;
}
.cid-tV7utHfK7S .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tV7utHfK7S .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tV7utHfK7S .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tV7utHfK7S .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tV7utHfK7S .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tV7utHfK7S .navbar-nav {
    width: 100%;
  }
}
.cid-tWbuMMYBTc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWbuMMYBTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWbuMMYBTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWbuMMYBTc .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWbuMMYBTc .row {
    flex-wrap: wrap;
  }
}
.cid-tWbuMMYBTc .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWbuMMYBTc .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWbuMMYBTc .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tWbuMMYBTc .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tWbuMMYBTc .mbr-section-title {
  color: #895957;
  text-align: left;
}
.cid-tWbuMMYBTc .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tWbuMMYBTc .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tWbuMMYBTc .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tWbuMMYBTc .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWbuMMYBTc .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWbuMMYBTc .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWbuMMYBTc .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWbuMMYBTc .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tWbuMMYBTc .col-img {
    width: 350px;
  }
}
.cid-tWbuMMYBTc .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWbuMMYBTc .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-tWbuMMYBTc .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tWbuMMYBTc .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWbuMMYBTc .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tWbuMMYBTc .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tWbuMMYBTc .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tWbuMMYBTc .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tWbuMMYBTc .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tWbuMMYBTc .mbr-text,
.cid-tWbuMMYBTc .mbr-section-btn {
  text-align: left;
}
.cid-tWbuMMYBTc .mbr-section-title DIV {
  text-align: center;
}
#custom-html-46 {
  /* Type valid CSS here */
}
#custom-html-46 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-46 p {
  font-size: 60px;
  color: #777;
}
.cid-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-tWkEdM77ry {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tWkEdM77ry nav.navbar {
  position: fixed;
}
.cid-tWkEdM77ry .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-tWkEdM77ry .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWkEdM77ry .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWkEdM77ry .dropdown-item:hover,
.cid-tWkEdM77ry .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tWkEdM77ry .dropdown-item:hover span {
  color: white;
}
.cid-tWkEdM77ry .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWkEdM77ry .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWkEdM77ry .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWkEdM77ry .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWkEdM77ry .nav-link {
  position: relative;
}
.cid-tWkEdM77ry .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWkEdM77ry .container {
    flex-wrap: nowrap;
  }
}
.cid-tWkEdM77ry .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tWkEdM77ry .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tWkEdM77ry .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tWkEdM77ry .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tWkEdM77ry .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tWkEdM77ry .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tWkEdM77ry .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tWkEdM77ry .dropdown-menu,
.cid-tWkEdM77ry .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tWkEdM77ry .nav-item:focus,
.cid-tWkEdM77ry .nav-link:focus {
  outline: none;
}
.cid-tWkEdM77ry .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWkEdM77ry .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWkEdM77ry .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWkEdM77ry .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWkEdM77ry .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWkEdM77ry .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWkEdM77ry .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tWkEdM77ry .navbar.opened {
  transition: all 0.3s;
}
.cid-tWkEdM77ry .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWkEdM77ry .navbar .navbar-logo img {
  width: auto;
}
.cid-tWkEdM77ry .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWkEdM77ry .navbar.collapsed {
  justify-content: center;
}
.cid-tWkEdM77ry .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWkEdM77ry .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWkEdM77ry .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tWkEdM77ry .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWkEdM77ry .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWkEdM77ry .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-tWkEdM77ry .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWkEdM77ry .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWkEdM77ry .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWkEdM77ry .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWkEdM77ry .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWkEdM77ry .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWkEdM77ry .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWkEdM77ry .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-tWkEdM77ry .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWkEdM77ry .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWkEdM77ry .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWkEdM77ry .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWkEdM77ry .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWkEdM77ry .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWkEdM77ry .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWkEdM77ry .navbar.navbar-short {
  min-height: 90px;
}
.cid-tWkEdM77ry .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWkEdM77ry .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tWkEdM77ry .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-tWkEdM77ry .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWkEdM77ry .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWkEdM77ry .dropdown-item.active,
.cid-tWkEdM77ry .dropdown-item:active {
  background-color: transparent;
}
.cid-tWkEdM77ry .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWkEdM77ry .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWkEdM77ry .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWkEdM77ry .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tWkEdM77ry .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWkEdM77ry .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWkEdM77ry ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWkEdM77ry .navbar-buttons {
  text-align: center;
}
.cid-tWkEdM77ry button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tWkEdM77ry button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tWkEdM77ry button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tWkEdM77ry button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tWkEdM77ry button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tWkEdM77ry button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tWkEdM77ry nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tWkEdM77ry nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tWkEdM77ry nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWkEdM77ry nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tWkEdM77ry .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWkEdM77ry a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWkEdM77ry .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-tWkEdM77ry .navbar {
    height: 70px;
  }
  .cid-tWkEdM77ry .navbar.opened {
    height: auto;
  }
  .cid-tWkEdM77ry .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWkEdM77ry .container,
.cid-tWkEdM77ry .container-fluid {
  flex-wrap: wrap;
}
.cid-tWkEdM77ry .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tWkEdM77ry .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tWkEdM77ry .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tWkEdM77ry .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tWkEdM77ry .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tWkEdM77ry .navbar-nav {
    width: 100%;
  }
}
.cid-tWkEdMHrzP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWkEdMHrzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWkEdMHrzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWkEdMHrzP .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWkEdMHrzP .row {
    flex-wrap: wrap;
  }
}
.cid-tWkEdMHrzP .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWkEdMHrzP .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWkEdMHrzP .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tWkEdMHrzP .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tWkEdMHrzP .mbr-section-title {
  color: #895957;
  text-align: left;
}
.cid-tWkEdMHrzP .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tWkEdMHrzP .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tWkEdMHrzP .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tWkEdMHrzP .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWkEdMHrzP .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWkEdMHrzP .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWkEdMHrzP .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWkEdMHrzP .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tWkEdMHrzP .col-img {
    width: 350px;
  }
}
.cid-tWkEdMHrzP .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWkEdMHrzP .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-tWkEdMHrzP .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tWkEdMHrzP .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWkEdMHrzP .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tWkEdMHrzP .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tWkEdMHrzP .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tWkEdMHrzP .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tWkEdMHrzP .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tWkEdMHrzP .mbr-text,
.cid-tWkEdMHrzP .mbr-section-btn {
  text-align: left;
}
.cid-tWkEdMHrzP .mbr-section-title DIV {
  text-align: center;
}
.cid-tX67eRcmNc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tX67eRcmNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX67eRcmNc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX67eRcmNc .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tX67eRcmNc .row {
    flex-wrap: wrap;
  }
}
.cid-tX67eRcmNc .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tX67eRcmNc .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-tX67eRcmNc .text-wrap:before {
    border-radius: 0 40px 40px 0;
    border-radius: 40px 0 0 40px;
  }
}
@media (max-width: 991px) {
  .cid-tX67eRcmNc .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tX67eRcmNc .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tX67eRcmNc .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tX67eRcmNc .mbr-section-title {
  color: #895957;
}
.cid-tX67eRcmNc .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tX67eRcmNc .mbr-text {
    margin-top: 12px;
  }
}
.cid-tX67eRcmNc .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tX67eRcmNc .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tX67eRcmNc .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tX67eRcmNc .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tX67eRcmNc .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tX67eRcmNc .col-img {
    margin-bottom: -50px;
  }
}
.cid-tX67eRcmNc .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tX67eRcmNc .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-tX67eRcmNc .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
    border-radius: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tX67eRcmNc .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
    border-radius: 30px 0 30px 30px;
  }
}
.cid-tX67eRcmNc .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWUjITfqpb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWUjITfqpb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWUjITfqpb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWUjITfqpb .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tWUjITfqpb .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tWUjITfqpb .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tWUjITfqpb .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tWUjITfqpb .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUjITfqpb .mbr-text {
    margin-top: 16px;
  }
}
.cid-tWUjITfqpb .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWUjITfqpb .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWTrop9YaI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/img-3588-jpg-2000x1500.jpg");
  overflow: hidden;
}
.cid-tWTrop9YaI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTrop9YaI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTrop9YaI .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWTrop9YaI .row {
    flex-wrap: wrap;
  }
}
.cid-tWTrop9YaI .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWTrop9YaI .text-wrap {
    margin-bottom: 50px;
  }
}
.cid-tWTrop9YaI .mbr-section-title {
  color: #353535;
  margin-bottom: 30px;
}
.cid-tWTrop9YaI .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWTrop9YaI .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-tWTrop9YaI .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tWTrop9YaI .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tWTrop9YaI .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tWTrop9YaI .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tWTrop9YaI .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWTrop9YaI .form-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.cid-tWTrop9YaI form {
  width: 100%;
}
.cid-tWTrop9YaI form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tWTrop9YaI form p {
  color: #353535;
}
.cid-tWTrop9YaI form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tWTrop9YaI form .mbr-section-btn .btn:before {
  transform: rotate(0);
  border-radius: 60px;
  background: transparent;
}
.cid-tWTrop9YaI form .mbr-section-btn .btn:hover {
  transform: translate(0, 0);
}
.cid-tWTrop9YaI form .form-group {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
.cid-tWTrop9YaI form .form-control {
  height: 60px;
  border: none !important;
  border-bottom: 1px solid #f8f1ea !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-tWTrop9YaI form .form-control::-webkit-input-placeholder {
  color: #6C6C6C;
}
.cid-tWTrop9YaI form .form-control::-moz-placeholder {
  color: #6C6C6C;
}
.cid-tWTrop9YaI form .form-control:-moz-placeholder {
  color: #6C6C6C;
}
.cid-tWTrop9YaI form .form-control:-ms-input-placeholder {
  color: #6C6C6C;
}
.cid-tWTrop9YaI form select {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form textarea {
  height: 150px !important;
  min-height: 150px !important;
  padding: 20px;
  resize: none;
}
.cid-tWTrop9YaI form textarea::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form textarea::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form textarea:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form textarea:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form input,
.cid-tWTrop9YaI form textarea {
  transition: .4s all;
}
.cid-tWTrop9YaI form input:active,
.cid-tWTrop9YaI form textarea:active,
.cid-tWTrop9YaI form input:focus,
.cid-tWTrop9YaI form textarea:focus {
  background-color: transparent !important;
  border-color: #f8f1ea !important;
  outline: none !important;
}
.cid-tWTrop9YaI form input:active::-webkit-input-placeholder,
.cid-tWTrop9YaI form textarea:active::-webkit-input-placeholder,
.cid-tWTrop9YaI form input:focus::-webkit-input-placeholder,
.cid-tWTrop9YaI form textarea:focus::-webkit-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form input:active::-moz-placeholder,
.cid-tWTrop9YaI form textarea:active::-moz-placeholder,
.cid-tWTrop9YaI form input:focus::-moz-placeholder,
.cid-tWTrop9YaI form textarea:focus::-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form input:active:-moz-placeholder,
.cid-tWTrop9YaI form textarea:active:-moz-placeholder,
.cid-tWTrop9YaI form input:focus:-moz-placeholder,
.cid-tWTrop9YaI form textarea:focus:-moz-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form input:active:-ms-input-placeholder,
.cid-tWTrop9YaI form textarea:active:-ms-input-placeholder,
.cid-tWTrop9YaI form input:focus:-ms-input-placeholder,
.cid-tWTrop9YaI form textarea:focus:-ms-input-placeholder {
  color: #6C6C6C !important;
}
.cid-tWTrop9YaI form .row {
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.cid-tWTrop9YaI form .row [class*=col] {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.cid-tWTrop9YaI form label {
  width: 100%;
  color: #353535;
  margin-bottom: 5px;
}
.cid-tWTrop9YaI form .form-check label {
  color: #353535;
}
.cid-tWTrop9YaI form .form-check-input {
  border-color: #f8f1ea !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.cid-tWTrop9YaI form .form-check-input:focus,
.cid-tWTrop9YaI form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #f8f1ea !important;
}
.cid-tWTrop9YaI form .form-check-input:checked {
  border-color: #f8f1ea !important;
  background-color: #FFFCF5 !important;
}
.cid-tWkEdQTWjC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWkEdQTWjC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWkEdQTWjC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWkEdQTWjC .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWkEdQTWjC .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWkEdQTWjC .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWkEdQTWjC .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWkEdQTWjC .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWkEdQTWjC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWkEdQTWjC .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWkEdQTWjC .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWkEdQTWjC .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWkEdQTWjC .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWkEdQTWjC .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWkEdQTWjC .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWkEdQTWjC .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWkEdQTWjC .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWkEdQTWjC .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWkEdQTWjC .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWkEdQTWjC .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWkEdQTWjC .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWkEdQTWjC .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWkEdQTWjC .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWkEdQTWjC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWkEdQTWjC .soc-item {
    padding: 5px;
  }
}
.cid-tWkEdQTWjC .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWkEdQTWjC .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWkEdQTWjC .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWkEdQTWjC .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWkEdQTWjC .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWkEdQTWjC .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWkEdQTWjC .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWkEdQTWjC .copyright {
    text-align: center !important;
  }
}
.cid-tWThH0kgds {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tWThH0kgds nav.navbar {
  position: fixed;
}
.cid-tWThH0kgds .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-tWThH0kgds .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWThH0kgds .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWThH0kgds .dropdown-item:hover,
.cid-tWThH0kgds .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tWThH0kgds .dropdown-item:hover span {
  color: white;
}
.cid-tWThH0kgds .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWThH0kgds .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWThH0kgds .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWThH0kgds .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWThH0kgds .nav-link {
  position: relative;
}
.cid-tWThH0kgds .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tWThH0kgds .container {
    flex-wrap: nowrap;
  }
}
.cid-tWThH0kgds .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tWThH0kgds .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tWThH0kgds .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tWThH0kgds .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tWThH0kgds .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tWThH0kgds .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tWThH0kgds .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tWThH0kgds .dropdown-menu,
.cid-tWThH0kgds .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tWThH0kgds .nav-item:focus,
.cid-tWThH0kgds .nav-link:focus {
  outline: none;
}
.cid-tWThH0kgds .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWThH0kgds .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWThH0kgds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWThH0kgds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWThH0kgds .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWThH0kgds .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWThH0kgds .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tWThH0kgds .navbar.opened {
  transition: all 0.3s;
}
.cid-tWThH0kgds .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWThH0kgds .navbar .navbar-logo img {
  width: auto;
}
.cid-tWThH0kgds .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWThH0kgds .navbar.collapsed {
  justify-content: center;
}
.cid-tWThH0kgds .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWThH0kgds .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWThH0kgds .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tWThH0kgds .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWThH0kgds .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWThH0kgds .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-tWThH0kgds .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWThH0kgds .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWThH0kgds .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWThH0kgds .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWThH0kgds .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWThH0kgds .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWThH0kgds .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWThH0kgds .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-tWThH0kgds .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWThH0kgds .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWThH0kgds .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWThH0kgds .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWThH0kgds .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWThH0kgds .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWThH0kgds .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWThH0kgds .navbar.navbar-short {
  min-height: 90px;
}
.cid-tWThH0kgds .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWThH0kgds .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tWThH0kgds .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-tWThH0kgds .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWThH0kgds .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWThH0kgds .dropdown-item.active,
.cid-tWThH0kgds .dropdown-item:active {
  background-color: transparent;
}
.cid-tWThH0kgds .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWThH0kgds .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWThH0kgds .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWThH0kgds .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tWThH0kgds .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWThH0kgds .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWThH0kgds ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWThH0kgds .navbar-buttons {
  text-align: center;
}
.cid-tWThH0kgds button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tWThH0kgds button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tWThH0kgds button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tWThH0kgds button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tWThH0kgds button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tWThH0kgds button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tWThH0kgds nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tWThH0kgds nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tWThH0kgds nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWThH0kgds nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tWThH0kgds .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWThH0kgds a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWThH0kgds .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-tWThH0kgds .navbar {
    height: 70px;
  }
  .cid-tWThH0kgds .navbar.opened {
    height: auto;
  }
  .cid-tWThH0kgds .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWThH0kgds .container,
.cid-tWThH0kgds .container-fluid {
  flex-wrap: wrap;
}
.cid-tWThH0kgds .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tWThH0kgds .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tWThH0kgds .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tWThH0kgds .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tWThH0kgds .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tWThH0kgds .navbar-nav {
    width: 100%;
  }
}
.cid-tWThH0LSqt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
  overflow: hidden;
}
.cid-tWThH0LSqt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH0LSqt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH0LSqt .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWThH0LSqt .row {
    flex-wrap: wrap;
  }
}
.cid-tWThH0LSqt .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWThH0LSqt .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWThH0LSqt .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tWThH0LSqt .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-tWThH0LSqt .mbr-section-title {
  color: #895957;
  text-align: left;
}
.cid-tWThH0LSqt .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-tWThH0LSqt .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tWThH0LSqt .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tWThH0LSqt .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH0LSqt .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWThH0LSqt .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH0LSqt .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWThH0LSqt .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-tWThH0LSqt .col-img {
    width: 350px;
  }
}
.cid-tWThH0LSqt .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWThH0LSqt .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-tWThH0LSqt .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-tWThH0LSqt .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWThH0LSqt .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-tWThH0LSqt .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tWThH0LSqt .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-tWThH0LSqt .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-tWThH0LSqt .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-tWThH0LSqt .mbr-text,
.cid-tWThH0LSqt .mbr-section-btn {
  text-align: left;
}
.cid-tWTislXhzT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWTislXhzT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWTislXhzT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWTislXhzT .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWTislXhzT .row {
    align-items: center !important;
  }
}
.cid-tWTislXhzT .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tWTislXhzT .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tWTislXhzT .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tWTislXhzT .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tWTislXhzT .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tWTislXhzT .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-tWTislXhzT .text-wrap {
    padding: 30px 0;
  }
}
.cid-tWTislXhzT .mbr-title {
  color: #895957;
}
.cid-tWTislXhzT .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tWTislXhzT .list-box {
  width: 100%;
}
.cid-tWTislXhzT .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tWTislXhzT .list-text {
  position: relative;
}
.cid-tWTislXhzT .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tWTislXhzT .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-tWTislXhzT .mbr-section-btn {
  margin-top: 20px;
}
.cid-tWTislXhzT .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 0 0 100px;
  overflow: hidden;
  border-radius: 0 0 100px 0;
}
@media (max-width: 991px) {
  .cid-tWTislXhzT .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tWTislXhzT .img-box {
    border-radius: 0 0 0 15vw;
    border-radius: 0 0 15vw 0;
  }
}
.cid-tWTislXhzT .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWThH17TCZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWThH17TCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH17TCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH17TCZ .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWThH17TCZ .row {
    flex-wrap: wrap;
  }
}
.cid-tWThH17TCZ .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-tWThH17TCZ .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f6efe8;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-tWThH17TCZ .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-tWThH17TCZ .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-tWThH17TCZ .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-tWThH17TCZ .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-tWThH17TCZ .mbr-section-title {
  color: #353535;
}
.cid-tWThH17TCZ .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH17TCZ .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWThH17TCZ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH17TCZ .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWThH17TCZ .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-tWThH17TCZ .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-tWThH17TCZ .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-tWThH17TCZ .col-img {
    margin-bottom: -50px;
  }
}
.cid-tWThH17TCZ .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWThH17TCZ .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tWThH17TCZ .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-tWThH17TCZ .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-tWThH17TCZ .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWThH1pTjt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f6efe8;
}
.cid-tWThH1pTjt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH1pTjt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH1pTjt .text-wrap {
  width: 100%;
}
.cid-tWThH1pTjt .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tWThH1pTjt .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tWThH1pTjt .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tWThH1pTjt .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tWThH1pTjt .item-row {
  row-gap: 50px;
}
.cid-tWThH1pTjt .item-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-tWThH1pTjt .img-box {
  display: flex;
  align-items: center;
  max-width: 105px;
  width: 100%;
  height: 85px;
  margin: 0 auto 20px;
}
.cid-tWThH1pTjt .img-box img {
  width: 100%;
  height: auto;
}
.cid-tWThH1pTjt .item-title {
  width: 100%;
  margin: 0;
  color: #8f7964;
}
.cid-tWThH1pTjt .item-text {
  color: #353535;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .cid-tWThH1pTjt .item-text {
    margin: 16px 0 0;
  }
}
.cid-tWThH1pTjt .mbr-section-btn {
  margin-top: 20px;
}
.cid-tWThH1pTjt .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
.cid-tWThH1P1Mn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f6efe8;
}
.cid-tWThH1P1Mn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH1P1Mn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tWThH1P1Mn .row {
    align-items: center !important;
  }
}
.cid-tWThH1P1Mn .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-tWThH1P1Mn .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tWThH1P1Mn .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tWThH1P1Mn .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tWThH1P1Mn .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tWThH1P1Mn .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-tWThH1P1Mn .text-wrap {
    padding: 30px 0;
  }
}
.cid-tWThH1P1Mn .mbr-title {
  color: #8f7964;
}
.cid-tWThH1P1Mn .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-tWThH1P1Mn .list-box {
  width: 100%;
}
.cid-tWThH1P1Mn .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tWThH1P1Mn .list-text {
  position: relative;
}
.cid-tWThH1P1Mn .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tWThH1P1Mn .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker-1.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-tWThH1P1Mn .mbr-section-btn {
  margin-top: 20px;
}
.cid-tWThH1P1Mn .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tWThH1P1Mn .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-tWThH1P1Mn .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-tWThH1P1Mn .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWThH29BpA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
}
.cid-tWThH29BpA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH29BpA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH29BpA .mbr-section-title {
  width: 100%;
  color: #61411e;
  margin-bottom: 0;
}
.cid-tWThH29BpA .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-tWThH29BpA .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-tWThH29BpA .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-tWThH29BpA .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWThH29BpA .mbr-text {
    margin-top: 16px;
  }
}
.cid-tWThH29BpA .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWThH29BpA .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWThH2tbeo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWThH2tbeo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH2tbeo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH2tbeo .mbr-section-head {
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .cid-tWThH2tbeo .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-tWThH2tbeo .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-tWThH2tbeo .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-tWThH2tbeo .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-tWThH2tbeo .items-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWThH2tbeo .items-row {
    row-gap: 50px;
  }
}
.cid-tWThH2tbeo .card-title {
  position: relative;
  max-width: 360px;
  width: 100%;
  color: #8f7964;
}
@media (max-width: 575px) {
  .cid-tWThH2tbeo .card-title {
    max-width: 100%;
  }
}
.cid-tWThH2tbeo .card-text {
  position: relative;
  max-width: 360px;
  width: 100%;
  margin-top: 16px;
  color: #353535;
}
@media (max-width: 575px) {
  .cid-tWThH2tbeo .card-text {
    max-width: 100%;
    margin-top: 12px;
  }
}
.cid-tWThH2tbeo .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-tWThH2tbeo .item-wrap {
    padding: 20px !important;
  }
}
.cid-tWThH2tbeo .item {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.cid-tWThH2tbeo .item:nth-child(1) .item-wrap {
  margin-right: auto;
  background-image: url("../../../assets/images/frame5.png");
}
.cid-tWThH2tbeo .item:nth-child(2) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-tWThH2tbeo .item:nth-child(2) {
    margin: 0;
  }
}
.cid-tWThH2tbeo .item:nth-child(2) .item-wrap {
  margin-left: auto;
  background-image: url("../../../assets/images/frame6.png");
}
.cid-tWThH2tbeo .item:nth-child(3) {
  margin-top: -12px;
}
@media (max-width: 991px) {
  .cid-tWThH2tbeo .item:nth-child(3) {
    margin: 0;
  }
}
.cid-tWThH2tbeo .item:nth-child(3) .item-wrap {
  max-width: 600px;
  margin-right: auto;
  background-image: url("../../../assets/images/frame7.png");
}
.cid-tWThH2tbeo .item:nth-child(4) .item-wrap {
  max-width: 508px;
  margin-left: auto;
  padding: 50px 40px 60px;
  background-image: url("../../../assets/images/frame8.png");
}
.cid-tWThH36Z8P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWThH36Z8P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH36Z8P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH36Z8P .text-wrap {
  width: 100%;
}
.cid-tWThH36Z8P .mbr-title {
  margin-bottom: 0;
  color: #353535;
  text-align: center;
}
.cid-tWThH36Z8P .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tWThH36Z8P .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH36Z8P .list-wrap {
    margin-top: 24px;
  }
}
.cid-tWThH36Z8P .list-box {
  width: 100%;
}
.cid-tWThH36Z8P .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tWThH36Z8P .list-text {
  position: relative;
}
.cid-tWThH36Z8P .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tWThH36Z8P .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-tWThH3yuDP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-tWThH3yuDP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH3yuDP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH3yuDP .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tWThH3yuDP .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-tWThH3yuDP .col-text {
    order: 2;
  }
}
.cid-tWThH3yuDP .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tWThH3yuDP .text-wrap {
    margin-top: 30px;
  }
}
.cid-tWThH3yuDP .mbr-section-title {
  color: #353535;
}
.cid-tWThH3yuDP .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH3yuDP .mbr-text {
    margin-top: 12px;
  }
}
.cid-tWThH3yuDP .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tWThH3yuDP .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-tWThH3yuDP .col-img {
    order: 1;
  }
}
.cid-tWThH3yuDP .img-wrap {
  position: relative;
  width: 100%;
}
.cid-tWThH3yuDP .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-tWThH3yuDP .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-tWThH3yuDP .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-tWThH3yuDP .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-tWThH3yuDP .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-tWThH3yuDP .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-tWThH3Tfw1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tWThH3Tfw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH3Tfw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH3Tfw1 .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-tWThH3Tfw1 .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-tWThH3Tfw1 .mbr-section-title.display-4 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .cid-tWThH3Tfw1 .mbr-section-title.display-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .cid-tWThH3Tfw1 .mbr-section-title.display-4 {
    font-size: 28px;
  }
}
.cid-tWThH3Tfw1 .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWThH3Tfw1 .mbr-text {
    margin-top: 16px;
  }
}
.cid-tWThH3Tfw1 .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tWThH3Tfw1 .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-tWThH4g8S6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWThH4g8S6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWThH4g8S6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWThH4g8S6 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWThH4g8S6 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWThH4g8S6 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWThH4g8S6 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWThH4g8S6 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWThH4g8S6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWThH4g8S6 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWThH4g8S6 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWThH4g8S6 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWThH4g8S6 .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWThH4g8S6 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWThH4g8S6 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWThH4g8S6 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWThH4g8S6 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWThH4g8S6 .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWThH4g8S6 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWThH4g8S6 .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWThH4g8S6 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWThH4g8S6 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWThH4g8S6 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWThH4g8S6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWThH4g8S6 .soc-item {
    padding: 5px;
  }
}
.cid-tWThH4g8S6 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWThH4g8S6 .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWThH4g8S6 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWThH4g8S6 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWThH4g8S6 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWThH4g8S6 .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWThH4g8S6 .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWThH4g8S6 .copyright {
    text-align: center !important;
  }
}
.cid-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-tYOqTQAdDg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tYOqTQAdDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYOqTQAdDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYOqTQAdDg .text-wrap {
  width: 100%;
}
.cid-tYOqTQAdDg .mbr-title {
  margin-bottom: 0;
  color: #895957;
  text-align: center;
}
.cid-tYOqTQAdDg .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tYOqTQAdDg .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tYOqTQAdDg .list-wrap {
    margin-top: 24px;
  }
}
.cid-tYOqTQAdDg .list-box {
  width: 100%;
}
.cid-tYOqTQAdDg .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tYOqTQAdDg .list-text {
  position: relative;
}
.cid-tYOqTQAdDg .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tYOqTQAdDg .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-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-tqnGSSQQAK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-tqnGSSQQAK nav.navbar {
  position: fixed;
}
.cid-tqnGSSQQAK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tqnGSSQQAK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqnGSSQQAK .dropdown-item:hover,
.cid-tqnGSSQQAK .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-tqnGSSQQAK .dropdown-item:hover span {
  color: white;
}
.cid-tqnGSSQQAK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqnGSSQQAK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqnGSSQQAK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqnGSSQQAK .nav-link {
  position: relative;
}
.cid-tqnGSSQQAK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .container {
    flex-wrap: nowrap;
  }
}
.cid-tqnGSSQQAK .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-tqnGSSQQAK .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-tqnGSSQQAK .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-item {
  margin: 2px;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-tqnGSSQQAK .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-tqnGSSQQAK .dropdown-menu,
.cid-tqnGSSQQAK .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-tqnGSSQQAK .nav-item:focus,
.cid-tqnGSSQQAK .nav-link:focus {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqnGSSQQAK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqnGSSQQAK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqnGSSQQAK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqnGSSQQAK .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tqnGSSQQAK .navbar.opened {
  transition: all 0.3s;
}
.cid-tqnGSSQQAK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqnGSSQQAK .navbar .navbar-logo img {
  width: auto;
}
.cid-tqnGSSQQAK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqnGSSQQAK .navbar.collapsed {
  justify-content: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqnGSSQQAK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqnGSSQQAK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tqnGSSQQAK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqnGSSQQAK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqnGSSQQAK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqnGSSQQAK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tqnGSSQQAK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tqnGSSQQAK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqnGSSQQAK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tqnGSSQQAK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqnGSSQQAK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tqnGSSQQAK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tqnGSSQQAK .navbar.navbar-short {
  min-height: 90px;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqnGSSQQAK .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-tqnGSSQQAK .navbar-brand {
  min-height: 89px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqnGSSQQAK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqnGSSQQAK .dropdown-item.active,
.cid-tqnGSSQQAK .dropdown-item:active {
  background-color: transparent;
}
.cid-tqnGSSQQAK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqnGSSQQAK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-tqnGSSQQAK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqnGSSQQAK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqnGSSQQAK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-buttons {
  text-align: center;
}
.cid-tqnGSSQQAK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-tqnGSSQQAK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqnGSSQQAK nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-tqnGSSQQAK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tqnGSSQQAK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqnGSSQQAK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqnGSSQQAK .navbar {
    height: 70px;
  }
  .cid-tqnGSSQQAK .navbar.opened {
    height: auto;
  }
  .cid-tqnGSSQQAK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqnGSSQQAK .container,
.cid-tqnGSSQQAK .container-fluid {
  flex-wrap: wrap;
}
.cid-tqnGSSQQAK .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-tqnGSSQQAK .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-tqnGSSQQAK .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tqnGSSQQAK .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-tqnGSSQQAK .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-tqnGSSQQAK .navbar-nav {
    width: 100%;
  }
}
.cid-tYOruvH4qi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
}
.cid-tYOruvH4qi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYOruvH4qi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYOruvH4qi .text-wrap {
  width: 100%;
}
.cid-tYOruvH4qi .mbr-title {
  margin-bottom: 0;
  color: #895957;
  text-align: center;
}
.cid-tYOruvH4qi .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-tYOruvH4qi .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tYOruvH4qi .list-wrap {
    margin-top: 24px;
  }
}
.cid-tYOruvH4qi .list-box {
  width: 100%;
}
.cid-tYOruvH4qi .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-tYOruvH4qi .list-text {
  position: relative;
}
.cid-tYOruvH4qi .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-tYOruvH4qi .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-tWa402au4N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-tWa402au4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWa402au4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWa402au4N .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-tWa402au4N .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tWa402au4N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tWa402au4N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tWa402au4N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tWa402au4N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-tWa402au4N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-tWa402au4N .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-tWa402au4N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tWa402au4N .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-tWa402au4N .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-tWa402au4N .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-tWa402au4N .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-tWa402au4N .soc-item {
    padding: 5px;
  }
}
.cid-tWa402au4N .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-tWa402au4N .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-tWa402au4N .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-tWa402au4N .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-tWa402au4N .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-tWa402au4N .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-tWa402au4N .copyright {
    text-align: center !important;
  }
}
.cid-uGA3xZdL7y {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 90px;
}
.cid-uGA3xZdL7y nav.navbar {
  position: fixed;
}
.cid-uGA3xZdL7y .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-uGA3xZdL7y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGA3xZdL7y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGA3xZdL7y .dropdown-item:hover,
.cid-uGA3xZdL7y .dropdown-item:focus {
  background: #f8f1ea !important;
  color: white !important;
}
.cid-uGA3xZdL7y .dropdown-item:hover span {
  color: white;
}
.cid-uGA3xZdL7y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGA3xZdL7y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGA3xZdL7y .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGA3xZdL7y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGA3xZdL7y .nav-link {
  position: relative;
}
.cid-uGA3xZdL7y .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uGA3xZdL7y .container {
    flex-wrap: nowrap;
  }
}
.cid-uGA3xZdL7y .iconfont-wrapper {
  color: #353535 !important;
  font-size: 18px;
  padding-right: 0;
}
.cid-uGA3xZdL7y .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-uGA3xZdL7y .iconfont-wrapper .mbr-iconfont:hover {
  color: #f8f1ea;
}
.cid-uGA3xZdL7y .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 66.66666667%;
  margin-right: auto;
  min-height: 89px;
}
.cid-uGA3xZdL7y .navbar-nav .nav-item {
  margin: 2px;
}
.cid-uGA3xZdL7y .navbar-nav .nav-link {
  padding: 5px 9px;
  transition: .4s all;
}
.cid-uGA3xZdL7y .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.cid-uGA3xZdL7y .dropdown-menu,
.cid-uGA3xZdL7y .navbar.opened {
  background: #d9cfc5 !important;
}
.cid-uGA3xZdL7y .nav-item:focus,
.cid-uGA3xZdL7y .nav-link:focus {
  outline: none;
}
.cid-uGA3xZdL7y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGA3xZdL7y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGA3xZdL7y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGA3xZdL7y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGA3xZdL7y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGA3xZdL7y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGA3xZdL7y .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d9cfc5;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-uGA3xZdL7y .navbar.opened {
  transition: all 0.3s;
}
.cid-uGA3xZdL7y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGA3xZdL7y .navbar .navbar-logo img {
  width: auto;
}
.cid-uGA3xZdL7y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGA3xZdL7y .navbar.collapsed {
  justify-content: center;
}
.cid-uGA3xZdL7y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGA3xZdL7y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGA3xZdL7y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uGA3xZdL7y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGA3xZdL7y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGA3xZdL7y .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-uGA3xZdL7y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGA3xZdL7y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGA3xZdL7y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGA3xZdL7y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGA3xZdL7y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGA3xZdL7y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGA3xZdL7y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGA3xZdL7y .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-uGA3xZdL7y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGA3xZdL7y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGA3xZdL7y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGA3xZdL7y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGA3xZdL7y .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGA3xZdL7y .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGA3xZdL7y .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGA3xZdL7y .navbar.navbar-short {
  min-height: 90px;
}
.cid-uGA3xZdL7y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGA3xZdL7y .navbar.navbar-short .navbar-brand {
  min-height: 89px;
  padding: 0;
}
.cid-uGA3xZdL7y .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-uGA3xZdL7y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGA3xZdL7y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGA3xZdL7y .dropdown-item.active,
.cid-uGA3xZdL7y .dropdown-item:active {
  background-color: transparent;
}
.cid-uGA3xZdL7y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGA3xZdL7y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGA3xZdL7y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGA3xZdL7y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d9cfc5;
}
.cid-uGA3xZdL7y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGA3xZdL7y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGA3xZdL7y ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGA3xZdL7y .navbar-buttons {
  text-align: center;
}
.cid-uGA3xZdL7y button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  background-color: #f6efe8;
  border-radius: 50%;
}
.cid-uGA3xZdL7y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 13px;
  width: 22px;
  height: 2px;
  background-color: #895957;
}
.cid-uGA3xZdL7y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 17px;
  transition: all 0.2s;
}
.cid-uGA3xZdL7y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uGA3xZdL7y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 24px;
  transform: translateY(-1px);
  transition: all 0.15s;
}
.cid-uGA3xZdL7y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 29px;
  transition: all 0.2s;
}
.cid-uGA3xZdL7y nav.opened .hamburger span:nth-child(1) {
  top: 17px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uGA3xZdL7y nav.opened .hamburger span:nth-child(2) {
  transform: translateY(-1px) rotate(45deg);
  transition: all 0.25s;
}
.cid-uGA3xZdL7y nav.opened .hamburger span:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGA3xZdL7y nav.opened .hamburger span:nth-child(4) {
  top: 29px;
  width: 0;
  opacity: 0;
  right: 13px;
  transition: all 0.2s;
}
.cid-uGA3xZdL7y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGA3xZdL7y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGA3xZdL7y .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-uGA3xZdL7y .navbar {
    height: 70px;
  }
  .cid-uGA3xZdL7y .navbar.opened {
    height: auto;
  }
  .cid-uGA3xZdL7y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGA3xZdL7y .container,
.cid-uGA3xZdL7y .container-fluid {
  flex-wrap: wrap;
}
.cid-uGA3xZdL7y .navbar-collapse {
  width: 75%;
  min-height: 89px;
}
.cid-uGA3xZdL7y .border-item {
  width: 100%;
  height: 1px;
  background-color: #caa9a8;
}
.cid-uGA3xZdL7y .mbr-section-btn .btn {
  width: 180px;
  min-width: auto;
  min-height: 55px;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uGA3xZdL7y .navbar-brand {
    width: calc(100% - 48px) !important;
    min-height: 89px;
  }
  .cid-uGA3xZdL7y .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 1rem;
    order: 5;
  }
  .cid-uGA3xZdL7y .navbar-nav {
    width: 100%;
  }
}
.cid-uGA3xZAEzM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
  overflow: hidden;
}
.cid-uGA3xZAEzM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3xZAEzM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3xZAEzM .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uGA3xZAEzM .row {
    flex-wrap: wrap;
  }
}
.cid-uGA3xZAEzM .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uGA3xZAEzM .text-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uGA3xZAEzM .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uGA3xZAEzM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #f8f1ea;
  transform: translateY(40%);
}
.cid-uGA3xZAEzM .mbr-section-title {
  color: #895957;
  text-align: left;
}
.cid-uGA3xZAEzM .mbr-section-title a {
  pointer-events: none !important;
  font-style: italic !important;
  font-weight: bold !important;
}
.cid-uGA3xZAEzM .mbr-section-subtitle {
  margin-top: 30px;
  color: #353535;
}
@media (max-width: 767px) {
  .cid-uGA3xZAEzM .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-uGA3xZAEzM .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3xZAEzM .mbr-text {
    margin-top: 12px;
  }
}
.cid-uGA3xZAEzM .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3xZAEzM .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uGA3xZAEzM .col-img {
  width: 430px;
}
@media (max-width: 1199px) {
  .cid-uGA3xZAEzM .col-img {
    width: 350px;
  }
}
.cid-uGA3xZAEzM .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uGA3xZAEzM .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-uGA3xZAEzM .img-wrap .img-box {
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
    border-bottom-right-radius: 55px;
  }
}
.cid-uGA3xZAEzM .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uGA3xZAEzM .img-wrap .frame-box {
  position: absolute;
  height: 240px;
}
.cid-uGA3xZAEzM .img-wrap .frame-box svg {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-uGA3xZAEzM .img-wrap .frame-box-1 {
  bottom: -20%;
  left: -14%;
  width: 85%;
  transform: rotate(10deg);
}
.cid-uGA3xZAEzM .img-wrap .frame-box-2 {
  bottom: -18%;
  right: -14%;
  width: 84%;
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .cid-uGA3xZAEzM .img-wrap .frame-box-2 {
    bottom: auto;
    top: -15%;
  }
}
.cid-uGA3xZAEzM .mbr-text,
.cid-uGA3xZAEzM .mbr-section-btn {
  text-align: left;
}
.cid-uGA3xZAEzM .mbr-section-title DIV {
  text-align: center;
}
.cid-uGA3y0aiJr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uGA3y0aiJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3y0aiJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3y0aiJr .row {
  flex-wrap: nowrap;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uGA3y0aiJr .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-uGA3y0aiJr .col-text {
    order: 2;
  }
}
.cid-uGA3y0aiJr .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uGA3y0aiJr .text-wrap {
    margin-top: 30px;
  }
}
.cid-uGA3y0aiJr .mbr-section-title {
  color: #353535;
}
.cid-uGA3y0aiJr .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3y0aiJr .mbr-text {
    margin-top: 12px;
  }
}
.cid-uGA3y0aiJr .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3y0aiJr .mbr-section-btn {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uGA3y0aiJr .col-img {
    order: 1;
  }
}
.cid-uGA3y0aiJr .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uGA3y0aiJr .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-uGA3y0aiJr .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px 55px 0 55px;
  }
}
@media (max-width: 991px) {
  .cid-uGA3y0aiJr .img-wrap .img-box {
    border-radius: 65px 65px 65px 0;
    border-radius: 65px 65px 0 65px;
  }
}
@media (max-width: 767px) {
  .cid-uGA3y0aiJr .img-wrap .img-box {
    border-radius: 55px 55px 55px 0;
    border-radius: 55px  55px 0 55px;
  }
}
@media (max-width: 575px) {
  .cid-uGA3y0aiJr .img-wrap .img-box {
    border-radius: 45px 45px 45px 0;
    border-radius: 45px 45px 0 45px;
  }
}
.cid-uGA3y0aiJr .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uGA3y0NMhz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uGA3y0NMhz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3y0NMhz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGA3y0NMhz .row {
    align-items: center !important;
  }
}
.cid-uGA3y0NMhz .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 991px) {
  .cid-uGA3y0NMhz .mbr-section-head {
    margin-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .cid-uGA3y0NMhz .mbr-section-head {
    margin-bottom: 65px;
  }
}
.cid-uGA3y0NMhz .mbr-section-title {
  color: #353535;
  margin-bottom: 0;
}
.cid-uGA3y0NMhz .mbr-section-subtitle {
  color: #353535;
  margin-top: 20px;
}
.cid-uGA3y0NMhz .text-wrap {
  width: 100%;
  padding: 36px 0;
  border-top: 1px solid #829d85;
}
@media (max-width: 991px) {
  .cid-uGA3y0NMhz .text-wrap {
    padding: 30px 0;
  }
}
.cid-uGA3y0NMhz .mbr-title {
  color: #895957;
}
.cid-uGA3y0NMhz .mbr-text {
  margin-top: 12px;
  color: #353535;
}
.cid-uGA3y0NMhz .list-box {
  width: 100%;
}
.cid-uGA3y0NMhz .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uGA3y0NMhz .list-text {
  position: relative;
}
.cid-uGA3y0NMhz .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uGA3y0NMhz .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-uGA3y0NMhz .mbr-section-btn {
  margin-top: 20px;
}
.cid-uGA3y0NMhz .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uGA3y0NMhz .img-box {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .cid-uGA3y0NMhz .img-box {
    border-radius: 0 15vw 0 0;
  }
}
.cid-uGA3y0NMhz .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uGA3y18WEM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/marlene-gade53-2000x1125.jpg");
}
.cid-uGA3y18WEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3y18WEM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3y18WEM .mbr-section-title {
  width: 100%;
  color: #895957;
  margin-bottom: 0;
}
.cid-uGA3y18WEM .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uGA3y18WEM .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uGA3y18WEM .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uGA3y18WEM .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uGA3y18WEM .mbr-text {
    margin-top: 16px;
  }
}
.cid-uGA3y18WEM .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uGA3y18WEM .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uGAduOmcko {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fffcf5;
}
.cid-uGAduOmcko .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGAduOmcko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGAduOmcko .text-wrap {
  width: 100%;
}
.cid-uGAduOmcko .mbr-title {
  margin-bottom: 0;
  color: #353535;
  text-align: center;
}
.cid-uGAduOmcko .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uGAduOmcko .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGAduOmcko .list-wrap {
    margin-top: 24px;
  }
}
.cid-uGAduOmcko .list-box {
  width: 100%;
}
.cid-uGAduOmcko .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uGAduOmcko .list-text {
  position: relative;
}
.cid-uGAduOmcko .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uGAduOmcko .list-text:before {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 14px;
  left: -30px;
  top: 7px;
  background-image: url("../../../assets/images/marker-1.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-uGA3xZUvTE {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #fffcf5;
  overflow: hidden;
}
.cid-uGA3xZUvTE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3xZUvTE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3xZUvTE .row {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uGA3xZUvTE .row {
    flex-wrap: wrap;
  }
}
.cid-uGA3xZUvTE .text-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 80px 0;
}
.cid-uGA3xZUvTE .text-wrap:before {
  content: "";
  position: absolute;
  right: -100px;
  top: 0;
  height: 100%;
  width: 100vw;
  border-radius: 0 65px 65px 0;
  background-color: #f8f1ea;
  z-index: -1;
}
@media (max-width: 1199px) {
  .cid-uGA3xZUvTE .text-wrap:before {
    border-radius: 0 40px 40px 0;
  }
}
@media (max-width: 991px) {
  .cid-uGA3xZUvTE .text-wrap:before {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0;
  }
}
@media (max-width: 991px) {
  .cid-uGA3xZUvTE .text-wrap {
    padding: 50px 0 90px;
  }
}
@media (max-width: 767px) {
  .cid-uGA3xZUvTE .text-wrap {
    margin-bottom: 20px;
  }
}
.cid-uGA3xZUvTE .mbr-section-title {
  color: #353535;
}
.cid-uGA3xZUvTE .mbr-text {
  color: #353535;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3xZUvTE .mbr-text {
    margin-top: 12px;
  }
}
.cid-uGA3xZUvTE .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3xZUvTE .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uGA3xZUvTE .col-img {
  width: 390px;
}
@media (max-width: 1199px) {
  .cid-uGA3xZUvTE .col-img {
    width: 330px;
  }
}
@media (max-width: 991px) {
  .cid-uGA3xZUvTE .col-img {
    width: 250px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-uGA3xZUvTE .col-img {
    margin-bottom: -50px;
  }
}
.cid-uGA3xZUvTE .img-wrap {
  position: relative;
  width: 100%;
}
.cid-uGA3xZUvTE .img-wrap .img-box {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 0 65px 65px 65px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-uGA3xZUvTE .img-wrap .img-box {
    border-radius: 0 40px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uGA3xZUvTE .img-wrap .img-box {
    transform: translateY(-50px);
    border-radius: 0 30px 30px 30px;
  }
}
.cid-uGA3xZUvTE .img-wrap .img-box img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.cid-uGA3y2qr9C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcf5;
}
.cid-uGA3y2qr9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3y2qr9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3y2qr9C .text-wrap {
  width: 100%;
}
.cid-uGA3y2qr9C .mbr-title {
  margin-bottom: 0;
  color: #353535;
  text-align: center;
}
.cid-uGA3y2qr9C .mbr-text {
  padding-top: 16px;
  color: #353535;
}
.cid-uGA3y2qr9C .list-wrap {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uGA3y2qr9C .list-wrap {
    margin-top: 24px;
  }
}
.cid-uGA3y2qr9C .list-box {
  width: 100%;
}
.cid-uGA3y2qr9C .list {
  list-style: none;
  margin-top: 22px;
  margin-bottom: auto;
  padding-left: 30px;
  color: #353535;
}
.cid-uGA3y2qr9C .list-text {
  position: relative;
}
.cid-uGA3y2qr9C .list-text:not(:first-child) {
  margin-top: 12px;
}
.cid-uGA3y2qr9C .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-uGA3y2MtIf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f1ea;
}
.cid-uGA3y2MtIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3y2MtIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3y2MtIf .mbr-section-title {
  width: 100%;
  color: #353535;
  margin-bottom: 0;
}
.cid-uGA3y2MtIf .mbr-section-title.display-4 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .cid-uGA3y2MtIf .mbr-section-title.display-4 {
    font-size: 32px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .cid-uGA3y2MtIf .mbr-section-title.display-4 {
    font-size: 26px;
  }
}
.cid-uGA3y2MtIf .mbr-text {
  width: 100%;
  color: #353535;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uGA3y2MtIf .mbr-text {
    margin-top: 16px;
  }
}
.cid-uGA3y2MtIf .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uGA3y2MtIf .mbr-section-btn {
    margin-top: 16px;
  }
}
.cid-uGA3y3tvy2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d9cfc5;
}
.cid-uGA3y3tvy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGA3y3tvy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGA3y3tvy2 .main-container {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.4fr;
  grid-column-gap: 4vw;
  grid-auto-rows: auto;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uGA3y3tvy2 .main-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uGA3y3tvy2 .navbar-brand {
  grid-column-start: 1;
  grid-column-end: 2;
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uGA3y3tvy2 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uGA3y3tvy2 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uGA3y3tvy2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uGA3y3tvy2 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uGA3y3tvy2 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uGA3y3tvy2 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
@media (max-width: 991px) {
  .cid-uGA3y3tvy2 .navbar-brand {
    min-height: auto;
    justify-content: center;
    margin-bottom: 2rem;
  }
}
.cid-uGA3y3tvy2 .list-box {
  grid-column-start: 2;
  grid-column-end: 3;
}
@media (max-width: 991px) {
  .cid-uGA3y3tvy2 .list-box {
    grid-column-start: 1;
    grid-column-end: 2;
    margin-bottom: 2rem;
  }
}
.cid-uGA3y3tvy2 .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: .75rem;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #FFFCF5;
  transition: 0.4s all;
}
.cid-uGA3y3tvy2 .list li {
  color: inherit !important;
  margin: 0;
  transition: 0.4s all;
}
.cid-uGA3y3tvy2 .list li:hover {
  color: inherit ;
  transform: scale(0.9);
}
.cid-uGA3y3tvy2 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uGA3y3tvy2 .list a:hover {
  line-height: inherit !important;
}
@media (max-width: 767px) {
  .cid-uGA3y3tvy2 .list {
    column-gap: 1.5rem;
    row-gap: .75rem;
  }
}
.cid-uGA3y3tvy2 .social-list {
  grid-column-start: 3;
  grid-column-end: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .8rem;
}
@media (max-width: 991px) {
  .cid-uGA3y3tvy2 .social-list {
    grid-column-start: 1;
    grid-column-end: 2;
    justify-content: center;
  }
}
.cid-uGA3y3tvy2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uGA3y3tvy2 .soc-item {
    padding: 5px;
  }
}
.cid-uGA3y3tvy2 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #fffcf5;
}
.cid-uGA3y3tvy2 .soc-item:hover .mbr-iconfont {
  color: #caa9a8 !important;
}
.cid-uGA3y3tvy2 .copyright-container {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (min-width: 992px) {
  .cid-uGA3y3tvy2 .copyright-container {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}
@media (max-width: 991px) {
  .cid-uGA3y3tvy2 .copyright-container {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.cid-uGA3y3tvy2 .border-item {
  width: 100%;
  height: 1px;
  background-color: #fffcf5;
  margin-top: 2rem;
}
.cid-uGA3y3tvy2 .copyright {
  color: #FFFCF5;
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uGA3y3tvy2 .copyright {
    text-align: center !important;
  }
}
