body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'bbttf';
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'bbttf';
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'bbttf';
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'bbttf';
  font-size: 1.7rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'bbttf';
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #c19b76 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #730707 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #730707 !important;
  border-color: #730707 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #2b0303 !important;
  border-color: #2b0303 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #2b0303 !important;
  border-color: #2b0303 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #906841 !important;
  color: #906841 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #130101 !important;
  color: #130101 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #730707 !important;
  border-color: #730707 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #730707 !important;
  border-color: #730707 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c19b76 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #730707 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #906841 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #130101 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #709faf;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #730707;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c19b76;
  border-color: #c19b76;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c19b76;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9dbce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #eb0e0e;
}
/* Scroll to top button*/
.form-control {
  font-family: 'bbttf';
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #c19b76;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c19b76;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c19b76;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c19b76;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c19b76;
  border-bottom-color: #c19b76;
}
.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: #c19b76 !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: #333333 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23c19b76' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-r2waUgm2sq .nav-item:focus,
.cid-r2waUgm2sq .nav-link:focus {
  outline: none;
}
.cid-r2waUgm2sq a.nav-link:focus {
  color: #c19b76 !important;
}
.cid-r2waUgm2sq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-r2waUgm2sq .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-r2waUgm2sq .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-r2waUgm2sq .navbar .navbar-collapse {
  justify-content: flex-start;
  z-index: 1;
  flex-basis: auto;
  flex-grow: 0;
}
.cid-r2waUgm2sq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-r2waUgm2sq .navbar.collapsed .navbar-collapse {
  flex-basis: 100%;
}
.cid-r2waUgm2sq .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-r2waUgm2sq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-r2waUgm2sq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-r2waUgm2sq .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-r2waUgm2sq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-r2waUgm2sq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-r2waUgm2sq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-r2waUgm2sq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-r2waUgm2sq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-r2waUgm2sq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-r2waUgm2sq .navbar .navbar-collapse {
    flex-basis: 100%;
  }
  .cid-r2waUgm2sq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-r2waUgm2sq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-r2waUgm2sq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-r2waUgm2sq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-r2waUgm2sq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-r2waUgm2sq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-r2waUgm2sq .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-r2waUgm2sq .navbar .navbar-brand {
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-r2waUgm2sq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-r2waUgm2sq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-r2waUgm2sq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-r2waUgm2sq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-r2waUgm2sq .navbar-brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-r2waUgm2sq .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-r2waUgm2sq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-r2waUgm2sq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-r2waUgm2sq .dropdown-item.active,
.cid-r2waUgm2sq .dropdown-item:active {
  background-color: transparent;
}
.cid-r2waUgm2sq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-r2waUgm2sq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-r2waUgm2sq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-r2waUgm2sq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-r2waUgm2sq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-r2waUgm2sq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-r2waUgm2sq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-r2waUgm2sq .navbar-buttons {
  text-align: center;
}
.cid-r2waUgm2sq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-r2waUgm2sq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-r2waUgm2sq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-r2waUgm2sq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-r2waUgm2sq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-r2waUgm2sq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-r2waUgm2sq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r2waUgm2sq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-r2waUgm2sq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-r2waUgm2sq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-r2waUgm2sq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-r2waUgm2sq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cid-r2waUgm2sq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-r2waUgm2sq .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-r2waUgm2sq .icons-menu span {
  font-size: 20px;
  color: #333333;
}
.cid-r2waUgm2sq .nav-link:hover,
.cid-r2waUgm2sq .icons-menu .mbr-iconfont:hover {
  color: #c19b76 !important;
}
.cid-r2waUgm2sq .dropdown-item:hover {
  color: #c19b76 !important;
}
.cid-r2waUgm2sq .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #c19b76;
  transition: width 0.3s ease-in;
}
.cid-r2waUgm2sq .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-r2waUgm2sq .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-r2waUgm2sq .navbar-expand-lg {
    justify-content: space-between;
  }
  .cid-r2waUgm2sq .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-r2waUgm2sq .dropdown-menu {
    top: 100%;
  }
  .cid-r2waUgm2sq .dropdown-item {
    border-bottom: 1px solid #a3a3a3;
    box-shadow: 0px 2px 5px #efefef;
    background: #efefef !important;
  }
  .cid-r2waUgm2sq .dropdown-item:hover {
    background: #d6d6d6 !important;
  }
  .cid-r2waUgm2sq .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-r2waUgm2sq .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-r9Yi8czJdb {
  background: #ffffff;
}
.cid-r9Yi8czJdb .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-r9Yi8czJdb .image-block img {
  width: 100%;
}
.cid-r9Yi8czJdb .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  top: 0;
}
.cid-r9Yi8czJdb .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rdgpe3zMKs {
  background: #ffffff;
}
.cid-rdgpe3zMKs .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rdgpe3zMKs .image-block img {
  width: 100%;
}
.cid-rdgpe3zMKs .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rdgpe3zMKs .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2crngLr {
  background: #ffffff;
}
.cid-rMm2crngLr .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2crngLr .image-block img {
  width: 100%;
}
.cid-rMm2crngLr .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2crngLr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2iPyQeL {
  background: #ffffff;
}
.cid-rMm2iPyQeL .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2iPyQeL .image-block img {
  width: 100%;
}
.cid-rMm2iPyQeL .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2iPyQeL .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm3OGS3y7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #730707;
}
@media (max-width: 767px) {
  .cid-rMm3OGS3y7 .first-col {
    padding-bottom: 1rem;
  }
}
.cid-rMm2jnKJCx {
  background: #ffffff;
}
.cid-rMm2jnKJCx .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2jnKJCx .image-block img {
  width: 100%;
}
.cid-rMm2jnKJCx .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2jnKJCx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2r6YfpI {
  background: #ffffff;
}
.cid-rMm2r6YfpI .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2r6YfpI .image-block img {
  width: 100%;
}
.cid-rMm2r6YfpI .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2r6YfpI .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rdh7cABuGr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #730707;
}
@media (max-width: 767px) {
  .cid-rdh7cABuGr .first-col {
    padding-bottom: 1rem;
  }
}
.cid-rMm2rVIXV6 {
  background: #ffffff;
}
.cid-rMm2rVIXV6 .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2rVIXV6 .image-block img {
  width: 100%;
}
.cid-rMm2rVIXV6 .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2rVIXV6 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2svJLev {
  background: #ffffff;
}
.cid-rMm2svJLev .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2svJLev .image-block img {
  width: 100%;
}
.cid-rMm2svJLev .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2svJLev .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2NP4Byk {
  background: #ffffff;
}
.cid-rMm2NP4Byk .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2NP4Byk .image-block img {
  width: 100%;
}
.cid-rMm2NP4Byk .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2NP4Byk .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2SnkWhr {
  background: #ffffff;
}
.cid-rMm2SnkWhr .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2SnkWhr .image-block img {
  width: 100%;
}
.cid-rMm2SnkWhr .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2SnkWhr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm2SX2EbT {
  background: #ffffff;
}
.cid-rMm2SX2EbT .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2SX2EbT .image-block img {
  width: 100%;
}
.cid-rMm2SX2EbT .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2SX2EbT .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rMm400Xaju {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #730707;
}
@media (max-width: 767px) {
  .cid-rMm400Xaju .first-col {
    padding-bottom: 1rem;
  }
}
.cid-rMm2YW5gHT {
  background: #ffffff;
}
.cid-rMm2YW5gHT .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rMm2YW5gHT .image-block img {
  width: 100%;
}
.cid-rMm2YW5gHT .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-rMm2YW5gHT .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-r3Kgs96woZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #730707;
}
.cid-r3Kgs96woZ .card {
  flex-direction: row;
  justify-content: center;
}
.cid-r3Kgs96woZ .card .card-img {
  width: 20%;
  display: flex;
  flex-direction: column;
}
.cid-r3Kgs96woZ .card .card-box {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-r3Kgs96woZ .card .card-img span {
  color: #878787;
  font-size: 60px;
}
.cid-r3Kgs96woZ .mbr-text {
  color: #878787;
}
@media (max-width: 767px) {
  .cid-r3Kgs96woZ .card {
    flex-direction: column;
  }
  .cid-r3Kgs96woZ .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-r3Kgs96woZ .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-r3Kgs96woZ .card .card-box .card-title,
  .cid-r3Kgs96woZ .card .card-box .mbr-text,
  .cid-r3Kgs96woZ .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-r3Kgs96woZ .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-r3Kgs96woZ .card .card-img {
    text-align: right !important;
  }
}
.cid-r3Kgs96woZ .link B {
  color: #c19b76;
}
.cid-r3Kgs96woZ .mbr-text,
.cid-r3Kgs96woZ .link {
  color: #ffffff;
}
.cid-r3Kgs96woZ .card-title,
.cid-r3Kgs96woZ .card-img {
  color: #ffffff;
}
.cid-r9YsRIHkRR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #730707;
}
.cid-r9YsRIHkRR .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-r9YsRIHkRR .mbr-text {
  padding: 2rem 0;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-r9YsRIHkRR .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-r9YsRIHkRR .mbr-text B {
  color: #ffffff;
}
.cid-r39VUbEjrQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-r39VUbEjrQ .google-map {
  width: 100%;
  height: 25rem;
}
.cid-r39VUbEjrQ .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-r39VYqgFAt {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-r39VYqgFAt .mbr-iconfont-social {
  font-size: 32px;
  color: #333333;
  margin-left: .5rem;
  margin-right: .5rem;
}
.cid-r39VYqgFAt .mbr-iconfont-social:hover {
  color: #b7b6b6;
}
.cid-r39VYqgFAt .social-list a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cid-r39VYqgFAt .mbr-iconfont-social {
    margin-left: .2rem;
    margin-right: .2rem;
  }
}
.cid-r39VVqvcrW {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #730707;
}
.cid-r39VVqvcrW .first-column {
  display: inline-flex;
  align-items: center;
}
.cid-r39VVqvcrW .second-column img {
  width: 10%;
  object-fit: cover;
  object-position: center center;
}
.cid-r39VVqvcrW .mbr-list {
  margin: 0;
}
.cid-r39VVqvcrW .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-r39VVqvcrW .first-column {
    justify-content: center;
    padding-bottom: 1rem;
  }
  .cid-r39VVqvcrW .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-r39VVqvcrW .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-r39VX0ttOS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #730707;
}
