body {
  font-family: Be Vietnam;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Dosis', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 3.84rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 2.56rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.08rem !important;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #c8b3a0 !important;
}
.bg-success {
  background-color: #d2cec9 !important;
}
.bg-info {
  background-color: #555845 !important;
}
.bg-warning {
  background-color: #5b686b !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c8b3a0 !important;
  border-color: #c8b3a0 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ac8c70 !important;
  border-color: #ac8c70 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ac8c70 !important;
  border-color: #ac8c70 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #555845 !important;
  border-color: #555845 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2c2d23 !important;
  border-color: #2c2d23 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2c2d23 !important;
  border-color: #2c2d23 !important;
}
.btn-info,
.btn-info:active {
  background-color: #555845 !important;
  border-color: #555845 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2c2d23 !important;
  border-color: #2c2d23 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2c2d23 !important;
  border-color: #2c2d23 !important;
}
.btn-success,
.btn-success:active {
  background-color: #d2cec9 !important;
  border-color: #d2cec9 !important;
  color: #554f47 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #554f47 !important;
  background-color: #afa89f !important;
  border-color: #afa89f !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #554f47 !important;
  background-color: #afa89f !important;
  border-color: #afa89f !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5b686b !important;
  border-color: #5b686b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #384042 !important;
  border-color: #384042 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #c8b3a0;
  color: #c8b3a0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #c8b3a0;
  border-color: #c8b3a0;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c8b3a0 !important;
  border-color: #c8b3a0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #555845;
  color: #555845;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #555845;
  border-color: #555845;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #555845 !important;
  border-color: #555845 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #555845;
  color: #555845;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #555845;
  border-color: #555845;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #555845 !important;
  border-color: #555845 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2cec9;
  color: #d2cec9;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #554f47;
  background-color: #d2cec9;
  border-color: #d2cec9;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #554f47 !important;
  background-color: #d2cec9 !important;
  border-color: #d2cec9 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #5b686b;
  color: #5b686b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #5b686b;
  border-color: #5b686b;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5b686b !important;
  border-color: #5b686b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #b1a374;
  color: #b1a374;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.text-primary {
  color: #c8b3a0 !important;
}
.text-secondary {
  color: #555845 !important;
}
.text-success {
  color: #d2cec9 !important;
}
.text-info {
  color: #555845 !important;
}
.text-warning {
  color: #5b686b !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ede7e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8c9172 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffffff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #8c9172 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e9b9e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #555845;
}
.alert-warning {
  background-color: #5b686b;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c8b3a0;
  border-color: #c8b3a0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #c8b3a0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f7f4f1;
}
.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: #989c81;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9ba7aa;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
blockquote {
  border-color: #c8b3a0;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c8b3a0;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c8b3a0;
  border-bottom-color: #c8b3a0;
}
.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: #c8b3a0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #555845 !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='%23c8b3a0' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uQiulhcOXW .nav-item:focus,
.cid-uQiulhcOXW .nav-link:focus {
  outline: none;
}
.cid-uQiulhcOXW a.nav-link:focus {
  color: #c8b3a0 !important;
}
.cid-uQiulhcOXW .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #d2cec9;
  background: none;
}
.cid-uQiulhcOXW .navbar.opened {
  transition: all 0.3s;
  background: #d2cec9 !important;
}
.cid-uQiulhcOXW .navbar .dropdown-item {
  padding: 0.3rem 1.5rem;
}
.cid-uQiulhcOXW .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-uQiulhcOXW .navbar.collapsed {
  flex-direction: row!important;
}
.cid-uQiulhcOXW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQiulhcOXW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uQiulhcOXW .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-uQiulhcOXW .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-uQiulhcOXW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uQiulhcOXW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQiulhcOXW .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-uQiulhcOXW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQiulhcOXW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uQiulhcOXW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQiulhcOXW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.15rem 1.5rem;
  text-align: center;
}
.cid-uQiulhcOXW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQiulhcOXW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQiulhcOXW .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-uQiulhcOXW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uQiulhcOXW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQiulhcOXW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQiulhcOXW .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uQiulhcOXW .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-uQiulhcOXW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQiulhcOXW .navbar .dropdown-menu .dropdown-item {
    padding: 0.15rem 1.5rem;
    text-align: center;
  }
  .cid-uQiulhcOXW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-uQiulhcOXW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uQiulhcOXW .navbar.navbar-short {
  background: #d2cec9 !important;
  min-height: 60px;
}
.cid-uQiulhcOXW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uQiulhcOXW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQiulhcOXW .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQiulhcOXW .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-uQiulhcOXW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-uQiulhcOXW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQiulhcOXW .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uQiulhcOXW .dropdown-item.active,
.cid-uQiulhcOXW .dropdown-item:active {
  background-color: transparent;
}
.cid-uQiulhcOXW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQiulhcOXW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQiulhcOXW .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQiulhcOXW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-uQiulhcOXW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-uQiulhcOXW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQiulhcOXW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uQiulhcOXW .navbar-buttons {
  text-align: center;
}
.cid-uQiulhcOXW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uQiulhcOXW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #555845;
}
.cid-uQiulhcOXW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQiulhcOXW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQiulhcOXW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQiulhcOXW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQiulhcOXW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQiulhcOXW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQiulhcOXW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQiulhcOXW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQiulhcOXW .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uQiulhcOXW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-uQiulhcOXW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQiulhcOXW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uQiulhcOXW .icons-menu span {
  font-size: 20px;
  color: #555845;
}
.cid-uQiulhcOXW .nav-link:hover,
.cid-uQiulhcOXW .icons-menu .mbr-iconfont:hover {
  color: #c8b3a0 !important;
}
.cid-uQiulhcOXW .dropdown-item:hover {
  color: #c8b3a0 !important;
}
.cid-uQiulhcOXW .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #c8b3a0;
  transition: width 0.3s ease-in;
}
.cid-uQiulhcOXW .dropdown-menu {
  padding: 0;
  transition: top 0.3s;
}
.cid-uQiulhcOXW .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-uQiulhcOXW .navbar-expand-lg {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .cid-uQiulhcOXW .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-uQiulhcOXW .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-uPX011U3gR {
  display: flex;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-uPX011U3gR .mbr-overlay {
  background-color: #d2cec9;
  opacity: 0.9;
}
.cid-uPX011U3gR .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-uPX011U3gR {
    align-items: center;
  }
  .cid-uPX011U3gR .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uPX011U3gR .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uPX011U3gR {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uPX011U3gR .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uPX011U3gR .content-wrap {
    width: 100%;
  }
}
.cid-uPX011U3gR .mbr-section-title {
  text-align: left;
  color: #555845;
}
.cid-uPX011U3gR .mbr-text,
.cid-uPX011U3gR .mbr-section-btn {
  text-align: left;
  color: #555845;
}
.cid-uPX011U3gR .mbr-section-subtitle {
  color: #555845;
  text-align: left;
}
.cid-uPVkJR1vlT {
  padding-top: 120px;
  background-color: #ffffff;
}
.cid-uPVkJR1vlT .container {
  margin-bottom: 15%;
}
.cid-uPVkJR1vlT .content-container .btn-bgr {
  z-index: 0;
}
.cid-uPVkJR1vlT .container-boxes {
  padding-bottom: 90px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-uPVkJR1vlT .icon-block-top span {
  background-color: #c8b3a0;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-uPVkJR1vlT .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-uPVkJR1vlT .box-item:first-child {
  background-color: #f6f3ee;
  margin-top: -150px;
}
.cid-uPVkJR1vlT .box-item:nth-child(2) {
  background-color: #f6f3ee;
}
.cid-uPVkJR1vlT .box-item:last-child {
  background-color: #f6f3ee;
  margin-right: 0;
}
.cid-uPVkJR1vlT .mbr-text,
.cid-uPVkJR1vlT .box-item-text {
  color: #8d97ad;
}
.cid-uPVkJR1vlT .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-uPVkJR1vlT .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-uPVkJR1vlT .box-list li:last-child {
  border-bottom: none;
}
.cid-uPVkJR1vlT .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-uPVkJR1vlT .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-uPVkJR1vlT .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uPVkJR1vlT .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uPVkJR1vlT .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-uPVkJR1vlT .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-uPVkJR1vlT .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-uPVkJR1vlT .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-uPVkJR1vlT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPVkJR1vlT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPVkJR1vlT .box-item-text,
.cid-uPVkJR1vlT .mbr-section-btn {
  color: #555845;
}
.cid-uPVkJR1vlT H1 {
  color: #555845;
}
.cid-uPVkJR1vlT .mbr-text {
  color: #5b686b;
}
.cid-uPVkJR1vlT .box-item-title {
  color: #555845;
}
.cid-uPW1QY0LzT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uPW1QY0LzT H4 {
  color: #555845;
}
.cid-uPW1QY0LzT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW1QY0LzT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW1QY0LzT H3 {
  color: #5b686b;
}
.cid-uPW1QY0LzT .mbr-text,
.cid-uPW1QY0LzT .mbr-section-btn {
  color: #a15547;
}
.cid-rT67qzoRLl {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-rT67qzoRLl .row {
  flex-direction: row-reverse;
}
.cid-rT67qzoRLl img {
  width: 80%;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
}
.cid-rT67qzoRLl .card-phone {
  transition: all 0.3s;
  cursor: pointer;
  color: #555845;
}
.cid-rT67qzoRLl .card-phone:hover {
  color: #c8b3a0;
}
.cid-rT67qzoRLl .mbr-text,
.cid-rT67qzoRLl .mbr-section-btn {
  color: #555845;
  text-align: left;
}
.cid-rT67qzoRLl .card-title,
.cid-rT67qzoRLl .card-box {
  color: #555845;
}
@media (max-width: 992px) {
  .cid-rT67qzoRLl .img-col {
    margin-bottom: 3rem;
  }
}
.cid-rT67qzoRLl .mbr-section-subtitle {
  color: #555845;
  text-align: left;
}
.cid-uPViIExn6h {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-uPViIExn6h .link-wrap {
  width: 100%;
}
.cid-uPViIExn6h .link {
  display: inline-block;
}
.cid-uPViIExn6h .card-wrapper {
  background: white;
  padding: 4rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.cid-uPViIExn6h .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  padding-right: 2rem;
  font-weight: 600;
}
.cid-uPViIExn6h .link a:before {
  position: absolute;
  right: 0px;
  font-weight: 900;
  top: 55%;
  transform: translateY(-50%);
  content: "\e960";
  font-family: 'Moririse2' !important;
  color: #ffffff;
  font-size: 0.7rem;
  background: #c8b3a0;
  padding: 5px;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uPViIExn6h .link a:hover {
  text-decoration: underline;
}
.cid-uPViIExn6h .link,
.cid-uPViIExn6h .link-wrap {
  color: #0077ff;
}
.cid-uPViIExn6h .mbr-text,
.cid-uPViIExn6h .mbr-section-btn {
  color: #333333;
}
@media (max-width: 767px) {
  .cid-uPViIExn6h {
    padding-top: 40px;
  }
  .cid-uPViIExn6h .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uPViIExn6h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPViIExn6h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPViIExn6h .card-title,
.cid-uPViIExn6h .card-box {
  color: #555845;
}
.cid-uPViIExn6h .mbr-text,
.cid-uPViIExn6h .link-wrap {
  color: #5b686b;
}
.cid-uQ00aYNWx2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uQ00aYNWx2 H4 {
  color: #555845;
}
.cid-uQ00aYNWx2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQ00aYNWx2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQ00aYNWx2 H3 {
  color: #5b686b;
}
.cid-uQ00aYNWx2 .mbr-text,
.cid-uQ00aYNWx2 .mbr-section-btn {
  color: #a15547;
}
.cid-uPW0EGglkM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPW0EGglkM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW0EGglkM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW0EGglkM .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .cid-uPW0EGglkM .title-wrapper .mbr-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uPW0EGglkM .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uPW0EGglkM .items-wrapper {
  margin: 0;
}
.cid-uPW0EGglkM .items-wrapper .item {
  padding: 0;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uPW0EGglkM .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper {
  display: flex;
  padding: 0 40px 0 0;
  height: 100%;
  padding: 0 40px 40px 0;
  border-bottom: 1px solid #c8b3a0;
}
@media (max-width: 992px) {
  .cid-uPW0EGglkM .items-wrapper .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uPW0EGglkM .items-wrapper .item .item-wrapper {
    padding: 0 0 20px 0;
  }
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper .item-number {
  min-width: 70px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uPW0EGglkM .items-wrapper .item .item-wrapper .item-number {
    min-width: auto;
    margin-bottom: 10px;
  }
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper .item-content {
  width: 100%;
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uPW0EGglkM .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uPW0EGglkM .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPW0EGglkM .mbr-section-title {
  color: #093388;
}
.cid-uPW0EGglkM .item-number {
  color: #555845;
}
.cid-uPW0EGglkM .item-title {
  color: #093388;
}
.cid-uPW0EGglkM .item-text {
  color: #58595b;
}
.cid-uPW0EGglkM .item-title,
.cid-uPW0EGglkM .mbr-section-btn {
  color: #555845;
}
.cid-uPW0EGglkM .item-text,
.cid-uPW0EGglkM .text-wrapper {
  color: #465052;
}
.cid-uPX7qdSo4e {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-uPX7qdSo4e .carousel {
  z-index: 0;
}
.cid-uPX7qdSo4e .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uPX7qdSo4e .carousel-item.active,
.cid-uPX7qdSo4e .carousel-item-next,
.cid-uPX7qdSo4e .carousel-item-prev {
  display: flex;
}
.cid-uPX7qdSo4e .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-uPX7qdSo4e .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-uPX7qdSo4e .line {
  width: 100px;
  height: 1px;
  background: #c8b3a0;
}
.cid-uPX7qdSo4e .line1 {
  margin-left: -2rem;
}
.cid-uPX7qdSo4e .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-uPX7qdSo4e .carousel-controls a {
  font-size: 2rem;
}
.cid-uPX7qdSo4e .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #555845;
  background: transparent;
  opacity: 0.5;
}
.cid-uPX7qdSo4e .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-uPX7qdSo4e ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-uPX7qdSo4e .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #555845;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-uPX7qdSo4e .carousel-indicators .active {
  opacity: 1;
}
.cid-uPX7qdSo4e .user_text {
  color: #5b686b;
}
.cid-uPX7qdSo4e .user_desk {
  color: #767676;
}
.cid-uPX7qdSo4e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPX7qdSo4e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPX7qdSo4e .title,
.cid-uPX7qdSo4e .line-align {
  color: #555845;
}
.cid-uPWGVbv9Lx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uPWGVbv9Lx .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-uPWGVbv9Lx .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uPWGVbv9Lx .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uPWGVbv9Lx .form-group {
  padding-right: 0;
}
.cid-uPWGVbv9Lx .card {
  padding: 3rem 8rem;
}
.cid-uPWGVbv9Lx .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-uPWGVbv9Lx .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-uPWGVbv9Lx .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uPWGVbv9Lx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPWGVbv9Lx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPWGVbv9Lx .map-placeholder {
  display: none;
}
.cid-uPWGVbv9Lx .btn-primary {
  border: 1px solid #c8b3a0 !important;
}
.cid-uPWGVbv9Lx .btn-primary:hover {
  border: 1px solid #c8b3a0 !important;
}
.cid-uPWGVbv9Lx .stripe {
  border-bottom: 1px solid #d2cec9 !important;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uPWGVbv9Lx .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uPWGVbv9Lx .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #c8b3a0 !important;
  width: 85%;
}
.cid-uPWGVbv9Lx .mbr-text {
  color: #444;
}
.cid-uPWGVbv9Lx h5 {
  margin-bottom: 0;
}
.cid-uPWGVbv9Lx .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uPWGVbv9Lx .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uPWGVbv9Lx .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uPWGVbv9Lx .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uPWGVbv9Lx .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uPWGVbv9Lx .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uPWGVbv9Lx .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uPWGVbv9Lx .social-list a:hover {
  opacity: 0.4;
}
.cid-uPWGVbv9Lx .media-container-row > div {
  padding: 0px;
}
.cid-uPWGVbv9Lx .text2 {
  color: #5b686b;
  text-align: left;
}
.cid-uPWGVbv9Lx .group-title {
  text-align: left;
  color: #555845;
  padding-bottom: 0.2rem;
}
.cid-uPWGVbv9Lx .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-uPWGVbv9Lx .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uPWGVbv9Lx .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uPWGVbv9Lx h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uPWGVbv9Lx .form-group {
    max-width: 180px;
  }
  .cid-uPWGVbv9Lx .card {
    padding: 2rem 1rem;
  }
}
.cid-uPWGVbv9Lx .links span {
  color: #9e9e9e;
}
.cid-uPWGVbv9Lx .logo-title,
.cid-uPWGVbv9Lx .logo-sub-title {
  text-align: center;
}
.cid-uPWGVbv9Lx .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uPWGVbv9Lx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPWGVbv9Lx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPX2u63Hzv {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-home-2-2000x1333.webp");
}
.cid-uPX2u63Hzv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPX2u63Hzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPX2u63Hzv .content-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
.cid-uPX2u63Hzv .content-wrapper .logo-wrapper img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
  display: inline-flex;
}
.cid-uPX2u63Hzv .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uPX2u63Hzv .mbr-section-title {
  color: #191c25;
}
.cid-uPX2u63Hzv .mbr-copy {
  color: #555845;
  text-align: center;
}
.cid-uPX2u63Hzv .mbr-section-title,
.cid-uPX2u63Hzv .logo-wrapper {
  text-align: center;
  color: #555845;
}
.cid-uRTNlHeTuA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uRTNlHeTuA .listico {
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-uRTNlHeTuA .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uRTNlHeTuA .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uRTNlHeTuA .form-group {
  padding-right: 0;
}
.cid-uRTNlHeTuA .card {
  padding: 3rem 8rem;
}
.cid-uRTNlHeTuA .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-uRTNlHeTuA .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-uRTNlHeTuA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uRTNlHeTuA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uRTNlHeTuA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uRTNlHeTuA .map-placeholder {
  display: none;
}
.cid-uRTNlHeTuA .btn-primary {
  border: 1px solid #c8b3a0 !important;
}
.cid-uRTNlHeTuA .btn-primary:hover {
  border: 1px solid #c8b3a0 !important;
}
.cid-uRTNlHeTuA .stripe {
  border-bottom: 1px solid #d2cec9 !important;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uRTNlHeTuA .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uRTNlHeTuA .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #c8b3a0 !important;
  width: 85%;
}
.cid-uRTNlHeTuA .mbr-text {
  color: #444;
}
.cid-uRTNlHeTuA h5 {
  margin-bottom: 0;
}
.cid-uRTNlHeTuA .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uRTNlHeTuA .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uRTNlHeTuA .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uRTNlHeTuA .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uRTNlHeTuA .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uRTNlHeTuA .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uRTNlHeTuA .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uRTNlHeTuA .social-list a:hover {
  opacity: 0.4;
}
.cid-uRTNlHeTuA .media-container-row > div {
  padding: 0px;
}
.cid-uRTNlHeTuA .text2 {
  color: #5b686b;
  text-align: left;
}
.cid-uRTNlHeTuA .group-title {
  text-align: left;
  color: #555845;
  padding-bottom: 0.2rem;
}
.cid-uRTNlHeTuA .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-uRTNlHeTuA .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uRTNlHeTuA .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uRTNlHeTuA h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uRTNlHeTuA .form-group {
    max-width: 180px;
  }
  .cid-uRTNlHeTuA .card {
    padding: 2rem 1rem;
  }
}
.cid-uRTNlHeTuA .links span {
  color: #9e9e9e;
}
.cid-uRTNlHeTuA .logo-title,
.cid-uRTNlHeTuA .logo-sub-title {
  text-align: center;
}
.cid-uRTNlHeTuA .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uRTNlHeTuA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRTNlHeTuA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRTNlHD91h {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-home-2-2000x1333.webp");
}
.cid-uRTNlHD91h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRTNlHD91h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRTNlHD91h .content-wrapper .logo-wrapper {
  margin-bottom: 32px;
}
.cid-uRTNlHD91h .content-wrapper .logo-wrapper img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
  display: inline-flex;
}
.cid-uRTNlHD91h .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uRTNlHD91h .mbr-section-title {
  color: #191c25;
}
.cid-uRTNlHD91h .mbr-copy {
  color: #555845;
  text-align: center;
}
.cid-uRTNlHD91h .mbr-section-title,
.cid-uRTNlHD91h .logo-wrapper {
  text-align: center;
  color: #555845;
}
