body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #93552c !important;
}
.bg-success {
  background-color: #dbd5c9 !important;
}
.bg-info {
  background-color: #d8bfa1 !important;
}
.bg-warning {
  background-color: #cfcfcf !important;
}
.bg-danger {
  background-color: #d9ad64 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #93552c !important;
  border-color: #93552c !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #502e18 !important;
  border-color: #502e18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #502e18 !important;
  border-color: #502e18 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0b0b0b !important;
  border-color: #0b0b0b !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #d8bfa1 !important;
  border-color: #d8bfa1 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #bf9564 !important;
  border-color: #bf9564 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #bf9564 !important;
  border-color: #bf9564 !important;
}
.btn-success,
.btn-success:active {
  background-color: #dbd5c9 !important;
  border-color: #dbd5c9 !important;
  color: #635842 !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: #ffffff !important;
  background-color: #b8ad95 !important;
  border-color: #b8ad95 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #635842 !important;
  background-color: #b8ad95 !important;
  border-color: #b8ad95 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  color: #505050 !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: #ffffff !important;
  background-color: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #505050 !important;
  background-color: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d9ad64 !important;
  border-color: #d9ad64 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #b9842d !important;
  border-color: #b9842d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b9842d !important;
  border-color: #b9842d !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !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: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #93552c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #502e18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #93552c !important;
  border-color: #93552c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0b0b0b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b0b0b !important;
  border-color: #0b0b0b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8bfa1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #bf9564 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #d8bfa1 !important;
  border-color: #d8bfa1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dbd5c9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #b8ad95 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #635842 !important;
  background-color: #dbd5c9 !important;
  border-color: #dbd5c9 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cfcfcf;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a4a4a4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #505050 !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d9ad64;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b9842d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d9ad64 !important;
  border-color: #d9ad64 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #93552c !important;
}
.text-secondary {
  color: #0b0b0b !important;
}
.text-success {
  color: #dbd5c9 !important;
}
.text-info {
  color: #d8bfa1 !important;
}
.text-warning {
  color: #cfcfcf !important;
}
.text-danger {
  color: #d9ad64 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #442815 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #b2a58c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ba8e59 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #9c9c9c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ad7c2a !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !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: #93552c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #d8bfa1;
}
.alert-warning {
  background-color: #cfcfcf;
}
.alert-danger {
  background-color: #d9ad64;
}
.mbr-gallery-filter li.active .btn {
  background-color: #93552c;
  border-color: #93552c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #93552c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d3956c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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*/
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #93552c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #93552c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #93552c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #93552c;
}
.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: #93552c;
  border-bottom-color: #93552c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #93552c !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: #0b0b0b !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='%2393552c' %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: color 0.6s;
}
.cid-tm2xy74tQy {
  min-height: 70px !important;
  position: relative;
  background: #dbd5c9;
  overflow: visible;
}
.cid-tm2xy74tQy .nav-item,
.cid-tm2xy74tQy .nav-link,
.cid-tm2xy74tQy .navbar-caption {
  font-weight: normal;
  line-height: 32px !important;
  vertical-align: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tm2xy74tQy .nav-item:hover,
.cid-tm2xy74tQy .nav-link:hover,
.cid-tm2xy74tQy .navbar-caption:hover {
  color: #d9ad64 !important;
}
.cid-tm2xy74tQy .navbar-caption {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575px), (min-width: 991px) {
  .cid-tm2xy74tQy .navbar-caption {
    line-height: 23px !important;
    max-width: 195px;
  }
}
.cid-tm2xy74tQy .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-tm2xy74tQy .padd_lr_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tm2xy74tQy .container-fluid,
.cid-tm2xy74tQy .container {
  padding-left: 0 !important;
  padding-right: 15px !important;
}
.cid-tm2xy74tQy .navbar-brand {
  padding: 0;
}
.cid-tm2xy74tQy .nav-link {
  position: relative;
  margin: 0 20px !important;
  padding: 0 !important;
}
.cid-tm2xy74tQy .nav-link:hover:before {
  width: 100%;
}
.cid-tm2xy74tQy .nav-link:before {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 1px;
  bottom: 5px;
  z-index: -1;
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
@media (max-width: 991px) {
  .cid-tm2xy74tQy .nav-link {
    margin: 0 !important;
  }
}
.cid-tm2xy74tQy .widget {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tm2xy74tQy .widget p,
.cid-tm2xy74tQy .widget .icons-menu {
  white-space: nowrap;
  margin-right: 40px;
}
.cid-tm2xy74tQy .widget p a,
.cid-tm2xy74tQy .widget .icons-menu a {
  margin-left: 15px;
}
.cid-tm2xy74tQy .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(217, 173, 100, 0.8);
  font-size: 17px;
  color: rgba(217, 173, 100, 0.8);
  border-radius: 50%;
  margin-left: 5px;
  transition: all 0.4s ease-in-out;
}
.cid-tm2xy74tQy .icons__wrap:hover {
  color: #000000;
  background-color: #d9ad64;
  border-color: #d9ad64;
}
.cid-tm2xy74tQy .block__phone {
  color: #a3a9bd;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-tm2xy74tQy .block__phone,
  .cid-tm2xy74tQy .icons-menu {
    display: none;
  }
  .cid-tm2xy74tQy .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-tm2xy74tQy .mbr-section-btn .btn-secondary {
  background-color: #ffffff !important;
  color: #d9ad64 !important;
  border: none !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
}
.cid-tm2xy74tQy .mbr-section-btn .btn-secondary:hover {
  background-color: #d9ad64 !important;
  color: #ffffff !important;
}
.cid-tm2xy74tQy .mbr-section-btn .mbr-iconfont {
  margin-left: 10px;
  margin-bottom: 2px;
}
.cid-tm2xy74tQy .navbar > .container,
.cid-tm2xy74tQy .navbar > .container-fluid {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tm2xy74tQy .btn {
    white-space: nowrap;
  }
  .cid-tm2xy74tQy .dropdown-menu {
    width: auto;
    min-width: 210px;
    top: 20px;
    left: -5px;
    margin: 0;
    margin-top: 30px;
    z-index: 5;
    background-color: #dbd5c9;
    display: block;
    right: auto;
    visibility: hidden;
    border: 1px solid #d9ad64;
    box-shadow: 0 9px 37px -8px #d9d9d9, 0 0 1px #f2f2f2;
    opacity: 0;
    padding: 18px 0 !important;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .cid-tm2xy74tQy .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tm2xy74tQy .nav-item:hover .nav-link + .dropdown-menu {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tm2xy74tQy .dropdown-toggle::after,
  .cid-tm2xy74tQy .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
  .cid-tm2xy74tQy .dropdown-toggle::after {
    content: "";
    border: none !important;
  }
}
.cid-tm2xy74tQy .dropdown-menu .dropdown-item {
  font-weight: normal;
  padding: 0 20px 0 25px;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all 0.3s ease-in-out;
}
.cid-tm2xy74tQy .dropdown-menu .dropdown-item:hover {
  color: #d9ad64 !important;
}
.cid-tm2xy74tQy .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tm2xy74tQy .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tm2xy74tQy .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 0 !important;
}
.cid-tm2xy74tQy .nav-item:focus,
.cid-tm2xy74tQy .nav-link:focus {
  outline: none;
}
.cid-tm2xy74tQy .dropdown-menu .dropdown:hover > .dropdown-item {
  border-top: 1px solid #d9ad64;
  border-bottom: 1px solid #d9ad64;
}
.cid-tm2xy74tQy .dropdown-menu .dropdown > .dropdown-item {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.cid-tm2xy74tQy .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tm2xy74tQy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm2xy74tQy .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tm2xy74tQy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tm2xy74tQy .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tm2xy74tQy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tm2xy74tQy .navbar {
  min-height: 114px;
  transition: all 0.4s ease-in-out;
  background: #dbd5c9;
}
.cid-tm2xy74tQy .navbar.opened {
  transition: all 0.4s ease-in-out;
  background: #dbd5c9 !important;
}
.cid-tm2xy74tQy .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-tm2xy74tQy .navbar .navbar-logo img {
  display: inherit;
  width: auto;
}
.cid-tm2xy74tQy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tm2xy74tQy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tm2xy74tQy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 90px - 1rem);
  }
}
.cid-tm2xy74tQy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tm2xy74tQy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tm2xy74tQy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tm2xy74tQy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tm2xy74tQy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tm2xy74tQy .navbar .dropdown-menu {
    background: #dbd5c9 !important;
  }
  .cid-tm2xy74tQy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tm2xy74tQy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tm2xy74tQy .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tm2xy74tQy .navbar.navbar-short {
  background: #dbd5c9 !important;
  min-height: 70px;
  height: 70px;
}
.cid-tm2xy74tQy .navbar.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-tm2xy74tQy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tm2xy74tQy .navbar.navbar-short .navbar-logo img {
  height: 70px !important;
}
.cid-tm2xy74tQy .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  transition: all 0.4s ease-in-out;
  word-break: break-word;
}
.cid-tm2xy74tQy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tm2xy74tQy .dropdown-item.active,
.cid-tm2xy74tQy .dropdown-item:active {
  background-color: transparent;
}
.cid-tm2xy74tQy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #dbd5c9;
}
.cid-tm2xy74tQy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tm2xy74tQy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tm2xy74tQy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #93552c;
}
.cid-tm2xy74tQy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tm2xy74tQy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tm2xy74tQy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tm2xy74tQy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tm2xy74tQy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tm2xy74tQy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tm2xy74tQy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tm2xy74tQy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tm2xy74tQy .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tm2xy74tQy a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cid-tm2xy74tQy a.nav-link:hover {
  color: #d9ad64 !important;
}
@media (max-width: 991px) {
  .cid-tm2xy74tQy .navbar .navbar-collapse .navbar-nav .nav-item:first-child .nav-link {
    border-top: 0;
  }
  .cid-tm2xy74tQy .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 15px 0 !important;
    border-top: 1px solid #d9ad64;
  }
  .cid-tm2xy74tQy .nav-dropdown .link.dropdown-toggle::after {
    margin-left: auto;
  }
  .cid-tm2xy74tQy .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-left: auto;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
  }
  .cid-tm2xy74tQy .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #dbd5c9;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-tm2xy74tQy .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
  }
  .cid-tm2xy74tQy .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    background: 0 0;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-tm2xy74tQy .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-tm2xy74tQy .dropdown-menu .dropdown:hover > .dropdown-item {
    border: none;
  }
  .cid-tm2xy74tQy .dropdown-menu .dropdown > .dropdown-item {
    border: none;
  }
  .cid-tm2xy74tQy a.nav-link {
    justify-content: flex-start;
  }
  .cid-tm2xy74tQy ul.navbar-nav {
    padding: 0;
    margin: 0;
  }
  .cid-tm2xy74tQy .navbar-brand {
    padding: 0;
  }
  .cid-tm2xy74tQy .block__phone,
  .cid-tm2xy74tQy .icons-menu {
    display: block;
    padding-bottom: 10px;
  }
  .cid-tm2xy74tQy .widget {
    flex-direction: column;
  }
  .cid-tm2xy74tQy .widget p,
  .cid-tm2xy74tQy .widget .icons-menu {
    margin-right: 0;
  }
}
.is-builder .cid-tm2xy74tQy .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tm2xy74tQy .navbar {
    height: 97px;
  }
  .cid-tm2xy74tQy .navbar.opened {
    height: auto;
  }
  .cid-tm2xy74tQy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tm2zoA8PLM {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr.jpeg");
}
.cid-tm2zoA8PLM .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-tm2zoA8PLM .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(2.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tm2zoA8PLM .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tm2zoA8PLM .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
.cid-tm2zoA8PLM .col-12 {
  position: relative;
}
.cid-tm2zoA8PLM .round {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(2.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tm2zoA8PLM .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-tm2zoA8PLM .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-tm2zoA8PLM .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  z-index: 0;
}
.cid-tm2zoA8PLM .mbr-section-title {
  color: #dbd5c9;
  text-align: center;
}
.cid-tm2zoA8PLM .mbr-text,
.cid-tm2zoA8PLM .mbr-section-btn {
  color: #dbd5c9;
  text-align: center;
}
.cid-tm2zoA8PLM .mbr-section-subtitle {
  color: #0b0b0b;
  text-align: center;
}
.cid-tm2M1SWoF4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d8bfa1;
}
.cid-tm2M1SWoF4 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-tm2M1SWoF4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tm2M1SWoF4 .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.cid-tm2M1SWoF4 .card-box {
  margin: auto;
}
.cid-tm2M1SWoF4 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 5rem;
  padding-right: 1.5rem;
  color: #dbd5c9;
}
@media (max-width: 767px) {
  .cid-tm2M1SWoF4 .iconfont-wrapper .mbr-iconfont {
    padding-right: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-tm2M1SWoF4 .mbr-section-title {
  border-top: 1px solid #93552c;
  padding-top: 1rem;
  color: #0b0b0b;
}
.cid-tm2M1SWoF4 .card-text {
  color: #a6a6a6;
}
.cid-tm2M1SWoF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tm2M1SWoF4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm2M1SWoF4 .card-title {
  color: #0b0b0b;
  text-align: center;
}
.cid-tm8ZCaTLrN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tm8ZCaTLrN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tm8ZCaTLrN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm8ZCaTLrN .content-wrapper {
  background: #dbd5c9;
}
@media (max-width: 991px) {
  .cid-tm8ZCaTLrN .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tm8ZCaTLrN .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tm8ZCaTLrN .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tm8ZCaTLrN .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tm8ZCaTLrN .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tm8ZCaTLrN .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tm8ZCaTLrN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tm8ZCaTLrN .mbr-text,
.cid-tm8ZCaTLrN .mbr-section-btn {
  color: #0b0b0b;
}
.cid-tm8ZCaTLrN .card-title {
  color: #93552c;
}
.cid-tm2Ybj11Sq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tm2Ybj11Sq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tm2Ybj11Sq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm2Ybj11Sq .item {
  padding-bottom: 2rem;
}
.cid-tm2Ybj11Sq .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tm2Ybj11Sq .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tm2Ybj11Sq .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tm2Ybj11Sq .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tm2Ybj11Sq .carousel-control,
.cid-tm2Ybj11Sq .close {
  background: #1b1b1b;
}
.cid-tm2Ybj11Sq .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tm2Ybj11Sq .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tm2Ybj11Sq .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tm2Ybj11Sq .carousel-control-next span {
  margin-left: 5px;
}
.cid-tm2Ybj11Sq .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tm2Ybj11Sq .close::before {
  content: '\e91a';
}
.cid-tm2Ybj11Sq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tm2Ybj11Sq .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tm2Ybj11Sq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm2Ybj11Sq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tm2Ybj11Sq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tm2Ybj11Sq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tm2Ybj11Sq .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tm2Ybj11Sq .carousel-indicators li.active,
.cid-tm2Ybj11Sq .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tm2Ybj11Sq .carousel-indicators li::after,
.cid-tm2Ybj11Sq .carousel-indicators li::before {
  content: none;
}
.cid-tm2Ybj11Sq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tm2Ybj11Sq .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tm2Ybj11Sq .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tm2Ybj11Sq .carousel-indicators {
    display: none;
  }
}
.cid-tm2Ybj11Sq .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tm2Ybj11Sq .carousel-inner > .active {
  display: block;
}
.cid-tm2Ybj11Sq .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm2Ybj11Sq .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm2Ybj11Sq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tm2Ybj11Sq .carousel-control,
  .cid-tm2Ybj11Sq .carousel-indicators,
  .cid-tm2Ybj11Sq .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tm2Ybj11Sq .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tm2Ybj11Sq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tm2Ybj11Sq .carousel-indicators .active,
.cid-tm2Ybj11Sq .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tm2Ybj11Sq .carousel-indicators .active {
  background: #fff;
}
.cid-tm2Ybj11Sq .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tm2Ybj11Sq .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tm2Ybj11Sq .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tm2Ybj11Sq .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tm2Ybj11Sq .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tm2Ybj11Sq .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tm2Ybj11Sq .carousel {
  width: 100%;
}
.cid-tm2Ybj11Sq .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tm2Ybj11Sq .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tm2Ybj11Sq .modal.fade .modal-dialog,
.cid-tm2Ybj11Sq .modal.in .modal-dialog {
  transform: none;
}
.cid-tm2Ybj11Sq .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tm2Ybj11Sq H6 {
  text-align: center;
}
.cid-tm2MhEOsRj {
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #fffbf3;
}
.cid-tm2MhEOsRj .title_block {
  margin-bottom: 80px;
}
.cid-tm2MhEOsRj .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #cfcfcf;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tm2MhEOsRj .mbr-section-title {
  color: #93552c;
}
.cid-tm2MhEOsRj .image {
  position: relative;
}
.cid-tm2MhEOsRj .image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tm2MhEOsRj .image {
    left: -32px;
  }
}
.cid-tm2MhEOsRj .card_icon {
  margin-bottom: 30px;
}
.cid-tm2MhEOsRj .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
}
.cid-tm2MhEOsRj .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 32px;
  line-height: 80px;
}
.cid-tm2MhEOsRj .row .item {
  margin: auto;
}
.cid-tm2MhEOsRj .row .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(217, 173, 100, 0.4);
  background-image: linear-gradient(-27deg, #d9ad64 0%, #edd8b6 100%);
}
.cid-tm2MhEOsRj .row .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(219, 213, 201, 0.4);
  background-image: linear-gradient(-27deg, #dbd5c9 0%, #ffffff 100%);
}
.cid-tm2MhEOsRj .row .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(207, 207, 207, 0.4);
  background-image: linear-gradient(-27deg, #cfcfcf 0%, #ffffff 100%);
}
.cid-tm2MhEOsRj .row .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 10px 30px 0px rgba(147, 85, 44, 0.4);
  background-image: linear-gradient(-27deg, #93552c 0%, #cd8758 100%);
}
.cid-tm2MhEOsRj .card-title {
  margin-bottom: 24px;
  line-height: 1;
  color: #0b0b0b;
}
.cid-tm2MhEOsRj .card-text {
  margin-bottom: 0;
  color: #0b0b0b;
  text-align: center;
}
.cid-tm2MhEOsRj .card_wrapper {
  margin-bottom: 45px;
}
@media (min-width: 992px) {
  .cid-tm2MhEOsRj .card_wrapper {
    max-width: 360px;
  }
}
@media (max-width: 991px) {
  .cid-tm2MhEOsRj .image {
    margin-bottom: 35px;
  }
  .cid-tm2MhEOsRj .title_block,
  .cid-tm2MhEOsRj .card_wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  .cid-tm2MhEOsRj .card_icon {
    margin-bottom: 25px;
  }
  .cid-tm2MhEOsRj .card-title {
    margin-bottom: 16px;
  }
}
.cid-tm2MhEOsRj .card-title,
.cid-tm2MhEOsRj .card_icon {
  color: #0b0b0b;
  text-align: center;
}
.cid-tmdxzvDg4v {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tmdxzvDg4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmdxzvDg4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmdxzvDg4v .item {
  padding-bottom: 2rem;
}
.cid-tmdxzvDg4v .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tmdxzvDg4v .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tmdxzvDg4v .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tmdxzvDg4v .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tmdxzvDg4v .carousel-control,
.cid-tmdxzvDg4v .close {
  background: #1b1b1b;
}
.cid-tmdxzvDg4v .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tmdxzvDg4v .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tmdxzvDg4v .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tmdxzvDg4v .carousel-control-next span {
  margin-left: 5px;
}
.cid-tmdxzvDg4v .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tmdxzvDg4v .close::before {
  content: '\e91a';
}
.cid-tmdxzvDg4v .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tmdxzvDg4v .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tmdxzvDg4v .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmdxzvDg4v .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmdxzvDg4v .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tmdxzvDg4v .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tmdxzvDg4v .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tmdxzvDg4v .carousel-indicators li.active,
.cid-tmdxzvDg4v .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tmdxzvDg4v .carousel-indicators li::after,
.cid-tmdxzvDg4v .carousel-indicators li::before {
  content: none;
}
.cid-tmdxzvDg4v .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tmdxzvDg4v .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tmdxzvDg4v .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tmdxzvDg4v .carousel-indicators {
    display: none;
  }
}
.cid-tmdxzvDg4v .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tmdxzvDg4v .carousel-inner > .active {
  display: block;
}
.cid-tmdxzvDg4v .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmdxzvDg4v .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tmdxzvDg4v .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tmdxzvDg4v .carousel-control,
  .cid-tmdxzvDg4v .carousel-indicators,
  .cid-tmdxzvDg4v .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tmdxzvDg4v .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tmdxzvDg4v .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tmdxzvDg4v .carousel-indicators .active,
.cid-tmdxzvDg4v .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tmdxzvDg4v .carousel-indicators .active {
  background: #fff;
}
.cid-tmdxzvDg4v .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tmdxzvDg4v .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tmdxzvDg4v .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tmdxzvDg4v .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tmdxzvDg4v .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tmdxzvDg4v .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tmdxzvDg4v .carousel {
  width: 100%;
}
.cid-tmdxzvDg4v .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tmdxzvDg4v .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tmdxzvDg4v .modal.fade .modal-dialog,
.cid-tmdxzvDg4v .modal.in .modal-dialog {
  transform: none;
}
.cid-tmdxzvDg4v .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tmdxzvDg4v H6 {
  text-align: center;
}
.cid-tmdxzvDg4v H3 {
  color: #93552c;
}
.cid-tmdxzvDg4v H4 {
  color: #0b0b0b;
}
.cid-tmd06OzhEu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmd06OzhEu .main-row {
  flex-direction: row-reverse;
}
.cid-tmd06OzhEu .mbr-section-subtitle {
  color: #93552c;
}
.cid-tmd06OzhEu .mbr-section-title {
  text-align: center;
  color: #93552c;
}
.cid-tmd06OzhEu .mbr-text {
  color: #0b0b0b;
  text-align: center;
}
.cid-tmd06OzhEu .mbr-section-btn {
  margin-top: 40px;
}
.cid-tmd06OzhEu .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tmd06OzhEu .mbr-list {
  color: #0b0b0b;
}
.cid-tmd06OzhEu .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .cid-tmd06OzhEu .mbr-list .list {
    text-align: left;
  }
}
.cid-tmd06OzhEu .mbr-list .list li {
  line-height: 1.8;
  padding-bottom: 14px;
  margin-top: 14px;
  font-weight: 400;
}
.cid-tmd06OzhEu .mbr-list .list li:first-child {
  margin-top: 0;
}
.cid-tmd06OzhEu .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1em;
  transition: all 0.3s;
  margin-right: 11.25px;
  border-radius: 50%;
  padding: 5px;
  background-color: #d9ad64;
}
@media (max-width: 768px) {
  .cid-tmd06OzhEu * {
    text-align: left;
  }
}
.cid-tmd06OzhEu .mbr-list UL {
  text-align: left;
}
.cid-tmd7LrIfys {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tmd7LrIfys .row {
  align-items: center;
}
.cid-tmd7LrIfys .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-tmd7LrIfys .card .square_fill {
  background-color: #dbd5c9;
  transform: translate(-2.5rem, 0rem);
}
.cid-tmd7LrIfys .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-tmd7LrIfys .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-tmd7LrIfys .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-tmd7LrIfys .square_animation .square_null {
  z-index: 1;
  border: 1px solid #93552c;
}
.cid-tmd7LrIfys .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-tmd7LrIfys .main_title {
  margin-bottom: 2.5rem;
}
.cid-tmd7LrIfys .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-tmd7LrIfys .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tmd7LrIfys .card-wrapper {
    padding-right: 4rem;
    padding-left: 5rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tmd7LrIfys .row {
    flex-direction: column-reverse;
  }
  .cid-tmd7LrIfys .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-tmd7LrIfys .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-tmd7LrIfys .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-tmd7LrIfys .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-tmd7LrIfys .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-tmd7LrIfys .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-tmd7LrIfys .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-tmd7LrIfys .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-tmd7LrIfys .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-tmd7LrIfys .card-wrapper {
    padding-top: 1rem;
  }
  .cid-tmd7LrIfys .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-tmd7LrIfys .card:hover .square_fill {
    transform: none;
  }
  .cid-tmd7LrIfys .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-tmd7LrIfys .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-tmd7LrIfys .square_animation {
    margin-bottom: 2rem;
  }
  .cid-tmd7LrIfys .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-tmd7LrIfys .mbr-text,
.cid-tmd7LrIfys .linkBtn {
  text-align: center;
}
.cid-tmd8Z582M7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tmd8Z582M7 .main-row {
  flex-direction: row-reverse;
}
.cid-tmd8Z582M7 .mbr-section-subtitle {
  color: #93552c;
}
.cid-tmd8Z582M7 .mbr-section-title {
  text-align: center;
  color: #93552c;
}
.cid-tmd8Z582M7 .mbr-text {
  color: #0b0b0b;
  text-align: center;
}
.cid-tmd8Z582M7 .mbr-section-btn {
  margin-top: 40px;
}
.cid-tmd8Z582M7 .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-tmd8Z582M7 .mbr-list {
  color: #0b0b0b;
}
.cid-tmd8Z582M7 .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .cid-tmd8Z582M7 .mbr-list .list {
    text-align: left;
  }
}
.cid-tmd8Z582M7 .mbr-list .list li {
  line-height: 1.8;
  padding-bottom: 14px;
  margin-top: 14px;
  font-weight: 400;
}
.cid-tmd8Z582M7 .mbr-list .list li:first-child {
  margin-top: 0;
}
.cid-tmd8Z582M7 .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  font-size: 15px;
  content: "\e97c";
  font-family: 'Moririse2' !important;
  text-align: center;
  line-height: 1em;
  transition: all 0.3s;
  margin-right: 11.25px;
  border-radius: 50%;
  padding: 5px;
  background-color: #d9ad64;
}
@media (max-width: 768px) {
  .cid-tmd8Z582M7 * {
    text-align: left;
  }
}
.cid-tmd8Z582M7 .mbr-list UL {
  text-align: left;
}
.cid-tmd91jjiQD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tmd91jjiQD .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-tmd91jjiQD .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-tmd91jjiQD .card .square_fill {
  background-color: #dbd5c9;
  transform: translate(-2.5rem, 0rem);
}
.cid-tmd91jjiQD .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-tmd91jjiQD .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-tmd91jjiQD .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-tmd91jjiQD .square_animation .square_null {
  z-index: 1;
  border: 1px solid #93552c;
}
.cid-tmd91jjiQD .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-tmd91jjiQD .main_title {
  margin-bottom: 2.5rem;
}
.cid-tmd91jjiQD .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-tmd91jjiQD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tmd91jjiQD .card-wrapper {
    padding-right: 5rem;
    padding-left: 4rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-tmd91jjiQD .row {
    flex-direction: column-reverse;
  }
  .cid-tmd91jjiQD .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-tmd91jjiQD .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-tmd91jjiQD .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-tmd91jjiQD .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-tmd91jjiQD .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-tmd91jjiQD .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-tmd91jjiQD .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-tmd91jjiQD .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-tmd91jjiQD .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-tmd91jjiQD .card-wrapper {
    padding-top: 1rem;
  }
  .cid-tmd91jjiQD .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-tmd91jjiQD .card:hover .square_fill {
    transform: none;
  }
  .cid-tmd91jjiQD .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-tmd91jjiQD .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-tmd91jjiQD .square_animation {
    margin-bottom: 2rem;
  }
  .cid-tmd91jjiQD .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-tmd91jjiQD .mbr-text,
.cid-tmd91jjiQD .linkBtn {
  text-align: center;
}
.cid-tm347cmEG2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tm347cmEG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tm347cmEG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm347cmEG2 .item {
  padding-bottom: 2rem;
}
.cid-tm347cmEG2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tm347cmEG2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tm347cmEG2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tm347cmEG2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tm347cmEG2 .carousel-control,
.cid-tm347cmEG2 .close {
  background: #1b1b1b;
}
.cid-tm347cmEG2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tm347cmEG2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tm347cmEG2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tm347cmEG2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tm347cmEG2 .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;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tm347cmEG2 .close::before {
  content: '\e91a';
}
.cid-tm347cmEG2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tm347cmEG2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tm347cmEG2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm347cmEG2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tm347cmEG2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tm347cmEG2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tm347cmEG2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tm347cmEG2 .carousel-indicators li.active,
.cid-tm347cmEG2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tm347cmEG2 .carousel-indicators li::after,
.cid-tm347cmEG2 .carousel-indicators li::before {
  content: none;
}
.cid-tm347cmEG2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tm347cmEG2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tm347cmEG2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tm347cmEG2 .carousel-indicators {
    display: none;
  }
}
.cid-tm347cmEG2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tm347cmEG2 .carousel-inner > .active {
  display: block;
}
.cid-tm347cmEG2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tm347cmEG2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm347cmEG2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tm347cmEG2 .carousel-control,
  .cid-tm347cmEG2 .carousel-indicators,
  .cid-tm347cmEG2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tm347cmEG2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tm347cmEG2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tm347cmEG2 .carousel-indicators .active,
.cid-tm347cmEG2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tm347cmEG2 .carousel-indicators .active {
  background: #fff;
}
.cid-tm347cmEG2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tm347cmEG2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tm347cmEG2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tm347cmEG2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tm347cmEG2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tm347cmEG2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tm347cmEG2 .carousel {
  width: 100%;
}
.cid-tm347cmEG2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tm347cmEG2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tm347cmEG2 .modal.fade .modal-dialog,
.cid-tm347cmEG2 .modal.in .modal-dialog {
  transform: none;
}
.cid-tm347cmEG2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tm347cmEG2 H6 {
  text-align: center;
}
.cid-tm33mNQfIA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #fffbf3;
}
.cid-tm33mNQfIA .google-map {
  height: 25rem;
  position: relative;
}
.cid-tm33mNQfIA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tm33mNQfIA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tm33mNQfIA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tm33mNQfIA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tm33mNQfIA .wrapper {
  margin-top: -10rem;
  background: #dbd5c9;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tm33mNQfIA .form-container {
  padding: 3rem;
}
.cid-tm33mNQfIA .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tm33mNQfIA .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #93552c, #d8bfa1);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tm33mNQfIA .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-tm33mNQfIA .form-group,
  .cid-tm33mNQfIA .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tm33mNQfIA .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-tm33mNQfIA textarea.form-control {
  min-height: 170px;
}
@media (max-width: 767px) {
  .cid-tm33mNQfIA .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tm33mNQfIA .text-block {
    margin-bottom: 2rem;
  }
  .cid-tm33mNQfIA .wrapper {
    margin-top: 0;
  }
}
.cid-tm33mNQfIA .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tm33mNQfIA .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-tm33mNQfIA .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tm33mNQfIA .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-tm33mNQfIA .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tm33mNQfIA .social-list a:hover {
  opacity: 1;
}
.cid-tm33mNQfIA P {
  color: #0b0b0b;
  text-align: center;
}
.cid-tm33mNQfIA H2 {
  text-align: center;
  color: #93552c;
}
.cid-tm33mNQfIA .mbr-title {
  text-align: center;
}
.cid-tm3142XGMk {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/mbr-1920x821.jpg");
}
.cid-tm3142XGMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tm3142XGMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tm3142XGMk .mbr-section-subtitle {
  color: #d8bfa1;
}
.cid-tm3142XGMk .mbr-section-title {
  color: #d9ad64;
}
.cid-tm32Hgthtr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #93552c;
}
.cid-tm32Hgthtr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tm32Hgthtr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tm32Hgthtr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tm32Hgthtr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tm32Hgthtr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tm32Hgthtr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tm32Hgthtr .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tm32Hgthtr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tm32Hgthtr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tm32Hgthtr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tm32Hgthtr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tm32Hgthtr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tm32Hgthtr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tm32Hgthtr .media-container-row .row-copirayt p {
  width: 100%;
}
