body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 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: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #fc7942 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color: #f5db6e !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #e44604 !important;
  border-color: #e44604 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fc7942;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e44604 !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: #fc7942 !important;
  border-color: #fc7942 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !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: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5db6e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color: #f5db6e !important;
  border-color: #f5db6e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !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: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.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: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #fc7942 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color: #f5db6e !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d54103 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #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: #fc7942;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color: #f5db6e;
}
.alert-danger {
  background-color: #b63b07;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc7942;
  border-color: #fc7942;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fc7942;
}
.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: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #acc6dd;
}
.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: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #fc7942 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #fc7942;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc7942;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc7942;
}
.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: #fc7942;
  border-bottom-color: #fc7942;
}
.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: #fc7942 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #a6d8b5 !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='%23fc7942' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-tBom1Dnp1f {
  z-index: 1000;
  width: 100%;
}
.cid-tBom1Dnp1f nav.navbar {
  position: fixed;
}
.cid-tBom1Dnp1f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tBom1Dnp1f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tBom1Dnp1f .dropdown-item:hover,
.cid-tBom1Dnp1f .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-tBom1Dnp1f .dropdown-item:hover span {
  color: white;
}
.cid-tBom1Dnp1f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tBom1Dnp1f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tBom1Dnp1f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tBom1Dnp1f .nav-link {
  position: relative;
}
.cid-tBom1Dnp1f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .container {
    flex-wrap: nowrap;
  }
}
.cid-tBom1Dnp1f .navbar-nav {
  margin: 0 auto;
}
.cid-tBom1Dnp1f .dropdown-menu,
.cid-tBom1Dnp1f .navbar.opened {
  background: #ffffff !important;
}
.cid-tBom1Dnp1f .nav-item:focus,
.cid-tBom1Dnp1f .nav-link:focus {
  outline: none;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tBom1Dnp1f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tBom1Dnp1f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBom1Dnp1f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBom1Dnp1f .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-tBom1Dnp1f .navbar.opened {
  transition: all 0.3s;
}
.cid-tBom1Dnp1f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tBom1Dnp1f .navbar .navbar-logo img {
  width: auto;
}
.cid-tBom1Dnp1f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tBom1Dnp1f .navbar.collapsed {
  justify-content: center;
}
.cid-tBom1Dnp1f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBom1Dnp1f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tBom1Dnp1f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tBom1Dnp1f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBom1Dnp1f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tBom1Dnp1f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tBom1Dnp1f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tBom1Dnp1f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tBom1Dnp1f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tBom1Dnp1f .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tBom1Dnp1f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tBom1Dnp1f .navbar.navbar-short {
  min-height: 60px;
}
.cid-tBom1Dnp1f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tBom1Dnp1f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tBom1Dnp1f .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBom1Dnp1f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBom1Dnp1f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBom1Dnp1f .dropdown-item.active,
.cid-tBom1Dnp1f .dropdown-item:active {
  background-color: transparent;
}
.cid-tBom1Dnp1f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBom1Dnp1f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tBom1Dnp1f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBom1Dnp1f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBom1Dnp1f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBom1Dnp1f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBom1Dnp1f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tBom1Dnp1f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBom1Dnp1f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBom1Dnp1f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBom1Dnp1f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tBom1Dnp1f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBom1Dnp1f .navbar {
    height: 70px;
  }
  .cid-tBom1Dnp1f .navbar.opened {
    height: auto;
  }
  .cid-tBom1Dnp1f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBom1Dnp1f .container,
.cid-tBom1Dnp1f .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-tBom1Dnp1f .container:before,
  .cid-tBom1Dnp1f .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-tBom1Dnp1f .navbar-short {
  background-color: #ffffff !important;
}
.cid-tBom1Dnp1f .navbar-short .container,
.cid-tBom1Dnp1f .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-tBom1Dnp1f .navbar-short .container:before,
.cid-tBom1Dnp1f .navbar-short .container-fluid:before {
  display: none;
}
.cid-tBom1Dnp1f .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-tBom1Dnp1f .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-tBom1Dnp1f .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-tBom1Dnp1f .container,
  .cid-tBom1Dnp1f .container-fluid {
    min-height: 85px;
  }
  .cid-tBom1Dnp1f .navbar-brand {
    min-height: 85px;
  }
  .cid-tBom1Dnp1f .navbar-short .container,
  .cid-tBom1Dnp1f .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-tBom1Dnp1f .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-tBom1Dnp1f .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-tBom1Dnp1f .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-tBom1Dnp1f .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-tBom1Dnp1f .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-tBom1Dnp1f .mbr-section-btn {
    text-align: left;
  }
  .cid-tBom1Dnp1f .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-tBom1Dnp1f .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-tBomRGn5Ms {
  background-image: url("../../../assets/images/4-orig-1100x619.jpg");
}
.cid-tBomRGn5Ms .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBomRGn5Ms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBomRGn5Ms .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-tBomRGn5Ms .col-title {
    padding-top: 0;
  }
}
.cid-tBomRGn5Ms .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-tBomRGn5Ms .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tBomRGn5Ms .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-tBomRGn5Ms .col-text {
    padding-top: 20px;
  }
}
.cid-tBomRGn5Ms .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-tBomRGn5Ms .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-tBomRGn5Ms .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-tBomRGn5Ms .mbr-text {
  color: #131313;
}
.cid-tBomRGn5Ms .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-tBomRGn5Ms .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-tBomRGn5Ms .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-tBomRGn5Ms .mbr-text,
.cid-tBomRGn5Ms .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFLpsRXZd {
  background-color: #533633 !important;
  border: 18px solid #533633;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-ucFLpsRXZd {
    border: 8px solid #533633;
    margin-top: -8px;
  }
}
.cid-ucFLpsRXZd .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-ucFLpsRXZd section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-ucFLpsRXZd .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ucFLpsRXZd .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFLpsRXZd .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucFLpsRXZd .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ucFLpsRXZd .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucFLpsRXZd .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucFLpsRXZd .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-ucFLpsRXZd .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucFLpsRXZd .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-ucFLpsRXZd .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-ucFLpsRXZd .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #ed2c03;
}
.cid-ucFLpsRXZd .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucFLpsRXZd .image-wrapper {
    height: auto;
  }
}
.cid-ucFLpsRXZd .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-ucFLpsRXZd .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-ucFLpsRXZd .mbr-section-title {
  color: #ed2c03;
}
.cid-ucFLpsRXZd .list {
  color: #000000;
}
.cid-ucFLytNcIx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucFLytNcIx .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFLytNcIx .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFLytNcIx .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFLytNcIx .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFLytNcIx .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFLytNcIx .mbr-text {
  color: #606060;
}
.cid-ucFLytNcIx .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFLytNcIx .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFLytNcIx .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFLytNcIx .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFLytNcIx .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFLytNcIx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFLytNcIx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFLytNcIx .mbr-text,
.cid-ucFLytNcIx .mbr-section-btn {
  color: #000000;
}
.cid-tBon8M64Sx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-tBon8M64Sx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBon8M64Sx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBon8M64Sx .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tBon8M64Sx .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tBon8M64Sx .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tBon8M64Sx .mbr-section-title {
  color: #131313;
}
.cid-tBon8M64Sx .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBon8M64Sx .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tBon8M64Sx .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tBon8M64Sx .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tBon8M64Sx .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tBon8M64Sx .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBon8M64Sx .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tBon8M64Sx .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tBon8M64Sx .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tBon8M64Sx .card-title {
  color: #131313;
}
.cid-tBon8M64Sx .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-tBon8M64Sx .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tBon8M64Sx .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tBon8M64Sx .card-link {
    margin-top: 15px;
  }
}
.cid-tBon8M64Sx .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tBon8M64Sx .card-title,
.cid-tBon8M64Sx .iconfont-wrapper {
  text-align: center;
}
.cid-tBooMizBKs {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #533633;
}
.cid-tBooMizBKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBooMizBKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBooMizBKs .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-tBooMizBKs .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-tBooMizBKs .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tBooMizBKs .item-img {
    width: 100%;
  }
}
.cid-tBooMizBKs .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tBooMizBKs .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tBooMizBKs .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tBooMizBKs .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBooMizBKs .card-title {
  color: #ffffff;
}
.cid-tBooMizBKs .card-text {
  margin-top: 25px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-tBooMizBKs .card-text {
    margin-top: 20px;
  }
}
.cid-tBooMizBKs .mbr-section-btn {
  margin-top: 34px;
}
@media (max-width: 991px) {
  .cid-tBooMizBKs .mbr-section-btn {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .cid-tBooMizBKs .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-tBooMizBKs .card-text,
.cid-tBooMizBKs .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFWTxFKU4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFWTxFKU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFWTxFKU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFWTxFKU4 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFWTxFKU4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucFWTxFKU4 .container {
    padding: 0 24px;
  }
}
.cid-ucFWTxFKU4 .row {
  justify-content: center;
}
.cid-ucFWTxFKU4 .content-wrapper {
  border-radius: 40px;
  background-color: #533633;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucFWTxFKU4 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucFWTxFKU4 .content-wrapper {
    padding: 32px;
  }
}
.cid-ucFWTxFKU4 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucFWTxFKU4 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucFWTxFKU4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFWTxFKU4 .mbr-text {
  color: #ffffff;
}
.cid-tBopawO05S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-tBopawO05S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBopawO05S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBopawO05S .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-tBopawO05S .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-tBopawO05S .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-tBopawO05S .mbr-section-title {
  color: #131313;
}
.cid-tBopawO05S .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBopawO05S .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-tBopawO05S .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tBopawO05S .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-tBopawO05S .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-tBopawO05S .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-tBopawO05S .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBopawO05S .card-title {
  color: #131313;
  text-align: center;
}
.cid-tBopawO05S .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-tBopawO05S .price-box {
    margin-top: 5px;
  }
}
.cid-tBopawO05S .number-text {
  color: #FC7942;
}
.cid-tBopawO05S .stint-text {
  color: #FC7942;
}
.cid-tBopawO05S .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tBopawO05S .card-text {
    margin-top: 10px;
  }
}
.cid-tBopawO05S .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-tBopawO05S .list-box {
    margin-top: 24px;
  }
}
.cid-tBopawO05S .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-tBopawO05S .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-tBopawO05S .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-tBopawO05S .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-tBopawO05S .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-tBopawO05S .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-tBopawO05S .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-tBopawO05S .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tBopawO05S .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucFJ1gYfcz {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ucFJ1gYfcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFJ1gYfcz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFJ1gYfcz .mbr-section-title {
  color: #131313;
}
.cid-ucFJ1gYfcz .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucFJ1gYfcz .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucFJ1gYfcz .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucFJ1gYfcz .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucFJ1gYfcz .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucFJ1gYfcz .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucFJ1gYfcz .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tBopWFuktj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-tBopWFuktj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBopWFuktj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBopWFuktj .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tBopWFuktj .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tBopWFuktj .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tBopWFuktj .mbr-section-title {
  color: #131313;
}
.cid-tBopWFuktj .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tBopWFuktj .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-tBopWFuktj .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-tBopWFuktj .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-tBopWFuktj .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-tBopWFuktj .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tBopWFuktj .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-tBopWFuktj .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-tBopWFuktj .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tBopWFuktj .item-content {
    margin-top: 20px;
  }
}
.cid-tBopWFuktj .card-title {
  color: #131313;
}
.cid-tBopWFuktj .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-tBopWFuktj .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-tBopWFuktj .link-text {
    margin-top: 10px;
  }
}
.cid-tBopWFuktj .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-tBopWFuktj .mbr-section-btn {
  margin-top: 5px;
}
.cid-tBopWFuktj .card-text,
.cid-tBopWFuktj .mbr-section-btn {
  text-align: center;
}
.cid-ucFYhofEfh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucFYhofEfh::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-ucFYhofEfh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFYhofEfh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucFYhofEfh .container {
    padding: 0 16px;
  }
}
.cid-ucFYhofEfh .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucFYhofEfh .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucFYhofEfh .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucFYhofEfh .mbr-section-title {
  color: #000000;
}
.cid-ucFYhofEfh .mbr-text {
  color: #000000;
}
.cid-ucFSNHNA9P {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucFSNHNA9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFSNHNA9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFSNHNA9P .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucFSNHNA9P .col-title {
    padding-top: 0;
  }
}
.cid-ucFSNHNA9P .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucFSNHNA9P .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucFSNHNA9P .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucFSNHNA9P .col-text {
    padding-top: 20px;
  }
}
.cid-ucFSNHNA9P .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucFSNHNA9P .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFSNHNA9P .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucFSNHNA9P .mbr-text {
  color: #131313;
}
.cid-ucFSNHNA9P .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucFSNHNA9P .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucFSNHNA9P .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucFSNHNA9P .mbr-text,
.cid-ucFSNHNA9P .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFWuLFEiu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFWuLFEiu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFWuLFEiu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucFWuLFEiu .container {
    padding: 0 20px;
  }
}
.cid-ucFWuLFEiu .row {
  margin: 0;
}
.cid-ucFWuLFEiu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFWuLFEiu .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucFWuLFEiu .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucFWuLFEiu .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucFWuLFEiu .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucFWuLFEiu .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucFWuLFEiu .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tBopQfYj2W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-tBopQfYj2W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBopQfYj2W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBopQfYj2W .row {
  margin: 0 !important;
}
.cid-tBopQfYj2W .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-tBopQfYj2W .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tBopQfYj2W .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-tBopQfYj2W .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tBopQfYj2W .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tBopQfYj2W .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tBopQfYj2W .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-tBopQfYj2W .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-tBopQfYj2W .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-tBopQfYj2W .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tBopQfYj2W .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBopQfYj2W .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-tBopQfYj2W .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-tBopQfYj2W .panel-group {
  border: none;
}
.cid-tBopQfYj2W .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-tBopQfYj2W .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tBopQfYj2W .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tBopQfYj2W .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-tBopQfYj2W .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-tBopQfYj2W .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-tBopQfYj2W .panel-title-edit {
  color: #ffffff;
}
.cid-tBopQfYj2W .panel-body {
  padding: 0 0 20px;
}
.cid-tBopQfYj2W .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucFSBh0X3H {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-ucFSBh0X3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFSBh0X3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFSBh0X3H .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ucFSBh0X3H .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-ucFSBh0X3H .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-ucFSBh0X3H .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-ucFSBh0X3H .content-container {
    padding: 0 20px;
  }
}
.cid-ucFSBh0X3H .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-ucFSBh0X3H .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-ucFSBh0X3H .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .image-wrapper img {
    max-width: 100%;
  }
}
.cid-ucFSBh0X3H .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-ucFSBh0X3H .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucFSBh0X3H .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .mbr-text {
    text-align: center !important;
  }
}
.cid-ucFSBh0X3H .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-ucFSBh0X3H .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucFSBh0X3H .mbr-text,
.cid-ucFSBh0X3H .mbr-section-btn {
  color: #000000;
}
.cid-ucFIQXS100 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFIQXS100 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFIQXS100 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFIQXS100 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFIQXS100 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFIQXS100 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFIQXS100 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFIQXS100 .container {
    padding: 0 16px;
  }
}
.cid-ucFIQXS100 .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFIQXS100 .google-map iframe {
    height: 350px;
  }
}
.cid-ucFJCUT94h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #533633;
}
.cid-ucFJCUT94h .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFJCUT94h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFJCUT94h .row {
  justify-content: space-between;
}
.cid-ucFJCUT94h .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFJCUT94h .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFJCUT94h .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFJCUT94h .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFJCUT94h .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFJCUT94h .list li {
  margin-bottom: 25px;
}
.cid-ucFJCUT94h .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFJCUT94h .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFJCUT94h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFJCUT94h .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFJCUT94h .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFJCUT94h .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-ucFJCUT94h .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucFJCUT94h .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucFJCUT94h .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFJCUT94h .mbr-desc,
.cid-ucFJCUT94h .mbr-iconfont {
  color: #ffffff;
}
.cid-ucFTn0H7Zb {
  z-index: 1000;
  width: 100%;
}
.cid-ucFTn0H7Zb nav.navbar {
  position: fixed;
}
.cid-ucFTn0H7Zb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFTn0H7Zb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucFTn0H7Zb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucFTn0H7Zb .dropdown-item:hover,
.cid-ucFTn0H7Zb .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucFTn0H7Zb .dropdown-item:hover span {
  color: white;
}
.cid-ucFTn0H7Zb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucFTn0H7Zb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucFTn0H7Zb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucFTn0H7Zb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucFTn0H7Zb .nav-link {
  position: relative;
}
.cid-ucFTn0H7Zb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucFTn0H7Zb .container {
    flex-wrap: nowrap;
  }
}
.cid-ucFTn0H7Zb .navbar-nav {
  margin: 0 auto;
}
.cid-ucFTn0H7Zb .dropdown-menu,
.cid-ucFTn0H7Zb .navbar.opened {
  background: #ffffff !important;
}
.cid-ucFTn0H7Zb .nav-item:focus,
.cid-ucFTn0H7Zb .nav-link:focus {
  outline: none;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFTn0H7Zb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFTn0H7Zb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFTn0H7Zb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFTn0H7Zb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucFTn0H7Zb .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFTn0H7Zb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucFTn0H7Zb .navbar .navbar-logo img {
  width: auto;
}
.cid-ucFTn0H7Zb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucFTn0H7Zb .navbar.collapsed {
  justify-content: center;
}
.cid-ucFTn0H7Zb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFTn0H7Zb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucFTn0H7Zb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucFTn0H7Zb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFTn0H7Zb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucFTn0H7Zb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFTn0H7Zb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucFTn0H7Zb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFTn0H7Zb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucFTn0H7Zb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucFTn0H7Zb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucFTn0H7Zb .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucFTn0H7Zb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucFTn0H7Zb .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFTn0H7Zb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFTn0H7Zb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFTn0H7Zb .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFTn0H7Zb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucFTn0H7Zb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFTn0H7Zb .dropdown-item.active,
.cid-ucFTn0H7Zb .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFTn0H7Zb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucFTn0H7Zb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFTn0H7Zb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFTn0H7Zb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucFTn0H7Zb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFTn0H7Zb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFTn0H7Zb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucFTn0H7Zb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFTn0H7Zb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTn0H7Zb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFTn0H7Zb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTn0H7Zb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucFTn0H7Zb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFTn0H7Zb .navbar {
    height: 70px;
  }
  .cid-ucFTn0H7Zb .navbar.opened {
    height: auto;
  }
  .cid-ucFTn0H7Zb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFTn0H7Zb .container,
.cid-ucFTn0H7Zb .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucFTn0H7Zb .container:before,
  .cid-ucFTn0H7Zb .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucFTn0H7Zb .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucFTn0H7Zb .navbar-short .container,
.cid-ucFTn0H7Zb .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucFTn0H7Zb .navbar-short .container:before,
.cid-ucFTn0H7Zb .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucFTn0H7Zb .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucFTn0H7Zb .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucFTn0H7Zb .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFTn0H7Zb .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucFTn0H7Zb .container,
  .cid-ucFTn0H7Zb .container-fluid {
    min-height: 85px;
  }
  .cid-ucFTn0H7Zb .navbar-brand {
    min-height: 85px;
  }
  .cid-ucFTn0H7Zb .navbar-short .container,
  .cid-ucFTn0H7Zb .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucFTn0H7Zb .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucFTn0H7Zb .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-ucFTn0H7Zb .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucFTn0H7Zb .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucFTn0H7Zb .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucFTn0H7Zb .mbr-section-btn {
    text-align: left;
  }
  .cid-ucFTn0H7Zb .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucFTn0H7Zb .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucFTn1ZO7o {
  background-image: url("../../../assets/images/big-wave-action-1-1280x720.jpg");
}
.cid-ucFTn1ZO7o .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTn1ZO7o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTn1ZO7o .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucFTn1ZO7o .col-title {
    padding-top: 0;
  }
}
.cid-ucFTn1ZO7o .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucFTn1ZO7o .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucFTn1ZO7o .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucFTn1ZO7o .col-text {
    padding-top: 20px;
  }
}
.cid-ucFTn1ZO7o .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucFTn1ZO7o .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFTn1ZO7o .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucFTn1ZO7o .mbr-text {
  color: #131313;
}
.cid-ucFTn1ZO7o .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucFTn1ZO7o .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucFTn1ZO7o .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucFTn3DTBL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucFTn3DTBL .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFTn3DTBL .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFTn3DTBL .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFTn3DTBL .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFTn3DTBL .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFTn3DTBL .mbr-text {
  color: #606060;
}
.cid-ucFTn3DTBL .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFTn3DTBL .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFTn3DTBL .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFTn3DTBL .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFTn3DTBL .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFTn3DTBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTn3DTBL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTn3DTBL .mbr-text,
.cid-ucFTn3DTBL .mbr-section-btn {
  color: #000000;
}
.cid-ucFTnfkPvX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFTnfkPvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTnfkPvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTnfkPvX .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFTnfkPvX .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTnfkPvX .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFTnfkPvX .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTnfkPvX .container {
    padding: 0 16px;
  }
}
.cid-ucFTnfkPvX .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFTnfkPvX .google-map iframe {
    height: 350px;
  }
}
.cid-ucFTngmxLs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #533633;
}
.cid-ucFTngmxLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTngmxLs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTngmxLs .row {
  justify-content: space-between;
}
.cid-ucFTngmxLs .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFTngmxLs .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFTngmxLs .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFTngmxLs .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFTngmxLs .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFTngmxLs .list li {
  margin-bottom: 25px;
}
.cid-ucFTngmxLs .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFTngmxLs .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFTngmxLs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFTngmxLs .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFTngmxLs .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFTngmxLs .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-ucFTngmxLs .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucFTngmxLs .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucFTngmxLs .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFTngmxLs .mbr-desc,
.cid-ucFTngmxLs .mbr-iconfont {
  color: #ffffff;
}
.cid-ucFTQweqh1 {
  z-index: 1000;
  width: 100%;
}
.cid-ucFTQweqh1 nav.navbar {
  position: fixed;
}
.cid-ucFTQweqh1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFTQweqh1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucFTQweqh1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucFTQweqh1 .dropdown-item:hover,
.cid-ucFTQweqh1 .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucFTQweqh1 .dropdown-item:hover span {
  color: white;
}
.cid-ucFTQweqh1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucFTQweqh1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucFTQweqh1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucFTQweqh1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucFTQweqh1 .nav-link {
  position: relative;
}
.cid-ucFTQweqh1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucFTQweqh1 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucFTQweqh1 .navbar-nav {
  margin: 0 auto;
}
.cid-ucFTQweqh1 .dropdown-menu,
.cid-ucFTQweqh1 .navbar.opened {
  background: #ffffff !important;
}
.cid-ucFTQweqh1 .nav-item:focus,
.cid-ucFTQweqh1 .nav-link:focus {
  outline: none;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFTQweqh1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFTQweqh1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFTQweqh1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFTQweqh1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucFTQweqh1 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFTQweqh1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucFTQweqh1 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucFTQweqh1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucFTQweqh1 .navbar.collapsed {
  justify-content: center;
}
.cid-ucFTQweqh1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFTQweqh1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucFTQweqh1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucFTQweqh1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFTQweqh1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucFTQweqh1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFTQweqh1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucFTQweqh1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFTQweqh1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucFTQweqh1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucFTQweqh1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucFTQweqh1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucFTQweqh1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucFTQweqh1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFTQweqh1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFTQweqh1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFTQweqh1 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFTQweqh1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucFTQweqh1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFTQweqh1 .dropdown-item.active,
.cid-ucFTQweqh1 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFTQweqh1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucFTQweqh1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFTQweqh1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFTQweqh1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucFTQweqh1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFTQweqh1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFTQweqh1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucFTQweqh1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFTQweqh1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFTQweqh1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFTQweqh1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFTQweqh1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucFTQweqh1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFTQweqh1 .navbar {
    height: 70px;
  }
  .cid-ucFTQweqh1 .navbar.opened {
    height: auto;
  }
  .cid-ucFTQweqh1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFTQweqh1 .container,
.cid-ucFTQweqh1 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucFTQweqh1 .container:before,
  .cid-ucFTQweqh1 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucFTQweqh1 .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucFTQweqh1 .navbar-short .container,
.cid-ucFTQweqh1 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucFTQweqh1 .navbar-short .container:before,
.cid-ucFTQweqh1 .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucFTQweqh1 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucFTQweqh1 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucFTQweqh1 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFTQweqh1 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucFTQweqh1 .container,
  .cid-ucFTQweqh1 .container-fluid {
    min-height: 85px;
  }
  .cid-ucFTQweqh1 .navbar-brand {
    min-height: 85px;
  }
  .cid-ucFTQweqh1 .navbar-short .container,
  .cid-ucFTQweqh1 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucFTQweqh1 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucFTQweqh1 .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-ucFTQweqh1 .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucFTQweqh1 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucFTQweqh1 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucFTQweqh1 .mbr-section-btn {
    text-align: left;
  }
  .cid-ucFTQweqh1 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucFTQweqh1 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucFTQxzWtb {
  background-image: url("../../../assets/images/inflatable-rentals-2-1920x1282.jpg");
}
.cid-ucFTQxzWtb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQxzWtb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQxzWtb .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucFTQxzWtb .col-title {
    padding-top: 0;
  }
}
.cid-ucFTQxzWtb .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucFTQxzWtb .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucFTQxzWtb .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucFTQxzWtb .col-text {
    padding-top: 20px;
  }
}
.cid-ucFTQxzWtb .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucFTQxzWtb .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFTQxzWtb .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucFTQxzWtb .mbr-text {
  color: #131313;
}
.cid-ucFTQxzWtb .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucFTQxzWtb .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucFTQxzWtb .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucFTQyvzkp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucFTQyvzkp .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFTQyvzkp .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFTQyvzkp .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFTQyvzkp .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFTQyvzkp .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFTQyvzkp .mbr-text {
  color: #606060;
}
.cid-ucFTQyvzkp .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFTQyvzkp .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFTQyvzkp .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFTQyvzkp .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFTQyvzkp .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFTQyvzkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQyvzkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQyvzkp .mbr-text,
.cid-ucFTQyvzkp .mbr-section-btn {
  color: #000000;
}
.cid-ucFTQzmBQ5 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFTQzmBQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQzmBQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQzmBQ5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFTQzmBQ5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTQzmBQ5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFTQzmBQ5 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFTQzmBQ5 .container {
    padding: 0 16px;
  }
}
.cid-ucFTQzmBQ5 .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFTQzmBQ5 .google-map iframe {
    height: 350px;
  }
}
.cid-ucFTQAff9p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #533633;
}
.cid-ucFTQAff9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFTQAff9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFTQAff9p .row {
  justify-content: space-between;
}
.cid-ucFTQAff9p .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFTQAff9p .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFTQAff9p .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFTQAff9p .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFTQAff9p .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFTQAff9p .list li {
  margin-bottom: 25px;
}
.cid-ucFTQAff9p .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFTQAff9p .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFTQAff9p .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFTQAff9p .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFTQAff9p .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFTQAff9p .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-ucFTQAff9p .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucFTQAff9p .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucFTQAff9p .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFTQAff9p .mbr-desc,
.cid-ucFTQAff9p .mbr-iconfont {
  color: #ffffff;
}
.cid-ucFZQ2D7f8 {
  z-index: 1000;
  width: 100%;
}
.cid-ucFZQ2D7f8 nav.navbar {
  position: fixed;
}
.cid-ucFZQ2D7f8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFZQ2D7f8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucFZQ2D7f8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucFZQ2D7f8 .dropdown-item:hover,
.cid-ucFZQ2D7f8 .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucFZQ2D7f8 .dropdown-item:hover span {
  color: white;
}
.cid-ucFZQ2D7f8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucFZQ2D7f8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucFZQ2D7f8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucFZQ2D7f8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucFZQ2D7f8 .nav-link {
  position: relative;
}
.cid-ucFZQ2D7f8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucFZQ2D7f8 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucFZQ2D7f8 .navbar-nav {
  margin: 0 auto;
}
.cid-ucFZQ2D7f8 .dropdown-menu,
.cid-ucFZQ2D7f8 .navbar.opened {
  background: #ffffff !important;
}
.cid-ucFZQ2D7f8 .nav-item:focus,
.cid-ucFZQ2D7f8 .nav-link:focus {
  outline: none;
}
.cid-ucFZQ2D7f8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucFZQ2D7f8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucFZQ2D7f8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucFZQ2D7f8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucFZQ2D7f8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucFZQ2D7f8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucFZQ2D7f8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucFZQ2D7f8 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucFZQ2D7f8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucFZQ2D7f8 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucFZQ2D7f8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucFZQ2D7f8 .navbar.collapsed {
  justify-content: center;
}
.cid-ucFZQ2D7f8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucFZQ2D7f8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucFZQ2D7f8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucFZQ2D7f8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucFZQ2D7f8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucFZQ2D7f8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucFZQ2D7f8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucFZQ2D7f8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucFZQ2D7f8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucFZQ2D7f8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucFZQ2D7f8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucFZQ2D7f8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucFZQ2D7f8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucFZQ2D7f8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucFZQ2D7f8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucFZQ2D7f8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucFZQ2D7f8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucFZQ2D7f8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucFZQ2D7f8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucFZQ2D7f8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucFZQ2D7f8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucFZQ2D7f8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucFZQ2D7f8 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucFZQ2D7f8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucFZQ2D7f8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucFZQ2D7f8 .dropdown-item.active,
.cid-ucFZQ2D7f8 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucFZQ2D7f8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucFZQ2D7f8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucFZQ2D7f8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucFZQ2D7f8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucFZQ2D7f8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucFZQ2D7f8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucFZQ2D7f8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucFZQ2D7f8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucFZQ2D7f8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucFZQ2D7f8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucFZQ2D7f8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucFZQ2D7f8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFZQ2D7f8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucFZQ2D7f8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucFZQ2D7f8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFZQ2D7f8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucFZQ2D7f8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucFZQ2D7f8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucFZQ2D7f8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucFZQ2D7f8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucFZQ2D7f8 .navbar {
    height: 70px;
  }
  .cid-ucFZQ2D7f8 .navbar.opened {
    height: auto;
  }
  .cid-ucFZQ2D7f8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucFZQ2D7f8 .container,
.cid-ucFZQ2D7f8 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucFZQ2D7f8 .container:before,
  .cid-ucFZQ2D7f8 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucFZQ2D7f8 .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucFZQ2D7f8 .navbar-short .container,
.cid-ucFZQ2D7f8 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucFZQ2D7f8 .navbar-short .container:before,
.cid-ucFZQ2D7f8 .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucFZQ2D7f8 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucFZQ2D7f8 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucFZQ2D7f8 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFZQ2D7f8 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQ2D7f8 .container,
  .cid-ucFZQ2D7f8 .container-fluid {
    min-height: 85px;
  }
  .cid-ucFZQ2D7f8 .navbar-brand {
    min-height: 85px;
  }
  .cid-ucFZQ2D7f8 .navbar-short .container,
  .cid-ucFZQ2D7f8 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucFZQ2D7f8 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucFZQ2D7f8 .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-ucFZQ2D7f8 .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucFZQ2D7f8 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucFZQ2D7f8 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucFZQ2D7f8 .mbr-section-btn {
    text-align: left;
  }
  .cid-ucFZQ2D7f8 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucFZQ2D7f8 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucFZQ45rwr {
  background-image: url("../../../assets/images/header5-2000x1118.jpg");
}
.cid-ucFZQ45rwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQ45rwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQ45rwr .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucFZQ45rwr .col-title {
    padding-top: 0;
  }
}
.cid-ucFZQ45rwr .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucFZQ45rwr .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucFZQ45rwr .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQ45rwr .col-text {
    padding-top: 20px;
  }
}
.cid-ucFZQ45rwr .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucFZQ45rwr .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFZQ45rwr .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucFZQ45rwr .mbr-text {
  color: #131313;
}
.cid-ucFZQ45rwr .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucFZQ45rwr .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucFZQ45rwr .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucFZQ45rwr .mbr-text,
.cid-ucFZQ45rwr .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFZQ5kRYD {
  background-color: #533633 !important;
  border: 18px solid #533633;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-ucFZQ5kRYD {
    border: 8px solid #533633;
    margin-top: -8px;
  }
}
.cid-ucFZQ5kRYD .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-ucFZQ5kRYD section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-ucFZQ5kRYD .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ucFZQ5kRYD .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQ5kRYD .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucFZQ5kRYD .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ucFZQ5kRYD .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucFZQ5kRYD .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucFZQ5kRYD .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-ucFZQ5kRYD .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucFZQ5kRYD .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-ucFZQ5kRYD .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-ucFZQ5kRYD .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #ed2c03;
}
.cid-ucFZQ5kRYD .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucFZQ5kRYD .image-wrapper {
    height: auto;
  }
}
.cid-ucFZQ5kRYD .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-ucFZQ5kRYD .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-ucFZQ5kRYD .mbr-section-title {
  color: #ed2c03;
}
.cid-ucFZQ5kRYD .list {
  color: #000000;
}
.cid-ucFZQ6d8yf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucFZQ6d8yf .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucFZQ6d8yf .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucFZQ6d8yf .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucFZQ6d8yf .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucFZQ6d8yf .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucFZQ6d8yf .mbr-text {
  color: #606060;
}
.cid-ucFZQ6d8yf .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucFZQ6d8yf .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucFZQ6d8yf .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucFZQ6d8yf .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucFZQ6d8yf .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucFZQ6d8yf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQ6d8yf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQ6d8yf .mbr-text,
.cid-ucFZQ6d8yf .mbr-section-btn {
  color: #000000;
}
.cid-ucFZQ76kIl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucFZQ76kIl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQ76kIl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQ76kIl .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucFZQ76kIl .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQ76kIl .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucFZQ76kIl .mbr-section-title {
  color: #131313;
}
.cid-ucFZQ76kIl .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucFZQ76kIl .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-ucFZQ76kIl .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucFZQ76kIl .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-ucFZQ76kIl .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-ucFZQ76kIl .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucFZQ76kIl .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-ucFZQ76kIl .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-ucFZQ76kIl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-ucFZQ76kIl .card-title {
  color: #131313;
}
.cid-ucFZQ76kIl .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-ucFZQ76kIl .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-ucFZQ76kIl .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQ76kIl .card-link {
    margin-top: 15px;
  }
}
.cid-ucFZQ76kIl .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucFZQ76kIl .card-title,
.cid-ucFZQ76kIl .iconfont-wrapper {
  text-align: center;
}
.cid-ucFZQ8pSj3 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #533633;
}
.cid-ucFZQ8pSj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQ8pSj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQ8pSj3 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-ucFZQ8pSj3 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-ucFZQ8pSj3 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucFZQ8pSj3 .item-img {
    width: 100%;
  }
}
.cid-ucFZQ8pSj3 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucFZQ8pSj3 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucFZQ8pSj3 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQ8pSj3 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucFZQ8pSj3 .card-title {
  color: #ffffff;
}
.cid-ucFZQ8pSj3 .card-text {
  margin-top: 25px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFZQ8pSj3 .card-text {
    margin-top: 20px;
  }
}
.cid-ucFZQ8pSj3 .mbr-section-btn {
  margin-top: 34px;
}
@media (max-width: 991px) {
  .cid-ucFZQ8pSj3 .mbr-section-btn {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQ8pSj3 .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-ucFZQ8pSj3 .card-text,
.cid-ucFZQ8pSj3 .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFZQ9lvcO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFZQ9lvcO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQ9lvcO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQ9lvcO .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFZQ9lvcO .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucFZQ9lvcO .container {
    padding: 0 24px;
  }
}
.cid-ucFZQ9lvcO .row {
  justify-content: center;
}
.cid-ucFZQ9lvcO .content-wrapper {
  border-radius: 40px;
  background-color: #533633;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucFZQ9lvcO .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucFZQ9lvcO .content-wrapper {
    padding: 32px;
  }
}
.cid-ucFZQ9lvcO .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucFZQ9lvcO .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucFZQ9lvcO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucFZQ9lvcO .mbr-text {
  color: #ffffff;
}
.cid-ucFZQah01x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucFZQah01x .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQah01x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQah01x .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-ucFZQah01x .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQah01x .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-ucFZQah01x .mbr-section-title {
  color: #131313;
}
.cid-ucFZQah01x .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucFZQah01x .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-ucFZQah01x .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucFZQah01x .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-ucFZQah01x .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQah01x .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-ucFZQah01x .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucFZQah01x .card-title {
  color: #131313;
  text-align: center;
}
.cid-ucFZQah01x .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-ucFZQah01x .price-box {
    margin-top: 5px;
  }
}
.cid-ucFZQah01x .number-text {
  color: #FC7942;
}
.cid-ucFZQah01x .stint-text {
  color: #FC7942;
}
.cid-ucFZQah01x .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ucFZQah01x .card-text {
    margin-top: 10px;
  }
}
.cid-ucFZQah01x .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-ucFZQah01x .list-box {
    margin-top: 24px;
  }
}
.cid-ucFZQah01x .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-ucFZQah01x .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-ucFZQah01x .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-ucFZQah01x .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-ucFZQah01x .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-ucFZQah01x .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQah01x .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-ucFZQah01x .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucFZQah01x .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucFZQc7HnK {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ucFZQc7HnK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQc7HnK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQc7HnK .mbr-section-title {
  color: #131313;
}
.cid-ucFZQc7HnK .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucFZQc7HnK .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucFZQc7HnK .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucFZQc7HnK .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucFZQc7HnK .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucFZQc7HnK .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQc7HnK .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucFZQd5bLc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucFZQd5bLc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQd5bLc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQd5bLc .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucFZQd5bLc .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQd5bLc .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucFZQd5bLc .mbr-section-title {
  color: #131313;
}
.cid-ucFZQd5bLc .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucFZQd5bLc .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-ucFZQd5bLc .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-ucFZQd5bLc .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-ucFZQd5bLc .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-ucFZQd5bLc .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucFZQd5bLc .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-ucFZQd5bLc .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-ucFZQd5bLc .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQd5bLc .item-content {
    margin-top: 20px;
  }
}
.cid-ucFZQd5bLc .card-title {
  color: #131313;
}
.cid-ucFZQd5bLc .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-ucFZQd5bLc .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-ucFZQd5bLc .link-text {
    margin-top: 10px;
  }
}
.cid-ucFZQd5bLc .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucFZQd5bLc .mbr-section-btn {
  margin-top: 5px;
}
.cid-ucFZQd5bLc .card-text,
.cid-ucFZQd5bLc .mbr-section-btn {
  text-align: center;
}
.cid-ucFZQedvRC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucFZQedvRC::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-ucFZQedvRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQedvRC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucFZQedvRC .container {
    padding: 0 16px;
  }
}
.cid-ucFZQedvRC .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucFZQedvRC .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucFZQedvRC .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucFZQedvRC .mbr-section-title {
  color: #000000;
}
.cid-ucFZQedvRC .mbr-text {
  color: #000000;
}
.cid-ucFZQfdsGV {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucFZQfdsGV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQfdsGV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQfdsGV .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucFZQfdsGV .col-title {
    padding-top: 0;
  }
}
.cid-ucFZQfdsGV .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucFZQfdsGV .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucFZQfdsGV .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQfdsGV .col-text {
    padding-top: 20px;
  }
}
.cid-ucFZQfdsGV .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucFZQfdsGV .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucFZQfdsGV .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucFZQfdsGV .mbr-text {
  color: #131313;
}
.cid-ucFZQfdsGV .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucFZQfdsGV .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucFZQfdsGV .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucFZQfdsGV .mbr-text,
.cid-ucFZQfdsGV .mbr-section-btn {
  color: #ffffff;
}
.cid-ucFZQgcRSi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFZQgcRSi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQgcRSi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucFZQgcRSi .container {
    padding: 0 20px;
  }
}
.cid-ucFZQgcRSi .row {
  margin: 0;
}
.cid-ucFZQgcRSi .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucFZQgcRSi .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucFZQgcRSi .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucFZQgcRSi .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucFZQgcRSi .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucFZQgcRSi .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucFZQgcRSi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucFZQh7LP7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucFZQh7LP7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQh7LP7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQh7LP7 .row {
  margin: 0 !important;
}
.cid-ucFZQh7LP7 .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucFZQh7LP7 .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQh7LP7 .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-ucFZQh7LP7 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucFZQh7LP7 .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucFZQh7LP7 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ucFZQh7LP7 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ucFZQh7LP7 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-ucFZQh7LP7 .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-ucFZQh7LP7 .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucFZQh7LP7 .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucFZQh7LP7 .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-ucFZQh7LP7 .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-ucFZQh7LP7 .panel-group {
  border: none;
}
.cid-ucFZQh7LP7 .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-ucFZQh7LP7 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucFZQh7LP7 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucFZQh7LP7 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-ucFZQh7LP7 .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-ucFZQh7LP7 .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-ucFZQh7LP7 .panel-title-edit {
  color: #ffffff;
}
.cid-ucFZQh7LP7 .panel-body {
  padding: 0 0 20px;
}
.cid-ucFZQh7LP7 .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucFZQimMr5 {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-ucFZQimMr5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQimMr5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQimMr5 .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ucFZQimMr5 .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-ucFZQimMr5 .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-ucFZQimMr5 .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-ucFZQimMr5 .content-container {
    padding: 0 20px;
  }
}
.cid-ucFZQimMr5 .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-ucFZQimMr5 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-ucFZQimMr5 .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .image-wrapper img {
    max-width: 100%;
  }
}
.cid-ucFZQimMr5 .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-ucFZQimMr5 .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucFZQimMr5 .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .mbr-text {
    text-align: center !important;
  }
}
.cid-ucFZQimMr5 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-ucFZQimMr5 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucFZQimMr5 .mbr-text,
.cid-ucFZQimMr5 .mbr-section-btn {
  color: #000000;
}
.cid-ucG1PCBVy0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG1PCBVy0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG1PCBVy0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG1PCBVy0 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucG1PCBVy0 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucG1PCBVy0 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucG1PCBVy0 .container {
    padding: 0 16px;
  }
}
.cid-ucG1PCBVy0 .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucG1PCBVy0 .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucG1PCBVy0 .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-ucG1PCBVy0 .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-ucG1PCBVy0 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-ucG1PCBVy0 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ucG1PCBVy0 .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-ucG1PCBVy0 .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-ucG1PCBVy0 .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-ucG1PCBVy0 .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-ucG1PCBVy0 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-ucG1PCBVy0 .mbr-section-title {
  color: #ffffff;
}
.cid-ucG1PCBVy0 .panel-number {
  color: #ffffff;
}
.cid-ucG1PCBVy0 .panel-title-edit {
  color: #ffffff;
}
.cid-ucG1PCBVy0 .panel-text {
  color: #ffffff;
}
.cid-ucFZQjrOJY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucFZQjrOJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQjrOJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQjrOJY .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucFZQjrOJY .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFZQjrOJY .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucFZQjrOJY .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucFZQjrOJY .container {
    padding: 0 16px;
  }
}
.cid-ucFZQjrOJY .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucFZQjrOJY .google-map iframe {
    height: 350px;
  }
}
.cid-ucFZQkEF7z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #533633;
}
.cid-ucFZQkEF7z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFZQkEF7z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFZQkEF7z .row {
  justify-content: space-between;
}
.cid-ucFZQkEF7z .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucFZQkEF7z .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucFZQkEF7z .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucFZQkEF7z .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucFZQkEF7z .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucFZQkEF7z .list li {
  margin-bottom: 25px;
}
.cid-ucFZQkEF7z .list li:last-child {
  margin-bottom: 0;
}
.cid-ucFZQkEF7z .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucFZQkEF7z .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucFZQkEF7z .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucFZQkEF7z .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucFZQkEF7z .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-ucFZQkEF7z .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucFZQkEF7z .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucFZQkEF7z .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucFZQkEF7z .mbr-desc,
.cid-ucFZQkEF7z .mbr-iconfont {
  color: #ffffff;
}
.cid-ucG27BVnly {
  z-index: 1000;
  width: 100%;
}
.cid-ucG27BVnly nav.navbar {
  position: fixed;
}
.cid-ucG27BVnly .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucG27BVnly .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucG27BVnly .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucG27BVnly .dropdown-item:hover,
.cid-ucG27BVnly .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucG27BVnly .dropdown-item:hover span {
  color: white;
}
.cid-ucG27BVnly .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucG27BVnly .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucG27BVnly .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucG27BVnly .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucG27BVnly .nav-link {
  position: relative;
}
.cid-ucG27BVnly .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucG27BVnly .container {
    flex-wrap: nowrap;
  }
}
.cid-ucG27BVnly .navbar-nav {
  margin: 0 auto;
}
.cid-ucG27BVnly .dropdown-menu,
.cid-ucG27BVnly .navbar.opened {
  background: #ffffff !important;
}
.cid-ucG27BVnly .nav-item:focus,
.cid-ucG27BVnly .nav-link:focus {
  outline: none;
}
.cid-ucG27BVnly .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucG27BVnly .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucG27BVnly .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucG27BVnly .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucG27BVnly .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucG27BVnly .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucG27BVnly .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucG27BVnly .navbar.opened {
  transition: all 0.3s;
}
.cid-ucG27BVnly .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucG27BVnly .navbar .navbar-logo img {
  width: auto;
}
.cid-ucG27BVnly .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucG27BVnly .navbar.collapsed {
  justify-content: center;
}
.cid-ucG27BVnly .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucG27BVnly .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucG27BVnly .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucG27BVnly .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucG27BVnly .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucG27BVnly .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucG27BVnly .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucG27BVnly .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucG27BVnly .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucG27BVnly .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucG27BVnly .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucG27BVnly .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucG27BVnly .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucG27BVnly .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucG27BVnly .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucG27BVnly .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucG27BVnly .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucG27BVnly .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucG27BVnly .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucG27BVnly .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucG27BVnly .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucG27BVnly .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucG27BVnly .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucG27BVnly .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucG27BVnly .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucG27BVnly .dropdown-item.active,
.cid-ucG27BVnly .dropdown-item:active {
  background-color: transparent;
}
.cid-ucG27BVnly .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucG27BVnly .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucG27BVnly .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucG27BVnly .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucG27BVnly .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucG27BVnly .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucG27BVnly ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucG27BVnly .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucG27BVnly button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucG27BVnly button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucG27BVnly button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucG27BVnly button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucG27BVnly button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucG27BVnly button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucG27BVnly nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucG27BVnly nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucG27BVnly nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucG27BVnly nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucG27BVnly .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucG27BVnly a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucG27BVnly .navbar {
    height: 70px;
  }
  .cid-ucG27BVnly .navbar.opened {
    height: auto;
  }
  .cid-ucG27BVnly .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucG27BVnly .container,
.cid-ucG27BVnly .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucG27BVnly .container:before,
  .cid-ucG27BVnly .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucG27BVnly .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucG27BVnly .navbar-short .container,
.cid-ucG27BVnly .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucG27BVnly .navbar-short .container:before,
.cid-ucG27BVnly .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucG27BVnly .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucG27BVnly .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucG27BVnly .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG27BVnly .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucG27BVnly .container,
  .cid-ucG27BVnly .container-fluid {
    min-height: 85px;
  }
  .cid-ucG27BVnly .navbar-brand {
    min-height: 85px;
  }
  .cid-ucG27BVnly .navbar-short .container,
  .cid-ucG27BVnly .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucG27BVnly .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucG27BVnly .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-ucG27BVnly .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucG27BVnly .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucG27BVnly .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucG27BVnly .mbr-section-btn {
    text-align: left;
  }
  .cid-ucG27BVnly .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucG27BVnly .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucG27Esd0C {
  background-image: url("../../../assets/images/bounce-house-rentals-2q-612x387.jpg");
}
.cid-ucG27Esd0C .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27Esd0C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27Esd0C .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucG27Esd0C .col-title {
    padding-top: 0;
  }
}
.cid-ucG27Esd0C .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucG27Esd0C .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucG27Esd0C .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucG27Esd0C .col-text {
    padding-top: 20px;
  }
}
.cid-ucG27Esd0C .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucG27Esd0C .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG27Esd0C .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucG27Esd0C .mbr-text {
  color: #131313;
}
.cid-ucG27Esd0C .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucG27Esd0C .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucG27Esd0C .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucG27Esd0C .mbr-text,
.cid-ucG27Esd0C .mbr-section-btn {
  color: #ffffff;
}
.cid-ucG27G3aRj {
  background-color: #533633 !important;
  border: 18px solid #533633;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-ucG27G3aRj {
    border: 8px solid #533633;
    margin-top: -8px;
  }
}
.cid-ucG27G3aRj .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-ucG27G3aRj section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-ucG27G3aRj .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ucG27G3aRj .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27G3aRj .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucG27G3aRj .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ucG27G3aRj .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucG27G3aRj .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucG27G3aRj .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-ucG27G3aRj .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucG27G3aRj .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-ucG27G3aRj .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-ucG27G3aRj .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #ed2c03;
}
.cid-ucG27G3aRj .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucG27G3aRj .image-wrapper {
    height: auto;
  }
}
.cid-ucG27G3aRj .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-ucG27G3aRj .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-ucG27G3aRj .mbr-section-title {
  color: #ed2c03;
}
.cid-ucG27G3aRj .list {
  color: #000000;
}
.cid-ucG27HJzm4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucG27HJzm4 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucG27HJzm4 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucG27HJzm4 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucG27HJzm4 .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucG27HJzm4 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucG27HJzm4 .mbr-text {
  color: #606060;
}
.cid-ucG27HJzm4 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucG27HJzm4 .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucG27HJzm4 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucG27HJzm4 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucG27HJzm4 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucG27HJzm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27HJzm4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27HJzm4 .mbr-text,
.cid-ucG27HJzm4 .mbr-section-btn {
  color: #000000;
}
.cid-ucG27JOzJq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG27JOzJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27JOzJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27JOzJq .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucG27JOzJq .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27JOzJq .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucG27JOzJq .mbr-section-title {
  color: #131313;
}
.cid-ucG27JOzJq .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucG27JOzJq .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-ucG27JOzJq .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucG27JOzJq .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-ucG27JOzJq .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-ucG27JOzJq .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucG27JOzJq .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-ucG27JOzJq .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-ucG27JOzJq .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-ucG27JOzJq .card-title {
  color: #131313;
}
.cid-ucG27JOzJq .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-ucG27JOzJq .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-ucG27JOzJq .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27JOzJq .card-link {
    margin-top: 15px;
  }
}
.cid-ucG27JOzJq .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucG27JOzJq .card-title,
.cid-ucG27JOzJq .iconfont-wrapper {
  text-align: center;
}
.cid-ucG27MnSI6 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #533633;
}
.cid-ucG27MnSI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27MnSI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27MnSI6 .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-ucG27MnSI6 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-ucG27MnSI6 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucG27MnSI6 .item-img {
    width: 100%;
  }
}
.cid-ucG27MnSI6 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucG27MnSI6 .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucG27MnSI6 .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucG27MnSI6 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucG27MnSI6 .card-title {
  color: #ffffff;
}
.cid-ucG27MnSI6 .card-text {
  margin-top: 25px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG27MnSI6 .card-text {
    margin-top: 20px;
  }
}
.cid-ucG27MnSI6 .mbr-section-btn {
  margin-top: 34px;
}
@media (max-width: 991px) {
  .cid-ucG27MnSI6 .mbr-section-btn {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27MnSI6 .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-ucG27MnSI6 .card-text,
.cid-ucG27MnSI6 .mbr-section-btn {
  color: #ffffff;
}
.cid-ucG27NvLpM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucG27NvLpM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27NvLpM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27NvLpM .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucG27NvLpM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucG27NvLpM .container {
    padding: 0 24px;
  }
}
.cid-ucG27NvLpM .row {
  justify-content: center;
}
.cid-ucG27NvLpM .content-wrapper {
  border-radius: 40px;
  background-color: #533633;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucG27NvLpM .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucG27NvLpM .content-wrapper {
    padding: 32px;
  }
}
.cid-ucG27NvLpM .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucG27NvLpM .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucG27NvLpM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucG27NvLpM .mbr-text {
  color: #ffffff;
}
.cid-ucG27OqgFr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG27OqgFr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27OqgFr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27OqgFr .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-ucG27OqgFr .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucG27OqgFr .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-ucG27OqgFr .mbr-section-title {
  color: #131313;
}
.cid-ucG27OqgFr .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucG27OqgFr .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-ucG27OqgFr .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucG27OqgFr .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-ucG27OqgFr .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27OqgFr .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-ucG27OqgFr .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucG27OqgFr .card-title {
  color: #131313;
  text-align: center;
}
.cid-ucG27OqgFr .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-ucG27OqgFr .price-box {
    margin-top: 5px;
  }
}
.cid-ucG27OqgFr .number-text {
  color: #FC7942;
}
.cid-ucG27OqgFr .stint-text {
  color: #FC7942;
}
.cid-ucG27OqgFr .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ucG27OqgFr .card-text {
    margin-top: 10px;
  }
}
.cid-ucG27OqgFr .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-ucG27OqgFr .list-box {
    margin-top: 24px;
  }
}
.cid-ucG27OqgFr .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-ucG27OqgFr .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-ucG27OqgFr .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-ucG27OqgFr .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-ucG27OqgFr .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-ucG27OqgFr .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ucG27OqgFr .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-ucG27OqgFr .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucG27OqgFr .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucG27QdasQ {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ucG27QdasQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27QdasQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27QdasQ .mbr-section-title {
  color: #131313;
}
.cid-ucG27QdasQ .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucG27QdasQ .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucG27QdasQ .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucG27QdasQ .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucG27QdasQ .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucG27QdasQ .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27QdasQ .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucG27Rj7S5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG27Rj7S5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27Rj7S5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27Rj7S5 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucG27Rj7S5 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27Rj7S5 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucG27Rj7S5 .mbr-section-title {
  color: #131313;
}
.cid-ucG27Rj7S5 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucG27Rj7S5 .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-ucG27Rj7S5 .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-ucG27Rj7S5 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-ucG27Rj7S5 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-ucG27Rj7S5 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucG27Rj7S5 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-ucG27Rj7S5 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-ucG27Rj7S5 .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27Rj7S5 .item-content {
    margin-top: 20px;
  }
}
.cid-ucG27Rj7S5 .card-title {
  color: #131313;
}
.cid-ucG27Rj7S5 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-ucG27Rj7S5 .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-ucG27Rj7S5 .link-text {
    margin-top: 10px;
  }
}
.cid-ucG27Rj7S5 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucG27Rj7S5 .mbr-section-btn {
  margin-top: 5px;
}
.cid-ucG27Rj7S5 .card-text,
.cid-ucG27Rj7S5 .mbr-section-btn {
  text-align: center;
}
.cid-ucG27SF8wr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucG27SF8wr::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-ucG27SF8wr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27SF8wr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucG27SF8wr .container {
    padding: 0 16px;
  }
}
.cid-ucG27SF8wr .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucG27SF8wr .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucG27SF8wr .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucG27SF8wr .mbr-section-title {
  color: #000000;
}
.cid-ucG27SF8wr .mbr-text {
  color: #000000;
}
.cid-ucG27TMped {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #533633;
}
.cid-ucG27TMped .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27TMped .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27TMped .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucG27TMped .col-title {
    padding-top: 0;
  }
}
.cid-ucG27TMped .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucG27TMped .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucG27TMped .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucG27TMped .col-text {
    padding-top: 20px;
  }
}
.cid-ucG27TMped .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucG27TMped .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG27TMped .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucG27TMped .mbr-text {
  color: #131313;
}
.cid-ucG27TMped .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucG27TMped .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucG27TMped .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucG27TMped .mbr-text,
.cid-ucG27TMped .mbr-section-btn {
  color: #ffffff;
}
.cid-ucG27WvdqN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG27WvdqN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27WvdqN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27WvdqN .row {
  margin: 0 !important;
}
.cid-ucG27WvdqN .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucG27WvdqN .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucG27WvdqN .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-ucG27WvdqN .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucG27WvdqN .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucG27WvdqN .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ucG27WvdqN .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ucG27WvdqN .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-ucG27WvdqN .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-ucG27WvdqN .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucG27WvdqN .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucG27WvdqN .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-ucG27WvdqN .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-ucG27WvdqN .panel-group {
  border: none;
}
.cid-ucG27WvdqN .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-ucG27WvdqN .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucG27WvdqN .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucG27WvdqN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-ucG27WvdqN .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-ucG27WvdqN .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-ucG27WvdqN .panel-title-edit {
  color: #ffffff;
}
.cid-ucG27WvdqN .panel-body {
  padding: 0 0 20px;
}
.cid-ucG27WvdqN .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucG27Ypfkd {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-ucG27Ypfkd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG27Ypfkd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG27Ypfkd .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ucG27Ypfkd .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-ucG27Ypfkd .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-ucG27Ypfkd .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-ucG27Ypfkd .content-container {
    padding: 0 20px;
  }
}
.cid-ucG27Ypfkd .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-ucG27Ypfkd .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-ucG27Ypfkd .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .image-wrapper img {
    max-width: 100%;
  }
}
.cid-ucG27Ypfkd .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-ucG27Ypfkd .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucG27Ypfkd .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .mbr-text {
    text-align: center !important;
  }
}
.cid-ucG27Ypfkd .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-ucG27Ypfkd .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucG27Ypfkd .mbr-text,
.cid-ucG27Ypfkd .mbr-section-btn {
  color: #000000;
}
.cid-ucG281nZQh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG281nZQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG281nZQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG281nZQh .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucG281nZQh .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucG281nZQh .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucG281nZQh .container {
    padding: 0 16px;
  }
}
.cid-ucG281nZQh .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucG281nZQh .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucG281nZQh .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-ucG281nZQh .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-ucG281nZQh .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-ucG281nZQh .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucG281nZQh .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-ucG281nZQh .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ucG281nZQh .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-ucG281nZQh .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-ucG281nZQh .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-ucG281nZQh .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-ucG281nZQh .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-ucG281nZQh .mbr-section-title {
  color: #ffffff;
}
.cid-ucG281nZQh .panel-number {
  color: #ffffff;
}
.cid-ucG281nZQh .panel-title-edit {
  color: #ffffff;
}
.cid-ucG281nZQh .panel-text {
  color: #ffffff;
}
.cid-ucG285drAR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucG285drAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG285drAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG285drAR .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucG285drAR .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucG285drAR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucG285drAR .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucG285drAR .container {
    padding: 0 16px;
  }
}
.cid-ucG285drAR .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucG285drAR .google-map iframe {
    height: 350px;
  }
}
.cid-ucG287Qtok {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #533633;
}
.cid-ucG287Qtok .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG287Qtok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG287Qtok .row {
  justify-content: space-between;
}
.cid-ucG287Qtok .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucG287Qtok .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucG287Qtok .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucG287Qtok .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucG287Qtok .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucG287Qtok .list li {
  margin-bottom: 25px;
}
.cid-ucG287Qtok .list li:last-child {
  margin-bottom: 0;
}
.cid-ucG287Qtok .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucG287Qtok .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucG287Qtok .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucG287Qtok .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucG287Qtok .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-ucG287Qtok .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucG287Qtok .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucG287Qtok .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucG287Qtok .mbr-desc,
.cid-ucG287Qtok .mbr-iconfont {
  color: #ffffff;
}
.cid-ucG3ML9dI8 {
  z-index: 1000;
  width: 100%;
}
.cid-ucG3ML9dI8 nav.navbar {
  position: fixed;
}
.cid-ucG3ML9dI8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucG3ML9dI8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucG3ML9dI8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucG3ML9dI8 .dropdown-item:hover,
.cid-ucG3ML9dI8 .dropdown-item:focus {
  background: #fc7942 !important;
  color: white !important;
}
.cid-ucG3ML9dI8 .dropdown-item:hover span {
  color: white;
}
.cid-ucG3ML9dI8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucG3ML9dI8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucG3ML9dI8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucG3ML9dI8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucG3ML9dI8 .nav-link {
  position: relative;
}
.cid-ucG3ML9dI8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ucG3ML9dI8 .container {
    flex-wrap: nowrap;
  }
}
.cid-ucG3ML9dI8 .navbar-nav {
  margin: 0 auto;
}
.cid-ucG3ML9dI8 .dropdown-menu,
.cid-ucG3ML9dI8 .navbar.opened {
  background: #ffffff !important;
}
.cid-ucG3ML9dI8 .nav-item:focus,
.cid-ucG3ML9dI8 .nav-link:focus {
  outline: none;
}
.cid-ucG3ML9dI8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucG3ML9dI8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucG3ML9dI8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucG3ML9dI8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucG3ML9dI8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucG3ML9dI8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucG3ML9dI8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
}
.cid-ucG3ML9dI8 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucG3ML9dI8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucG3ML9dI8 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucG3ML9dI8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucG3ML9dI8 .navbar.collapsed {
  justify-content: center;
}
.cid-ucG3ML9dI8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucG3ML9dI8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucG3ML9dI8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ucG3ML9dI8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucG3ML9dI8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucG3ML9dI8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ucG3ML9dI8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucG3ML9dI8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ucG3ML9dI8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucG3ML9dI8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucG3ML9dI8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucG3ML9dI8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucG3ML9dI8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ucG3ML9dI8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucG3ML9dI8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucG3ML9dI8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucG3ML9dI8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucG3ML9dI8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucG3ML9dI8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucG3ML9dI8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucG3ML9dI8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucG3ML9dI8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucG3ML9dI8 .navbar-brand {
  min-height: 108px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucG3ML9dI8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucG3ML9dI8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucG3ML9dI8 .dropdown-item.active,
.cid-ucG3ML9dI8 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucG3ML9dI8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucG3ML9dI8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucG3ML9dI8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucG3ML9dI8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ucG3ML9dI8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucG3ML9dI8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucG3ML9dI8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucG3ML9dI8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucG3ML9dI8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucG3ML9dI8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #131313;
}
.cid-ucG3ML9dI8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucG3ML9dI8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucG3ML9dI8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucG3ML9dI8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucG3ML9dI8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucG3ML9dI8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucG3ML9dI8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucG3ML9dI8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucG3ML9dI8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucG3ML9dI8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucG3ML9dI8 .navbar {
    height: 70px;
  }
  .cid-ucG3ML9dI8 .navbar.opened {
    height: auto;
  }
  .cid-ucG3ML9dI8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucG3ML9dI8 .container,
.cid-ucG3ML9dI8 .container-fluid {
  position: relative;
  min-height: 108px;
}
@media (min-width: 992px) {
  .cid-ucG3ML9dI8 .container:before,
  .cid-ucG3ML9dI8 .container-fluid:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #131313;
  }
}
.cid-ucG3ML9dI8 .navbar-short {
  background-color: #ffffff !important;
}
.cid-ucG3ML9dI8 .navbar-short .container,
.cid-ucG3ML9dI8 .navbar-short .container-fluid {
  min-height: 85px;
}
.cid-ucG3ML9dI8 .navbar-short .container:before,
.cid-ucG3ML9dI8 .navbar-short .container-fluid:before {
  display: none;
}
.cid-ucG3ML9dI8 .navbar-short .navbar-brand {
  min-height: 85px !important;
}
.cid-ucG3ML9dI8 .mbr-section-btn .btn {
  padding: 10px 25px;
  min-height: 48px;
}
.cid-ucG3ML9dI8 .border-item {
  position: absolute;
  bottom: -1px;
  display: none;
  width: 100%;
  background-color: transparent;
  height: 2px;
  background-color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG3ML9dI8 .border-item {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-ucG3ML9dI8 .container,
  .cid-ucG3ML9dI8 .container-fluid {
    min-height: 85px;
  }
  .cid-ucG3ML9dI8 .navbar-brand {
    min-height: 85px;
  }
  .cid-ucG3ML9dI8 .navbar-short .container,
  .cid-ucG3ML9dI8 .navbar-short .container-fluid {
    min-height: 75px;
  }
  .cid-ucG3ML9dI8 .navbar-short .navbar-brand {
    min-height: 75px !important;
  }
  .cid-ucG3ML9dI8 .navbar.opened {
    background: rgba(255, 255, 255, 0) !important;
  }
  .cid-ucG3ML9dI8 .navbar.navbar-short {
    background-color: #ffffff !important;
  }
  .cid-ucG3ML9dI8 .navbar-collapse {
    position: relative;
    order: 5;
    z-index: 5 !important;
    padding-bottom: 10px;
  }
  .cid-ucG3ML9dI8 .navbar-nav .nav-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }
  .cid-ucG3ML9dI8 .mbr-section-btn {
    text-align: left;
  }
  .cid-ucG3ML9dI8 .border-item {
    position: relative;
    bottom: 0;
    margin-top: auto;
  }
  .cid-ucG3ML9dI8 .border-item:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw;
    height: 100vw;
    background: #ffffff;
    z-index: 4;
    transition: 0.1s all;
  }
}
.cid-ucG3MNfYpD {
  background-image: url("../../../assets/images/dsc03850-1800x1350.jpg");
}
.cid-ucG3MNfYpD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MNfYpD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MNfYpD .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucG3MNfYpD .col-title {
    padding-top: 0;
  }
}
.cid-ucG3MNfYpD .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucG3MNfYpD .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucG3MNfYpD .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucG3MNfYpD .col-text {
    padding-top: 20px;
  }
}
.cid-ucG3MNfYpD .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucG3MNfYpD .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG3MNfYpD .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucG3MNfYpD .mbr-text {
  color: #131313;
}
.cid-ucG3MNfYpD .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucG3MNfYpD .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucG3MNfYpD .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucG3MNfYpD .mbr-text,
.cid-ucG3MNfYpD .mbr-section-btn {
  color: #ffffff;
}
.cid-ucG3MOnXOY {
  background-color: #533633 !important;
  border: 18px solid #533633;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-ucG3MOnXOY {
    border: 8px solid #533633;
    margin-top: -8px;
  }
}
.cid-ucG3MOnXOY .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-ucG3MOnXOY section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-ucG3MOnXOY .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ucG3MOnXOY .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MOnXOY .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucG3MOnXOY .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ucG3MOnXOY .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucG3MOnXOY .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ucG3MOnXOY .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-ucG3MOnXOY .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucG3MOnXOY .title-wrapper .title-wrap .list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}
.cid-ucG3MOnXOY .title-wrapper .title-wrap .list .item-wrap {
  margin-bottom: 16px;
}
.cid-ucG3MOnXOY .title-wrapper .title-wrap .list .item-wrap::marker {
  color: #ed2c03;
}
.cid-ucG3MOnXOY .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ucG3MOnXOY .image-wrapper {
    height: auto;
  }
}
.cid-ucG3MOnXOY .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 1.2em;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-ucG3MOnXOY .image-wrapper img {
    height: 300px;
    margin: 0;
  }
}
.cid-ucG3MOnXOY .mbr-section-title {
  color: #ed2c03;
}
.cid-ucG3MOnXOY .list {
  color: #000000;
}
.cid-ucG3MPDWLW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ucG3MPDWLW .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #fc7942;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ucG3MPDWLW .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ucG3MPDWLW .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ucG3MPDWLW .main-title.display-2 {
  line-height: 1.375;
}
.cid-ucG3MPDWLW .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ucG3MPDWLW .mbr-text {
  color: #606060;
}
.cid-ucG3MPDWLW .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ucG3MPDWLW .mbr-section-btn {
  margin-top: 24px;
}
.cid-ucG3MPDWLW .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ucG3MPDWLW .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ucG3MPDWLW .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ucG3MPDWLW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MPDWLW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MPDWLW .mbr-text,
.cid-ucG3MPDWLW .mbr-section-btn {
  color: #000000;
}
.cid-ucG3MQRUk8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG3MQRUk8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MQRUk8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MQRUk8 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucG3MQRUk8 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MQRUk8 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucG3MQRUk8 .mbr-section-title {
  color: #131313;
}
.cid-ucG3MQRUk8 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucG3MQRUk8 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-ucG3MQRUk8 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucG3MQRUk8 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-ucG3MQRUk8 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-ucG3MQRUk8 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucG3MQRUk8 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-ucG3MQRUk8 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-ucG3MQRUk8 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-ucG3MQRUk8 .card-title {
  color: #131313;
}
.cid-ucG3MQRUk8 .card-text {
  margin-top: 10px;
  color: #131313;
  text-align: center;
}
.cid-ucG3MQRUk8 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-ucG3MQRUk8 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MQRUk8 .card-link {
    margin-top: 15px;
  }
}
.cid-ucG3MQRUk8 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucG3MQRUk8 .card-title,
.cid-ucG3MQRUk8 .iconfont-wrapper {
  text-align: center;
}
.cid-ucG3MSnG9S {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #533633;
}
.cid-ucG3MSnG9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MSnG9S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MSnG9S .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-ucG3MSnG9S .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-ucG3MSnG9S .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucG3MSnG9S .item-img {
    width: 100%;
  }
}
.cid-ucG3MSnG9S .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucG3MSnG9S .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucG3MSnG9S .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucG3MSnG9S .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucG3MSnG9S .card-title {
  color: #ffffff;
}
.cid-ucG3MSnG9S .card-text {
  margin-top: 25px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG3MSnG9S .card-text {
    margin-top: 20px;
  }
}
.cid-ucG3MSnG9S .mbr-section-btn {
  margin-top: 34px;
}
@media (max-width: 991px) {
  .cid-ucG3MSnG9S .mbr-section-btn {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MSnG9S .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-ucG3MSnG9S .card-text,
.cid-ucG3MSnG9S .mbr-section-btn {
  color: #ffffff;
}
.cid-ucG3MTHChd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucG3MTHChd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MTHChd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MTHChd .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucG3MTHChd .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ucG3MTHChd .container {
    padding: 0 24px;
  }
}
.cid-ucG3MTHChd .row {
  justify-content: center;
}
.cid-ucG3MTHChd .content-wrapper {
  border-radius: 40px;
  background-color: #533633;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-ucG3MTHChd .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ucG3MTHChd .content-wrapper {
    padding: 32px;
  }
}
.cid-ucG3MTHChd .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ucG3MTHChd .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-ucG3MTHChd .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucG3MTHChd .mbr-text {
  color: #ffffff;
}
.cid-ucG3MUXooJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG3MUXooJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MUXooJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MUXooJ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-ucG3MUXooJ .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-ucG3MUXooJ .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-ucG3MUXooJ .mbr-section-title {
  color: #131313;
}
.cid-ucG3MUXooJ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucG3MUXooJ .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-ucG3MUXooJ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-ucG3MUXooJ .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-ucG3MUXooJ .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MUXooJ .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-ucG3MUXooJ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucG3MUXooJ .card-title {
  color: #131313;
  text-align: center;
}
.cid-ucG3MUXooJ .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-ucG3MUXooJ .price-box {
    margin-top: 5px;
  }
}
.cid-ucG3MUXooJ .number-text {
  color: #FC7942;
}
.cid-ucG3MUXooJ .stint-text {
  color: #FC7942;
}
.cid-ucG3MUXooJ .card-text {
  margin-top: 20px;
  color: #131313;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ucG3MUXooJ .card-text {
    margin-top: 10px;
  }
}
.cid-ucG3MUXooJ .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-ucG3MUXooJ .list-box {
    margin-top: 24px;
  }
}
.cid-ucG3MUXooJ .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-ucG3MUXooJ .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-ucG3MUXooJ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fc7942;
}
.cid-ucG3MUXooJ .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-ucG3MUXooJ .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-ucG3MUXooJ .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-ucG3MUXooJ .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-ucG3MUXooJ .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-ucG3MUXooJ .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-ucG3MX8dIX {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-ucG3MX8dIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MX8dIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MX8dIX .mbr-section-title {
  color: #131313;
}
.cid-ucG3MX8dIX .mbr-section-subtitle {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucG3MX8dIX .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-ucG3MX8dIX .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-ucG3MX8dIX .mbr-text {
    margin-top: 18px;
  }
}
.cid-ucG3MX8dIX .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-ucG3MX8dIX .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MX8dIX .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucG3MYr2G7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG3MYr2G7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MYr2G7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3MYr2G7 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-ucG3MYr2G7 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MYr2G7 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-ucG3MYr2G7 .mbr-section-title {
  color: #131313;
}
.cid-ucG3MYr2G7 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-ucG3MYr2G7 .items-row {
  row-gap: 40px;
  margin: 5px -20px 0 !important;
}
@media (max-width: 767px) {
  .cid-ucG3MYr2G7 .items-row {
    row-gap: 30px;
    margin: 0 -15px !important;
  }
}
.cid-ucG3MYr2G7 .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
  padding: 0 20px !important;
}
.cid-ucG3MYr2G7 .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (min-width: 992px) {
  .cid-ucG3MYr2G7 .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-ucG3MYr2G7 .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 674/calc(145 * 3);
}
.cid-ucG3MYr2G7 .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 130px;
}
@media (max-width: 1199px) {
  .cid-ucG3MYr2G7 .item-content {
    margin-top: 0;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3MYr2G7 .item-content {
    margin-top: 20px;
  }
}
.cid-ucG3MYr2G7 .card-title {
  color: #131313;
}
.cid-ucG3MYr2G7 .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-ucG3MYr2G7 .link-text {
  margin-top: 14px;
  color: #FC7942;
}
@media (max-width: 991px) {
  .cid-ucG3MYr2G7 .link-text {
    margin-top: 10px;
  }
}
.cid-ucG3MYr2G7 .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-ucG3MYr2G7 .mbr-section-btn {
  margin-top: 5px;
}
.cid-ucG3MYr2G7 .card-text,
.cid-ucG3MYr2G7 .mbr-section-btn {
  text-align: center;
}
.cid-ucG3MZYghh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ucG3MZYghh::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #ffffff -10%, transparent 70%);
}
.cid-ucG3MZYghh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3MZYghh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-ucG3MZYghh .container {
    padding: 0 16px;
  }
}
.cid-ucG3MZYghh .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ucG3MZYghh .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-ucG3MZYghh .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ucG3MZYghh .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucG3MZYghh .mbr-text {
  color: #000000;
}
.cid-ucG3N19gWT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG3N19gWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3N19gWT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3N19gWT .col-title {
  padding-top: 5.5%;
}
@media (max-width: 991px) {
  .cid-ucG3N19gWT .col-title {
    padding-top: 0;
  }
}
.cid-ucG3N19gWT .col-text {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .cid-ucG3N19gWT .col-text {
    padding-left: 110px !important;
  }
}
@media (max-width: 1199px) {
  .cid-ucG3N19gWT .col-text {
    padding-top: 70px;
  }
}
@media (max-width: 991px) {
  .cid-ucG3N19gWT .col-text {
    padding-top: 20px;
  }
}
.cid-ucG3N19gWT .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-ucG3N19gWT .mbr-section-subtitle {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-ucG3N19gWT .mbr-section-subtitle {
    margin-top: 16px;
  }
}
.cid-ucG3N19gWT .mbr-text {
  color: #131313;
}
.cid-ucG3N19gWT .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .cid-ucG3N19gWT .mbr-section-btn {
    margin-top: 14px;
  }
}
.cid-ucG3N19gWT .mbr-section-btn .btn-white:hover {
  color: #fc7942 !important;
}
.cid-ucG3N19gWT .mbr-text,
.cid-ucG3N19gWT .mbr-section-btn {
  color: #ffffff;
}
.cid-ucG3N2pVO3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucG3N2pVO3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3N2pVO3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucG3N2pVO3 .container {
    padding: 0 20px;
  }
}
.cid-ucG3N2pVO3 .row {
  margin: 0;
}
.cid-ucG3N2pVO3 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-ucG3N2pVO3 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ucG3N2pVO3 .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-ucG3N2pVO3 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-ucG3N2pVO3 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-ucG3N2pVO3 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-ucG3N2pVO3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ucG3N8ALsp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG3N8ALsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3N8ALsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3N8ALsp .row {
  margin: 0 !important;
}
.cid-ucG3N8ALsp .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ucG3N8ALsp .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ucG3N8ALsp .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-ucG3N8ALsp .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ucG3N8ALsp .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucG3N8ALsp .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ucG3N8ALsp .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-ucG3N8ALsp .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-ucG3N8ALsp .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-ucG3N8ALsp .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-ucG3N8ALsp .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-ucG3N8ALsp .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #ffffff;
  margin-left: 0.5rem;
}
.cid-ucG3N8ALsp .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #ffffff;
  font-weight: 900;
}
.cid-ucG3N8ALsp .panel-group {
  border: none;
}
.cid-ucG3N8ALsp .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #ffffff;
}
.cid-ucG3N8ALsp .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ucG3N8ALsp .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ucG3N8ALsp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-ucG3N8ALsp .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-ucG3N8ALsp .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-ucG3N8ALsp .panel-title-edit {
  color: #ffffff;
}
.cid-ucG3N8ALsp .panel-body {
  padding: 0 0 20px;
}
.cid-ucG3N8ALsp .panel-text {
  color: #131313;
  margin: 0;
}
.cid-ucG3Nf6puV {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-ucG3Nf6puV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3Nf6puV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3Nf6puV .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ucG3Nf6puV .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-ucG3Nf6puV .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-ucG3Nf6puV .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-ucG3Nf6puV .content-container {
    padding: 0 20px;
  }
}
.cid-ucG3Nf6puV .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-ucG3Nf6puV .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-ucG3Nf6puV .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .image-wrapper img {
    max-width: 100%;
  }
}
.cid-ucG3Nf6puV .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-ucG3Nf6puV .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ucG3Nf6puV .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .mbr-text {
    text-align: center !important;
  }
}
.cid-ucG3Nf6puV .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-ucG3Nf6puV .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucG3Nf6puV .mbr-text,
.cid-ucG3Nf6puV .mbr-section-btn {
  color: #000000;
}
.cid-ucG3NhI634 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #533633;
}
.cid-ucG3NhI634 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3NhI634 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3NhI634 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucG3NhI634 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucG3NhI634 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucG3NhI634 .container {
    padding: 0 16px;
  }
}
.cid-ucG3NhI634 .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucG3NhI634 .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucG3NhI634 .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-ucG3NhI634 .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-ucG3NhI634 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-ucG3NhI634 .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ucG3NhI634 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-ucG3NhI634 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-ucG3NhI634 .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-ucG3NhI634 .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-ucG3NhI634 .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-ucG3NhI634 .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-ucG3NhI634 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-ucG3NhI634 .mbr-section-title {
  color: #ffffff;
}
.cid-ucG3NhI634 .panel-number {
  color: #ffffff;
}
.cid-ucG3NhI634 .panel-title-edit {
  color: #ffffff;
}
.cid-ucG3NhI634 .panel-text {
  color: #ffffff;
}
.cid-ucG3Nl44Dv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ucG3Nl44Dv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3Nl44Dv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3Nl44Dv .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-ucG3Nl44Dv .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucG3Nl44Dv .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucG3Nl44Dv .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-ucG3Nl44Dv .container {
    padding: 0 16px;
  }
}
.cid-ucG3Nl44Dv .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-ucG3Nl44Dv .google-map iframe {
    height: 350px;
  }
}
.cid-ucG3NqmIc2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #533633;
}
.cid-ucG3NqmIc2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucG3NqmIc2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucG3NqmIc2 .row {
  justify-content: space-between;
}
.cid-ucG3NqmIc2 .mbr-section-title {
  margin: 0;
  color: #E0BDB6;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucG3NqmIc2 .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ucG3NqmIc2 .mbr-text {
  margin-bottom: 10px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucG3NqmIc2 .mbr-section-btn {
    margin-bottom: 20px;
  }
}
.cid-ucG3NqmIc2 .list {
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
  color: #ffffff;
}
.cid-ucG3NqmIc2 .list li {
  margin-bottom: 25px;
}
.cid-ucG3NqmIc2 .list li:last-child {
  margin-bottom: 0;
}
.cid-ucG3NqmIc2 .mbr-desc {
  margin-bottom: 8px;
}
.cid-ucG3NqmIc2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucG3NqmIc2 .social-row .soc-item {
  margin: 9px 9px 0 0;
}
.cid-ucG3NqmIc2 .social-row .soc-item a:hover .mbr-iconfont {
  border-color: #5189b8;
}
.cid-ucG3NqmIc2 .social-row .soc-item a .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  font-size: 18px;
  border-radius: 100%;
  border: 1px solid #e0bdb6;
  transition: all .3s ease;
}
.cid-ucG3NqmIc2 .copyright {
  margin: 110px 0 0 0;
  padding: 17px 70px;
  position: relative;
  color: #ffffff;
  text-align: center;
}
.cid-ucG3NqmIc2 .copyright:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100rem;
  display: block;
  min-width: 1000vh;
  height: 1px;
  background-color: #e0bdb6;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-ucG3NqmIc2 .copyright {
    margin-top: 50px;
    padding: 17px 24px;
  }
}
.cid-ucG3NqmIc2 .mbr-desc,
.cid-ucG3NqmIc2 .mbr-iconfont {
  color: #ffffff;
}
