body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Noto Serif', serif;
  font-size: 3.25rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.2rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Merriweather', serif;
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.6rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f1eeea !important;
}
.bg-success {
  background-color: #7f1933 !important;
}
.bg-info {
  background-color: #f1eeea !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #4f4943 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f1eeea !important;
  border-color: #f1eeea !important;
  color: #847158 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #847158 !important;
  background-color: #d2c9bc !important;
  border-color: #d2c9bc !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #847158 !important;
  background-color: #d2c9bc !important;
  border-color: #d2c9bc !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4f4943 !important;
  border-color: #4f4943 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #262320 !important;
  border-color: #262320 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #262320 !important;
  border-color: #262320 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f1eeea !important;
  border-color: #f1eeea !important;
  color: #847158 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #847158 !important;
  background-color: #d2c9bc !important;
  border-color: #d2c9bc !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #847158 !important;
  background-color: #d2c9bc !important;
  border-color: #d2c9bc !important;
}
.btn-success,
.btn-success:active {
  background-color: #7f1933 !important;
  border-color: #7f1933 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #3f0c19 !important;
  border-color: #3f0c19 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3f0c19 !important;
  border-color: #3f0c19 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #4f4943 !important;
  border-color: #4f4943 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #262320 !important;
  border-color: #262320 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #262320 !important;
  border-color: #262320 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #c8bcad;
  color: #c8bcad;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f1eeea;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before,
.btn-primary-outline.active:before {
  transform: scaleX(1);
}
.btn-primary-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1eeea;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #847158 !important;
  background-color: #f1eeea !important;
  border-color: #f1eeea !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #181614;
  color: #181614;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #4f4943;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before,
.btn-secondary-outline.active:before {
  transform: scaleX(1);
}
.btn-secondary-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4f4943;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4f4943 !important;
  border-color: #4f4943 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #c8bcad;
  color: #c8bcad;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f1eeea;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before,
.btn-info-outline.active:before {
  transform: scaleX(1);
}
.btn-info-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1eeea;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #847158 !important;
  background-color: #f1eeea !important;
  border-color: #f1eeea !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #2a0811;
  color: #2a0811;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #7f1933;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before,
.btn-success-outline.active:before {
  transform: scaleX(1);
}
.btn-success-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #7f1933;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7f1933 !important;
  border-color: #7f1933 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #879a9f;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before,
.btn-warning-outline.active:before {
  transform: scaleX(1);
}
.btn-warning-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #879a9f;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #181614;
  color: #181614;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #4f4943;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before,
.btn-danger-outline.active:before {
  transform: scaleX(1);
}
.btn-danger-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #4f4943;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #4f4943 !important;
  border-color: #4f4943 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: white !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before,
.btn-black-outline.active:before {
  transform: scaleX(1);
}
.btn-black-outline:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  transition: all 0.3s;
  transform-origin: center;
  transform: scaleX(0);
  z-index: -1;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f1eeea !important;
}
.text-secondary {
  color: #4f4943 !important;
}
.text-success {
  color: #7f1933 !important;
}
.text-info {
  color: #f1eeea !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #4f4943 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #c8bcad !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #181614 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2a0811 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c8bcad !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #181614 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f1eeea;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #4f4943;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f1eeea;
  border-color: #f1eeea;
  color: #937e62;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f1eeea;
}
.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: #d93e66;
}
.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: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #c1bcb6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #f1eeea;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f1eeea;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f1eeea;
  border-bottom-color: #f1eeea;
}
.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: #f1eeea !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: #4f4943 !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%;
}
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='%23f1eeea' %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;
}
.cid-toBjrpUQKS .navbar {
  padding: 0.5rem 0;
  background: #f1eeea;
  transition: none;
  min-height: 100px;
}
.cid-toBjrpUQKS .navbar-dropdown.bg-color.transparent.opened {
  background: #f1eeea;
}
.cid-toBjrpUQKS a {
  font-style: normal;
}
.cid-toBjrpUQKS a .link:hover {
  color: inherit !important;
}
.cid-toBjrpUQKS .dropdown-item:active {
  background: #f1eeea;
}
.cid-toBjrpUQKS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-toBjrpUQKS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0 !important;
  margin: 0.5rem 1.4rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-toBjrpUQKS .nav-item:focus,
.cid-toBjrpUQKS .nav-link:focus {
  outline: none;
}
.cid-toBjrpUQKS .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-toBjrpUQKS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-toBjrpUQKS .menu-logo {
  margin-right: auto;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-toBjrpUQKS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-toBjrpUQKS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-toBjrpUQKS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-toBjrpUQKS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-toBjrpUQKS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-toBjrpUQKS .dropdown .dropdown-menu {
  background: #f1eeea;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-toBjrpUQKS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-toBjrpUQKS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toBjrpUQKS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-toBjrpUQKS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toBjrpUQKS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-toBjrpUQKS .navbar.navbar-short {
  min-height: 60px;
  transition: all 0.2s;
}
.cid-toBjrpUQKS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-toBjrpUQKS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-toBjrpUQKS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-toBjrpUQKS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-toBjrpUQKS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-toBjrpUQKS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.8rem;
  right: 1rem;
}
.cid-toBjrpUQKS button.navbar-toggler:focus {
  outline: none;
}
.cid-toBjrpUQKS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b69b74;
}
.cid-toBjrpUQKS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-toBjrpUQKS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toBjrpUQKS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-toBjrpUQKS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-toBjrpUQKS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toBjrpUQKS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-toBjrpUQKS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-toBjrpUQKS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-toBjrpUQKS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-toBjrpUQKS .collapsed .btn {
  display: -webkit-flex;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse.collapsing,
.cid-toBjrpUQKS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-toBjrpUQKS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-toBjrpUQKS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-toBjrpUQKS .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-toBjrpUQKS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-toBjrpUQKS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-toBjrpUQKS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-toBjrpUQKS .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-toBjrpUQKS .collapsed button.navbar-toggler {
  display: block;
}
.cid-toBjrpUQKS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-toBjrpUQKS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-toBjrpUQKS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-toBjrpUQKS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-toBjrpUQKS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-toBjrpUQKS .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
@media (max-width: 1023px) {
  .cid-toBjrpUQKS .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-toBjrpUQKS img {
    height: 3.8rem !important;
  }
  .cid-toBjrpUQKS .btn {
    display: -webkit-flex;
  }
  .cid-toBjrpUQKS button.navbar-toggler {
    display: block;
  }
  .cid-toBjrpUQKS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-toBjrpUQKS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-toBjrpUQKS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-toBjrpUQKS .navbar-collapse.collapsing,
  .cid-toBjrpUQKS .navbar-collapse.show {
    display: block !important;
  }
  .cid-toBjrpUQKS .navbar-collapse.collapsing .navbar-nav,
  .cid-toBjrpUQKS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-toBjrpUQKS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-toBjrpUQKS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-toBjrpUQKS .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-toBjrpUQKS .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-toBjrpUQKS .navbar-collapse.collapsing .navbar-buttons,
  .cid-toBjrpUQKS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-toBjrpUQKS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-toBjrpUQKS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-toBjrpUQKS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-toBjrpUQKS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-toBjrpUQKS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-toBjrpUQKS .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-toBjrpUQKS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-toBjrpUQKS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-toBjrpUQKS .nav-link,
.cid-toBjrpUQKS .dropdown-item {
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.cid-toBjrpUQKS .nav-link:hover,
.cid-toBjrpUQKS .dropdown-item:hover {
  color: #343434 !important;
  border-color: #f1eeea;
}
.cid-toStvonkhN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f1eeea;
  overflow: hidden;
}
.cid-toStvonkhN .mbr-section-head {
  width: 100%;
}
.cid-toStvonkhN .border-item {
  width: 100%;
  height: 1px;
  background-color: #656b50;
  opacity: 1;
}
.cid-tN1qpRemgD {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
@media (min-width: 1200px) {
  .cid-tN1qpRemgD .content-wrapper {
    padding-right: 60px;
  }
}
.cid-tN1qpRemgD img {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tN1qpRemgD .content-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-tN1qpRemgD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN1qpRemgD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN1qpRemgD H1 {
  text-align: right;
}
.cid-tN1qpRemgD .mbr-text,
.cid-tN1qpRemgD .mbr-section-btn {
  text-align: right;
}
.cid-tCcrkGdpR3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #4f4943;
}
.cid-tCcrkGdpR3 .carousel {
  height: 800px;
}
.cid-tCcrkGdpR3 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tCcrkGdpR3 .carousel-item,
.cid-tCcrkGdpR3 .carousel-inner {
  height: 100%;
}
.cid-tCcrkGdpR3 .carousel-caption {
  bottom: 40px;
}
.cid-tCcrkGdpR3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tCcrkGdpR3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tCcrkGdpR3 .carousel-control:hover {
  background-color: #656b50;
}
.cid-tCcrkGdpR3 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tCcrkGdpR3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tCcrkGdpR3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tCcrkGdpR3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tCcrkGdpR3 .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s;
  font-weight: 600;
  opacity: 1;
  color: #504943;
  background-color: #656b50;
  background-color: inherit;
}
.cid-tCcrkGdpR3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tCcrkGdpR3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tCcrkGdpR3 .carousel-control.carousel-control-prev {
    margin-left: 1.5rem;
  }
  .cid-tCcrkGdpR3 .carousel-control.carousel-control-next {
    margin-right: 1.5rem;
  }
}
.cid-tCcrkGdpR3 .carousel-control .mobi-mbri-arrow-prev,
.cid-tCcrkGdpR3 .carousel-control .mobi-mbri-arrow-next {
  display: none;
}
.cid-tCcrkGdpR3 .carousel-control:hover {
  background-color: inherit;
}
.cid-tCcrkGdpR3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tCcrkGdpR3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #656b50;
  border: 2px solid #656b50;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-tCcrkGdpR3 .carousel-indicators li.active,
.cid-tCcrkGdpR3 .carousel-indicators li:hover {
  background-color: #656b50;
  border-color: #656b50;
}
.cid-tCcrkGdpR3 .carousel-indicators li::after,
.cid-tCcrkGdpR3 .carousel-indicators li::before {
  content: none;
}
.cid-tCcrkGdpR3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tCcrkGdpR3 .carousel-indicators {
    display: none !important;
  }
}
.cid-tCcrkGdpR3 ul {
  list-style: none;
  margin: 0;
  padding-left: 61px;
}
.cid-tCcrkGdpR3 li {
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-tCcrkGdpR3 ul li::before {
  position: absolute;
  content: "\2192";
  left: -61px;
  top: -15%;
  color: #504943;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .cid-tCcrkGdpR3 ul li::before {
    top: 0;
  }
}
.cid-tCcrkGdpR3 .btn {
  padding: 13px 37px 17px;
  margin-top: 25px;
  border-radius: 30px;
}
.cid-tCcrkGdpR3 .btn:hover,
.cid-tCcrkGdpR3 .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-tCcrkGdpR3 .mbr-section-title {
  margin-bottom: 65px;
}
.cid-tCcrkGdpR3 .list {
  color: #f1eeea;
}
.cid-tCcrkGdpR3 .wrap {
  padding: 5rem 1rem;
}
@media (min-width: 1400px) {
  .cid-tCcrkGdpR3 .wrap {
    padding: 0 3rem;
  }
}
.cid-txzfj4W9q5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee8df;
  overflow: hidden;
}
.cid-txzfj4W9q5 .mbr-section-head {
  width: 100%;
}
.cid-txzfj4W9q5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #656b50;
  opacity: 1;
}
.cid-rArWHD1YFc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #eee8df;
}
.cid-rArWHD1YFc .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-rArWHD1YFc h4 {
  text-align: center;
}
.cid-rArWHD1YFc p {
  text-align: center;
}
.cid-rArWHD1YFc .card-img span {
  font-size: 96px;
  color: #f1eeea;
}
.cid-tChrlPQolh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eee8df;
  overflow: hidden;
}
.cid-tChrlPQolh .mbr-section-head {
  width: 100%;
}
.cid-tChrlPQolh .border-item {
  width: 100%;
  height: 1px;
  background-color: #656b50;
  opacity: 1;
}
.cid-toCPcla0Wp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/quachasee-rev-2000x1383.jpg");
}
.cid-toCPcla0Wp .info-border {
  padding: 0 0 200px;
}
.cid-toCPcla0Wp .info-img {
  margin: 80px 44px 0 0;
  position: relative;
}
.cid-toCPcla0Wp .info-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 80px;
}
.cid-toCPcla0Wp .btn {
  width: 360px;
  height: 76px;
}
@media (max-width: 991px) {
  .cid-toCPcla0Wp .info-img {
    margin-right: 0;
  }
  .cid-toCPcla0Wp .info-wrapper {
    margin-top: 30px;
  }
  .cid-toCPcla0Wp .info-border {
    padding-bottom: 100px;
  }
  .cid-toCPcla0Wp .btn {
    width: 260px;
    height: 66px;
  }
}
@media (max-width: 768px) {
  .cid-toCPcla0Wp .info-img {
    margin-top: 60px;
  }
}
@media (max-width: 425px) {
  .cid-toCPcla0Wp .info-img {
    margin-top: 30px;
  }
  .cid-toCPcla0Wp .info-border {
    padding-bottom: 50px;
  }
  .cid-toCPcla0Wp .info-wrapper {
    margin-top: 20px;
  }
  .cid-toCPcla0Wp .btn {
    width: 200px;
    height: 56px;
  }
}
@media (max-width: 320px) {
  .cid-toCPcla0Wp .info-img {
    margin-top: 0;
  }
  .cid-toCPcla0Wp .btn {
    width: 181px;
    height: 50px;
  }
}
.cid-tCgu3fmWuE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #656b50;
}
.cid-tCgu3fmWuE .line {
  background-color: #656b50;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tCgu3fmWuE .mbr-text {
  color: #f1eeea;
}
.cid-tCsj74JpOw {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #222222;
  overflow: hidden;
}
.cid-tCsj74JpOw .mbr-section-head {
  width: 100%;
}
.cid-tCsj74JpOw .border-item {
  width: 100%;
  height: 1px;
  background-color: #656b50;
  opacity: 1;
}
.cid-toCFfndVqB {
  background-color: #2a2525;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.cid-toCFfndVqB .container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cid-toCFfndVqB .row {
  width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
@media (max-width: 991px) {
  .cid-toCFfndVqB .row {
    margin-top: auto;
  }
}
.cid-toCFfndVqB .img-bg-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 4rem;
  padding-bottom: 7rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-toCFfndVqB .img-bg-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-toCFfndVqB .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at 80% 60%, rgba(24, 24, 23, 0.95) 14%, transparent 71%), url("../../../assets/images/istock-1325769951-2000x1333.jpg");
  background-position: 0 0, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}
.cid-toCFfndVqB .col-text {
  padding-right: 8.33333333% !important;
  padding-left: 8.33333333% !important;
}
@media (max-width: 991px) {
  .cid-toCFfndVqB .col-text {
    padding: 0 !important;
  }
}
.cid-toCFfndVqB .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-toCFfndVqB .mbr-section-title {
  color: #f1eeea;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .cid-toCFfndVqB .mbr-section-title {
    margin-bottom: 1rem;
  }
}
.cid-toCFfndVqB .mbr-text {
  color: #f6f6ef;
  opacity: 0.8;
  margin-bottom: 2.4rem;
}
@media (max-width: 991px) {
  .cid-toCFfndVqB .mbr-text {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  .cid-toCFfndVqB .mbr-text {
    margin-bottom: 1rem;
  }
}
.cid-toCFfndVqB .mbr-text,
.cid-toCFfndVqB .mbr-section-btn {
  color: #f1eeea;
}
.cid-tLdDdP99L8 {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #2a2525;
}
.cid-tLdDdP99L8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLdDdP99L8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLdDdP99L8 .video-wrapper iframe {
  width: 100%;
}
.cid-tLdDdP99L8 .mbr-section-title,
.cid-tLdDdP99L8 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tLdDdP99L8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tLdDdP99L8 .mbr-section-subtitle {
  color: #cebfaf;
  text-align: center;
}
.cid-tCgEGdBR4Z {
  padding-top: 7rem;
  padding-bottom: 7rem;
  overflow: hidden;
  background-color: #2a2525;
}
.cid-tCgEGdBR4Z .two__background:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  max-width: 49%;
  width: 100%;
  height: 100%;
  background-color: #656b50;
  z-index: 0;
}
.cid-tCgEGdBR4Z .slider__content {
  padding-top: 52px;
  text-align: left;
}
.cid-tCgEGdBR4Z .mbr-section-subtitle {
  color: #d3045f;
  margin-bottom: 13px;
  position: relative;
  z-index: 1;
}
.cid-tCgEGdBR4Z .mbr-section-title {
  margin-bottom: 33px;
  color: #cebfaf;
}
.cid-tCgEGdBR4Z .slider__image {
  margin-left: 11.8%;
}
.cid-tCgEGdBR4Z .img-wrap {
  max-width: 100%;
}
.cid-tCgEGdBR4Z .img-wrap img {
  width: 100%;
  object-fit: cover;
}
.cid-tCgEGdBR4Z .carousel-indicators {
  flex-direction: column;
  margin: 0;
  width: fit-content;
  transition: all 0.25s;
  height: 100%;
  left: 44.5%;
}
.cid-tCgEGdBR4Z .carousel-indicators .active {
  background: #9c9485;
  opacity: 1;
  border: none;
}
.cid-tCgEGdBR4Z .carousel-indicators .active:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: inherit;
  opacity: 0.2;
}
.cid-tCgEGdBR4Z .carousel-indicators li {
  width: 12px;
  height: 12px;
  border: none;
  margin-bottom: 30px;
  box-sizing: border-box;
  background-color: #9c9485;
  border-radius: 50%;
  position: relative;
  opacity: 0.2;
}
.cid-tCgEGdBR4Z .carousel-indicators li:last-child {
  margin-bottom: 0px;
}
.cid-tCgEGdBR4Z .carousel-controls a {
  border-radius: 50%;
  border: 2px solid #9c9485;
  background-color: transparent;
}
.cid-tCgEGdBR4Z .carousel-controls a span {
  transition: all 0.3s;
  color: #9c9485;
  font-size: 18px;
}
.cid-tCgEGdBR4Z .carousel-controls a:hover .mobi-mbri-left {
  transform: translateX(-5px);
}
.cid-tCgEGdBR4Z .carousel-controls a:hover .mobi-mbri-right {
  transform: translateX(5px);
}
.cid-tCgEGdBR4Z .carousel-controls .carousel-control-next,
.cid-tCgEGdBR4Z .carousel-controls .carousel-control-prev {
  opacity: 1;
  width: 44px;
  height: 44px;
}
.cid-tCgEGdBR4Z .carousel-controls .carousel-control-next {
  right: 40%;
  bottom: 5px;
  top: auto;
  left: auto;
}
.cid-tCgEGdBR4Z .carousel-controls .carousel-control-prev {
  right: 45%;
  bottom: 5px;
  top: auto;
  left: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCgEGdBR4Z .image-element {
    min-width: 50%;
  }
  .cid-tCgEGdBR4Z .media-container-row {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tCgEGdBR4Z .two__background:before {
    max-width: 90%;
  }
  .cid-tCgEGdBR4Z .carousel-indicators {
    flex-direction: row;
    height: 50px;
    width: 100%;
    left: auto;
    bottom: 0;
    right: auto;
  }
  .cid-tCgEGdBR4Z .carousel-indicators li {
    margin: 0 16px;
  }
  .cid-tCgEGdBR4Z .slider__content {
    padding-top: 0;
    margin-bottom: 72px;
  }
  .cid-tCgEGdBR4Z .mbr-section-subtitle {
    margin-bottom: 6px;
  }
  .cid-tCgEGdBR4Z .mbr-section-subtitle:after {
    content: none;
  }
  .cid-tCgEGdBR4Z .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-tCgEGdBR4Z .slider__image {
    margin-left: 0;
    margin-bottom: 100px;
  }
  .cid-tCgEGdBR4Z .img-wrap {
    width: 100%;
  }
  .cid-tCgEGdBR4Z .carousel-controls {
    display: none;
  }
  .cid-tCgEGdBR4Z .carousel-inner {
    margin-bottom: 0;
  }
}
.cid-tCgEGdBR4Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tCgEGdBR4Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tCgEGdBR4Z .mbr-text {
  color: #f1eeea;
}
.cid-tLdPMruMnQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #2a2525;
}
.cid-tLdPMruMnQ .mbr-section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 0;
}
.cid-tLdPMruMnQ .mbr-section-subtitle {
  color: #cebfaf;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-tLdPMruMnQ .row {
  align-items: center;
  height: 100%;
}
.cid-tLdNJ70Ljd {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #2a2525;
}
.cid-tLdNJ70Ljd .card-heading {
  padding-top: 16px;
  padding-bottom: 8px;
  color: #b69b74;
  text-align: left;
}
.cid-tLdNJ70Ljd .p,
.cid-tLdNJ70Ljd .mbr-text {
  color: #012b3a;
}
.cid-tLdNJ70Ljd .row {
  justify-content: center;
}
.cid-tLdNJ70Ljd a {
  font-weight: 400 !important;
}
.cid-tLdNJ70Ljd a.text-danger:hover {
  color: #E5BE8A !important;
}
.cid-tLdNJ70Ljd .mbr-text {
  text-align: left;
  color: #cebfaf;
}
.cid-tLdNJ70Ljd .p {
  text-align: left;
  color: #f1eeea;
}
.cid-twqshavrAz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f1eeea;
}
.cid-twqshavrAz img {
  width: 100%;
}
.cid-twqshavrAz .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #f1eeea;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-twqshavrAz .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-twqshavrAz .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-twqshavrAz .mbr-text {
  color: #606060;
}
.cid-twqshavrAz .panel-group {
  margin-top: 36px;
}
.cid-twqshavrAz .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-twqshavrAz .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-twqshavrAz .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-twqshavrAz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-twqshavrAz .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #656b50;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-twqshavrAz .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #656b50;
}
.cid-twqshavrAz .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-twqshavrAz .card .card-header a.panel-title h4:hover {
  color: #cebfaf;
}
.cid-twqshavrAz .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-twqshavrAz .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-twqshavrAz .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-twqshavrAz .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-twqshavrAz .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-twqshavrAz .card .card-header a.panel-title.collapsed h4:hover {
  color: #cebfaf;
}
.cid-twqshavrAz .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-twqshavrAz .card .panel-body p {
  font-weight: 400;
}
.cid-twqshavrAz .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-twqshavrAz .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-twqshavrAz * {
    text-align: left;
  }
}
.cid-twqshavrAz .panel-text {
  color: #504943;
}
.cid-twqPIaBhNA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f1eeea;
}
.cid-twqPIaBhNA img {
  width: 100%;
}
.cid-twqPIaBhNA .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #f1eeea;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-twqPIaBhNA .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-twqPIaBhNA .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-twqPIaBhNA .mbr-text {
  color: #606060;
}
.cid-twqPIaBhNA .panel-group {
  margin-top: 36px;
}
.cid-twqPIaBhNA .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-twqPIaBhNA .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-twqPIaBhNA .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-twqPIaBhNA .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-twqPIaBhNA .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #656b50;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-twqPIaBhNA .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #656b50;
}
.cid-twqPIaBhNA .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-twqPIaBhNA .card .card-header a.panel-title h4:hover {
  color: #cebfaf;
}
.cid-twqPIaBhNA .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-twqPIaBhNA .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-twqPIaBhNA .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-twqPIaBhNA .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-twqPIaBhNA .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-twqPIaBhNA .card .card-header a.panel-title.collapsed h4:hover {
  color: #cebfaf;
}
.cid-twqPIaBhNA .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-twqPIaBhNA .card .panel-body p {
  font-weight: 400;
}
.cid-twqPIaBhNA .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-twqPIaBhNA .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-twqPIaBhNA * {
    text-align: left;
  }
}
.cid-twqPIaBhNA .panel-text {
  color: #504943;
}
.cid-twqZbtolfo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f1eeea;
}
.cid-twqZbtolfo img {
  width: 100%;
}
.cid-twqZbtolfo .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #f1eeea;
  background-color: rgba(132, 138, 189, 0.15);
}
.cid-twqZbtolfo .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-twqZbtolfo .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-twqZbtolfo .mbr-text {
  color: #606060;
}
.cid-twqZbtolfo .panel-group {
  margin-top: 36px;
}
.cid-twqZbtolfo .card {
  border-radius: 0px;
  margin-bottom: 25px;
  background-color: #ffffff;
  padding: 18px 20px;
}
.cid-twqZbtolfo .card .card-header {
  border-radius: 0px;
  border: 0px;
  background: transparent;
  padding: 0;
}
.cid-twqZbtolfo .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  transition: all 200ms ease-in-out;
}
.cid-twqZbtolfo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-twqZbtolfo .card .card-header a.panel-title h4 {
  flex-direction: row;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #656b50;
  transition: all 200ms ease-in-out;
  margin-bottom: 0;
}
.cid-twqZbtolfo .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-family: FontAwesome !important;
  color: #656b50;
}
.cid-twqZbtolfo .card .card-header a.panel-title h4 .sign::before {
  content: "\f077";
}
.cid-twqZbtolfo .card .card-header a.panel-title h4:hover {
  color: #cebfaf;
}
.cid-twqZbtolfo .card .card-header a.panel-title h4.display-7 {
  font-size: 19px;
}
.cid-twqZbtolfo .card .card-header a.panel-title h4.display-7 .sign {
  font-size: 0.8rem;
}
.cid-twqZbtolfo .card .card-header a.panel-title.collapsed {
  transition: all 200ms ease-in-out;
}
.cid-twqZbtolfo .card .card-header a.panel-title.collapsed h4 {
  color: #404040;
}
.cid-twqZbtolfo .card .card-header a.panel-title.collapsed h4 .sign:before {
  content: "\f054";
}
.cid-twqZbtolfo .card .card-header a.panel-title.collapsed h4:hover {
  color: #cebfaf;
}
.cid-twqZbtolfo .card .panel-body {
  color: #767676;
  padding-left: 1.8rem;
  margin-bottom: 20px;
  padding-top: 18px;
}
.cid-twqZbtolfo .card .panel-body p {
  font-weight: 400;
}
.cid-twqZbtolfo .mbr-section-btn {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-twqZbtolfo .card {
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .cid-twqZbtolfo * {
    text-align: left;
  }
}
.cid-twqZbtolfo .panel-text {
  color: #504943;
}
.cid-tCmpAFAtjA {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ede7e2;
}
.cid-tCmpAFAtjA .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f1eeea;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tCmpAFAtjA .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tCmpAFAtjA .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-tCmpAFAtjA .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-tCmpAFAtjA .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-tCmpAFAtjA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-txmOcU0XoS {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f1eeea;
  overflow: hidden;
}
.cid-txmOcU0XoS .mbr-section-head {
  width: 100%;
}
.cid-txmOcU0XoS .border-item {
  width: 100%;
  height: 1px;
  background-color: #656b50;
  opacity: 1;
}
.cid-txmKHztOq0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background: #f1eeea;
}
.cid-txmKHztOq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txmKHztOq0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txmKHztOq0 .mbr-section-title {
  color: #82786e;
}
.cid-txmKHztOq0 .mbr-section-subtitle {
  margin-top: 24px;
  color: #5F6AD4;
}
.cid-txmC7NTEeS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/kin-creole-1620x1399.png");
}
.cid-txmC7NTEeS .mbr-fallback-image.disabled {
  display: none;
}
.cid-txmC7NTEeS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txmC7NTEeS .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-txmC7NTEeS .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-txmC7NTEeS .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-txmC7NTEeS .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-txmC7NTEeS .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #f1eeea !important;
}
.cid-txmC7NTEeS .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-txmC7NTEeS .text {
  display: flex;
  align-items: flex-end;
  height: 48rem;
}
@media (max-width: 992px) {
  .cid-txmC7NTEeS .text {
    height: 100%;
  }
}
.cid-txmC7NTEeS .text .text-wrapper {
  z-index: 1;
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-txmC7NTEeS .text .text-wrapper {
    margin: 0 30px;
  }
}
.cid-txmC7NTEeS .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-txmC7NTEeS .text .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-txmC7NTEeS .text .text-wrapper .text-container {
  width: 100%;
}
.cid-txmC7NTEeS .text .text-wrapper .text-container .mbr-text {
  margin-bottom: 30px;
  width: 50%;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-txmC7NTEeS .text .text-wrapper .text-container .mbr-text {
    margin-bottom: 15px;
    width: 100%;
  }
}
.cid-txmC7NTEeS .mbr-section-title {
  color: #FFFFFF;
}
.cid-txmC7NTEeS .mbr-text {
  color: #FFFFFF;
}
.cid-txmC7NTEeS .mbr-section-title,
.cid-txmC7NTEeS .mbr-section-btn,
.cid-txmC7NTEeS .text-container {
  color: #ffffff;
}
.cid-tpa1GzJ2Y7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1eeea;
  overflow: hidden;
}
.cid-tpa1GzJ2Y7 .mbr-section-head {
  width: 100%;
}
.cid-tpa1GzJ2Y7 .border-item {
  width: 100%;
  height: 1px;
  background-color: #656b50;
  opacity: 1;
}
.cid-toSnFFqRSK {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #656b50;
}
.cid-toSnFFqRSK .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-toSnFFqRSK .title {
  max-width: 800px;
  margin: auto;
}
.cid-toSnFFqRSK .text-wrap {
  padding: 0 1rem;
  padding-top: 0.6rem;
}
.cid-toSnFFqRSK .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-toSnFFqRSK .link:before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-toSnFFqRSK .link:hover:before {
  margin-right: -0.4rem;
}
.cid-toSnFFqRSK .card-block:hover img {
  transform: scale(1.1);
}
.cid-toSnFFqRSK .card {
  padding: 0;
}
.cid-toSnFFqRSK .card .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-toSnFFqRSK .card .card-block .photo {
  display: inline-block;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.cid-toSnFFqRSK .card .card-block .photo img {
  width: 100%;
  min-width: 100%;
  height: 320px;
  object-fit: cover;
  min-height: 100%;
  transition: all 0.3s;
}
.cid-toSnFFqRSK H4 {
  color: #b69b74;
}
@media (max-width: 992px) {
  .cid-toSnFFqRSK .md-pb {
    margin-bottom: 2rem !important;
  }
}
.cid-toSnFFqRSK H1 {
  color: #cebfaf;
}
.cid-toSnFFqRSK .mbr-text,
.cid-toSnFFqRSK .link-wrap {
  color: #f1eeea;
}
.cid-toSnFFqRSK .mbr-section-title {
  color: #cebfaf;
}
.cid-toSnFFqRSK .mbr-section-subtitle {
  color: #f1eeea;
}
.cid-tChi3IHvVv {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #656b50;
}
.cid-tChi3IHvVv .row {
  padding: 0 1rem;
  justify-content: center;
}
.cid-tChi3IHvVv .title {
  max-width: 800px;
  margin: auto;
}
.cid-tChi3IHvVv .text-wrap {
  padding: 0 1rem;
  padding-top: 0.6rem;
}
.cid-tChi3IHvVv .link {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  cursor: pointer;
}
.cid-tChi3IHvVv .link:before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  right: 0rem;
  transition: all 0.3s;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: currentColor;
}
.cid-tChi3IHvVv .link:hover:before {
  margin-right: -0.4rem;
}
.cid-tChi3IHvVv .card-block:hover img {
  transform: scale(1.1);
}
.cid-tChi3IHvVv .card {
  padding: 0;
}
.cid-tChi3IHvVv .card .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-tChi3IHvVv .card .card-block .photo {
  display: inline-block;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.cid-tChi3IHvVv .card .card-block .photo img {
  width: 100%;
  min-width: 100%;
  height: 320px;
  object-fit: cover;
  min-height: 100%;
  transition: all 0.3s;
}
.cid-tChi3IHvVv H4 {
  color: #b69b74;
}
@media (max-width: 992px) {
  .cid-tChi3IHvVv .md-pb {
    margin-bottom: 2rem !important;
  }
}
.cid-tChi3IHvVv H1 {
  color: #cebfaf;
}
.cid-tChi3IHvVv .mbr-text,
.cid-tChi3IHvVv .link-wrap {
  color: #f1eeea;
}
.cid-tChi3IHvVv .mbr-section-title {
  color: #cebfaf;
}
.cid-tChi3IHvVv .mbr-section-subtitle {
  color: #f1eeea;
}
.cid-rArWIuB3C5 {
  padding-top: 750px;
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
}
.cid-tF6mzjVSSK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2a2525;
}
.cid-tF6mzjVSSK .media-container-row .mbr-text {
  color: #cebfaf;
}
.cid-rArWJZPMfb {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #2a2525;
}
.cid-rArWJZPMfb .mbr-text {
  color: #ffffff;
}
.cid-rArWJZPMfb .container {
  max-width: 1000px;
}
.cid-rArWJZPMfb h4 {
  text-align: center;
}
.cid-rArWJZPMfb p {
  text-align: center;
}
.cid-rArWJZPMfb .row {
  justify-content: center;
}
.cid-rArWJZPMfb .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-rArWJZPMfb .mbr-iconfont {
  font-size: 1.5rem;
  color: #b69b74;
  display: block;
}
.cid-rArWJZPMfb .card-title,
.cid-rArWJZPMfb .card-img {
  color: #cebfaf;
}
.cid-rArWJZPMfb .icon-wrap {
  padding-bottom: 7.6rem;
}
.cid-rArWJZPMfb .icon-wrap:before {
  content: '';
  position: absolute;
  background: #b69b74;
  bottom: 0rem;
  left: 50%;
  width: 2px;
  height: 90px;
}
.cid-rArWJZPMfb img {
  margin-bottom: 5rem;
}
.cid-tCmEGvb1t9 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #2a2525;
}
.cid-tCmEGvb1t9 .mbr-text {
  text-align: center;
  color: #cebfaf;
}
