body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- 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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((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: #e6c8ab !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #e26c5a !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: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #e6c8ab !important;
  border-color: #e6c8ab !important;
  color: #714821 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #714821 !important;
  background-color: #d4a170 !important;
  border-color: #d4a170 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #714821 !important;
  background-color: #d4a170 !important;
  border-color: #d4a170 !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: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !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: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #cf955c !important;
  color: #cf955c !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #714821 !important;
  background-color: #e6c8ab !important;
  border-color: #e6c8ab !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #714821 !important;
  background-color: #e6c8ab !important;
  border-color: #e6c8ab !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: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !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: #000000 !important;
}
.text-success {
  color: #e6c8ab !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #e26c5a !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: #cf955c !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: #b63420 !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: #e26c5a;
}
.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: #ffffff;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
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: #000000 !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-rzMgHGam4n .nav-item:focus,
.cid-rzMgHGam4n .nav-link:focus {
  outline: none;
}
.cid-rzMgHGam4n a.nav-link:focus {
  color: #fcfcfc !important;
}
.cid-rzMgHGam4n .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-rzMgHGam4n .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rzMgHGam4n .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-rzMgHGam4n .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-rzMgHGam4n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-rzMgHGam4n .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rzMgHGam4n .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMgHGam4n .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-rzMgHGam4n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-rzMgHGam4n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzMgHGam4n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMgHGam4n .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMgHGam4n .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-rzMgHGam4n .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMgHGam4n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-rzMgHGam4n .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-rzMgHGam4n .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzMgHGam4n .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMgHGam4n .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 .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-rzMgHGam4n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMgHGam4n .dropdown-item.active,
.cid-rzMgHGam4n .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMgHGam4n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-rzMgHGam4n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMgHGam4n ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzMgHGam4n .navbar-buttons {
  text-align: center;
}
.cid-rzMgHGam4n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMgHGam4n a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-rzMgHGam4n .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMgHGam4n .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-rzMgHGam4n .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-rzMgHGam4n .nav-link:hover,
.cid-rzMgHGam4n .icons-menu .mbr-iconfont:hover {
  color: #fcfcfc !important;
}
.cid-rzMgHGam4n .dropdown-item:hover {
  color: #878787 !important;
}
.cid-rzMgHGam4n .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #fcfcfc;
  transition: width 0.3s ease-in;
}
.cid-rzMgHGam4n .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-rzMgHGam4n .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-rzMgHGam4n .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-rzMgHGam4n .dropdown-menu {
    top: 100%;
  }
  .cid-rzMgHGam4n .dropdown-item {
    border-bottom: 1px solid #3b2c1d;
    box-shadow: 0px 2px 5px #a2784f;
    background: #a2784f !important;
  }
  .cid-rzMgHGam4n .dropdown-item:hover {
    background: #805f3e !important;
  }
  .cid-rzMgHGam4n .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-rzMgHGam4n .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-spjVQcvNyJ .modal-body .close {
  background: #1b1b1b;
}
.cid-spjVQcvNyJ .modal-body .close span {
  font-style: normal;
}
.cid-spjVQcvNyJ .carousel-inner > .active,
.cid-spjVQcvNyJ .carousel-inner > .next,
.cid-spjVQcvNyJ .carousel-inner > .prev {
  display: flex;
}
.cid-spjVQcvNyJ .carousel-control .icon-next,
.cid-spjVQcvNyJ .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-spjVQcvNyJ .carousel-control:hover {
  background: #c19b76;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-spjVQcvNyJ .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-spjVQcvNyJ .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-spjVQcvNyJ .boxed-slider > div {
  position: relative;
}
.cid-spjVQcvNyJ .container img {
  width: 100%;
}
.cid-spjVQcvNyJ .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-spjVQcvNyJ .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-spjVQcvNyJ .mbr-table-cell {
  padding: 0;
}
.cid-spjVQcvNyJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-spjVQcvNyJ .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-spjVQcvNyJ .mbr-overlay {
  z-index: 1;
}
.cid-spjVQcvNyJ .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-spjVQcvNyJ .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-spjVQcvNyJ .carousel-item.active.right,
.cid-spjVQcvNyJ .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-spjVQcvNyJ .carousel-item.active.left,
.cid-spjVQcvNyJ .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-spjVQcvNyJ .carousel-item.active,
.cid-spjVQcvNyJ .carousel-item.next.left,
.cid-spjVQcvNyJ .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-spjVQcvNyJ .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #c19b76;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators li.active,
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators li::after,
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-spjVQcvNyJ .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-spjVQcvNyJ .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-spjVQcvNyJ .mbr-slider > .container img {
  width: 100%;
}
.cid-spjVQcvNyJ .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-spjVQcvNyJ .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-spjVQcvNyJ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-spjVQcvNyJ .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-spjVQcvNyJ .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-spjVQcvNyJ .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-spjVQcvNyJ .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-spjVQcvNyJ .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-spjVQcvNyJ .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-spjVQcvNyJ .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-spjVQcvNyJ .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-spjVQcvNyJ .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-spjVQcvNyJ .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-spHmRtx0E7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-spHmRtx0E7 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-spHmRtx0E7 .photo-split {
  padding: 0;
}
.cid-spHmRtx0E7 .photo-split img {
  width: 100%;
}
.cid-spHmRtx0E7 .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-spHmRtx0E7 .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-spHmRtx0E7 .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-spHmRtx0E7 .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-spHmRtx0E7 .wrap-block {
  padding: 3rem 3rem;
}
.cid-spHmRtx0E7 .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-spHmRtx0E7 .wrap-block ul li {
  display: inline-block;
}
.cid-spHmRtx0E7 .wrap-block ul li span {
  text-align: center;
}
.cid-spHmRtx0E7 .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-spHmRtx0E7 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-spHmRtx0E7 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-spHmRtx0E7 .mbr-list,
.cid-spHmRtx0E7 .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-spHmRtx0E7 .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-spHmRtx0E7 .mbr-section-title,
  .cid-spHmRtx0E7 .mbr-section-subtitle,
  .cid-spHmRtx0E7 .mbr-text {
    text-align: center !important;
  }
  .cid-spHmRtx0E7 .social-list {
    text-align: center !important;
  }
}
.cid-spHmRtx0E7 .mbr-list,
.cid-spHmRtx0E7 .social-media {
  color: #767676;
}
.cid-spHmRtx0E7 .mbr-section-title {
  color: #c19b76;
}
.cid-rzMgJD6sEt {
  background-color: #000000;
}
.cid-rzMgJD6sEt .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rzMgJD6sEt .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rzMgJD6sEt .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgJD6sEt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-rzMgJD6sEt .image-element {
    padding-left: 0;
  }
}
.cid-rzMgJD6sEt .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-rzMgJD6sEt .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-rzMgJD6sEt .brown {
  color: #c19b76;
}
.cid-rzMgJD6sEt .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgJD6sEt .paragraphs-wrapper .first-paragraph,
.cid-rzMgJD6sEt .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-rzMgJD6sEt .image-element {
    padding-top: 1rem;
  }
  .cid-rzMgJD6sEt .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rzMgJD6sEt .paragraphs-wrapper .first-paragraph,
  .cid-rzMgJD6sEt .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-rzMgJD6sEt .first-paragraph,
  .cid-rzMgJD6sEt .second-paragraph {
    width: 50%;
  }
  .cid-rzMgJD6sEt .first-paragraph {
    padding-right: .5rem;
  }
  .cid-rzMgJD6sEt .second-paragraph {
    padding-left: .5rem;
  }
  .cid-rzMgJD6sEt .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-rzMgJD6sEt .mbr-section-title,
  .cid-rzMgJD6sEt .mbr-section-btn {
    text-align: left;
  }
}
.cid-rzMgJD6sEt .mbr-text,
.cid-rzMgJD6sEt .mbr-section-btn {
  color: #ffffff;
}
.cid-rzMgL0Khyt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rzMgL0Khyt .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-rzMgL0Khyt .card .card-img img {
  transition: all .5s;
}
.cid-rzMgL0Khyt .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rzMgL0Khyt .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rzMgL0Khyt .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMgL0Khyt .first-card {
  display: block;
}
.cid-rzMgL0Khyt .first-card .card-wrapper {
  height: 100%;
}
.cid-rzMgL0Khyt .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-rzMgL0Khyt .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgL0Khyt .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rzMgL0Khyt .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rzMgL0Khyt .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rzMgL0Khyt .first-row,
.cid-rzMgL0Khyt .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rzMgL0Khyt .first-row .card .card-wrapper,
.cid-rzMgL0Khyt .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img,
.cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img img,
.cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rzMgL0Khyt .first-row,
  .cid-rzMgL0Khyt .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img,
  .cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img img,
  .cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rzMgL0Khyt .first-row .caption,
.cid-rzMgL0Khyt .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-rzMgL0Khyt .first-row .caption .price,
.cid-rzMgL0Khyt .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-rzMgL0Khyt .first-row {
  padding-bottom: 1rem;
}
.cid-rzMgL0Khyt .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rzMgL0Khyt .first-card,
  .cid-rzMgL0Khyt .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rzMgL0Khyt .first-card {
    padding-bottom: 2rem;
  }
  .cid-rzMgL0Khyt .only-first-row {
    height: 100%;
  }
}
.cid-rzMgL0Khyt .main-title {
  color: #c19b76;
}
.cid-spKQuoCzmx {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-spKQuoCzmx .card {
  display: block;
}
.cid-spKQuoCzmx .card .card-img {
  overflow: hidden;
}
.cid-spKQuoCzmx .card .card-img img {
  transition: all 0.5s;
}
.cid-spKQuoCzmx .card .card-wrapper:hover .card-img img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-spKQuoCzmx .underline .line {
  width: 2rem;
  height: 1px;
  background: #cccccc;
  display: inline-block;
}
.cid-spKQuoCzmx .card .card-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.cid-spKQuoCzmx .card .card-wrapper .card-link {
  z-index: 2;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  font-size: 0;
  display: none;
}
.cid-spKQuoCzmx .card .card-wrapper .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-spKQuoCzmx .card .card-wrapper .card-img .mbr-overlay {
  background: #000000;
  opacity: 0.5;
  border-top-right-radius: 25%;
}
.cid-spKQuoCzmx .card .card-wrapper .card-img img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-spKQuoCzmx .popup-btn .card-link {
  display: block !important;
}
.cid-spKQuoCzmx .popup-btn .mbr-overlay {
  border-top-right-radius: 0 !important;
}
.cid-spKQuoCzmx .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-spKQuoCzmx .caption .mbr-text {
  margin-bottom: 2rem;
}
.cid-spKQuoCzmx .caption .card-title {
  padding-right: 2rem;
}
.cid-spKQuoCzmx .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
@media (min-width: 768px) {
  .cid-spKQuoCzmx .first-row-card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-spKQuoCzmx .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-spKQuoCzmx .main-title {
  color: #c19b76;
}
.cid-spLoZ6lrJ8 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/67490540-2386770478237079-7660171874332049408-n-960x720.jpg");
}
.cid-spLoZ6lrJ8 .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-spLoZ6lrJ8 .mbr-arrow i {
  color: #ffffff !important;
}
.cid-spLoZ6lrJ8 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-spLoZ6lrJ8 .animated-element,
.cid-spLoZ6lrJ8 .typed-cursor {
  color: #ffffff;
}
.cid-spLoZ6lrJ8 .animated-element {
  border-bottom: 5px solid #c19b76;
}
@media (max-width: 767px) {
  .cid-spLoZ6lrJ8 .typed-text {
    text-align: center;
  }
}
.cid-rzMgTEX4qU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rzMgTEX4qU .wrapper {
  overflow: hidden;
}
.cid-rzMgTEX4qU .wrapper img {
  transition: all .5s;
}
.cid-rzMgTEX4qU .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rzMgTEX4qU .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMgTEX4qU .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-rzMgTEX4qU .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-rzMgTEX4qU .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rzMgTEX4qU .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rzMgTEX4qU .first-row-card {
    padding-bottom: 2rem;
  }
}
#instagram-feed-block-4 .inst__title {
  color: #c19b76;
}
.cid-spKSnQKW7w {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/71893681-2444767239104069-7664346672738074624-o-1440x1080.jpg");
}
@media (max-width: 767px) {
  .cid-spKSnQKW7w .first-col {
    padding-bottom: 1rem;
  }
}
.cid-spKNSBLlIO {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-spKNSBLlIO .card .card-img img {
  transition: all 0.5s;
}
.cid-spKNSBLlIO .card .card-wrapper:hover .card-img img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-spKNSBLlIO .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-spKNSBLlIO .form1 {
  background: #333333;
  padding: 2rem;
  height: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-spKNSBLlIO .form-group {
  margin-bottom: 1rem;
}
.cid-spKNSBLlIO .form-control {
  border: none !important;
  padding: 1rem;
  background: #000000;
  color: #ffffff;
  width: 100%;
}
.cid-spKNSBLlIO .form-control::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-spKNSBLlIO .form-control::-moz-placeholder {
  color: #ffffff;
}
.cid-spKNSBLlIO .form-control:-moz-placeholder {
  color: #ffffff;
}
.cid-spKNSBLlIO .form-control:-ms-input-placeholder {
  color: #ffffff;
}
.cid-spKNSBLlIO textarea.form-control {
  min-height: 172px;
}
.cid-spKNSBLlIO .input-group-btn {
  width: 100%;
}
.cid-spKNSBLlIO .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-spKNSBLlIO .items-column {
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-spKNSBLlIO .first-row {
  -webkit-flex: 1 1 40%;
  flex: 1 1 40%;
  max-height: 40%;
}
.cid-spKNSBLlIO .second-row {
  -webkit-flex: 1 1 60%;
  flex: 1 1 60%;
  max-height: 60%;
}
.cid-spKNSBLlIO .card {
  height: 100%;
}
.cid-spKNSBLlIO .card .card-wrapper {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  flex: 1;
}
.cid-spKNSBLlIO .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
  overflow: hidden;
  border-radius: 0;
}
.cid-spKNSBLlIO .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-spKNSBLlIO .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  letter-spacing: 2px;
  padding: 1rem 2rem;
}
.cid-spKNSBLlIO .caption .mbr-text {
  margin: 0;
}
.cid-spKNSBLlIO .first-card {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-spKNSBLlIO .form1 {
    padding: 1.5rem;
  }
  .cid-spKNSBLlIO .second-card {
    padding-bottom: 2rem;
  }
  .cid-spKNSBLlIO .first-row,
  .cid-spKNSBLlIO .second-row,
  .cid-spKNSBLlIO .card-img {
    -webkit-flex-basis: auto !important;
    flex-basis: auto !important;
  }
  .cid-spKNSBLlIO .card-img img {
    min-height: 0 !important;
  }
}
@media (max-width: 767px), (max-width: 991px) {
  .cid-spKNSBLlIO .items-column {
    padding-top: 2rem;
  }
}
.cid-rzMh4wFu1L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rzMh4wFu1L .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMh4wFu1L .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rzMh4wFu1L .title {
    width: 100% !important;
  }
}
.cid-rzMh4wFu1L .mbr-section-title {
  color: #c19b76;
}
.cid-spKTw1bfEg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/71015835-2426352444278882-6816982975658328064-o-1364x908.jpg");
}
.cid-spKTw1bfEg .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-spKTw1bfEg .content-panel {
  padding: 3rem;
  background-color: #000000;
}
@media (min-width: 767px) {
  .cid-spKTw1bfEg .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-spKTw1bfEg .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-spKTw1bfEg .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-spKTw1bfEg .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-spKTw1bfEg .google-map .place-card {
  margin-left: 40px !important;
}
.cid-spKTw1bfEg .mbr-section-title {
  color: #c19b76;
}
.cid-spKTw1bfEg .adress-block {
  color: #e6c8ab;
}
.cid-rzMi9iV35M {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-rzMi9iV35M .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-rzMi9iV35M .first-column .mbr-text {
  margin: 0;
}
.cid-rzMi9iV35M .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-rzMi9iV35M .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-rzMi9iV35M .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-rzMi9iV35M .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-rzMi9iV35M .form-group {
  max-width: 55%;
}
.cid-rzMi9iV35M .form-group,
.cid-rzMi9iV35M .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-rzMi9iV35M .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-rzMi9iV35M .first-column,
  .cid-rzMi9iV35M .second-column {
    padding-bottom: 2rem;
  }
  .cid-rzMi9iV35M .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rzMi9iV35M .first-column,
  .cid-rzMi9iV35M .second-column,
  .cid-rzMi9iV35M .third-column {
    text-align: center;
  }
  .cid-rzMi9iV35M .input-group-btn .btn {
    padding: .6rem 1rem !important;
  }
}
.cid-rzMi9iV35M .mbr-section-title {
  color: #e6c8ab;
}
.cid-rzMi9iV35M .mbr-section-subtitle,
.cid-rzMi9iV35M .icons-wrapper {
  color: #ffffff;
}
.cid-rzMi9iV35M .mbr-text {
  color: #ffffff;
}
.cid-rzMi9GHrgW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tTt1ln05bf .nav-item:focus,
.cid-tTt1ln05bf .nav-link:focus {
  outline: none;
}
.cid-tTt1ln05bf a.nav-link:focus {
  color: #fcfcfc !important;
}
.cid-tTt1ln05bf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tTt1ln05bf .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tTt1ln05bf .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tTt1ln05bf .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-tTt1ln05bf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTt1ln05bf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tTt1ln05bf .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tTt1ln05bf .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tTt1ln05bf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTt1ln05bf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTt1ln05bf .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tTt1ln05bf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTt1ln05bf .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-tTt1ln05bf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTt1ln05bf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tTt1ln05bf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTt1ln05bf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTt1ln05bf .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tTt1ln05bf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTt1ln05bf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTt1ln05bf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTt1ln05bf .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-tTt1ln05bf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTt1ln05bf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTt1ln05bf .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tTt1ln05bf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tTt1ln05bf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTt1ln05bf .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tTt1ln05bf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTt1ln05bf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTt1ln05bf .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 .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTt1ln05bf .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tTt1ln05bf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tTt1ln05bf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTt1ln05bf .dropdown-item.active,
.cid-tTt1ln05bf .dropdown-item:active {
  background-color: transparent;
}
.cid-tTt1ln05bf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTt1ln05bf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTt1ln05bf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTt1ln05bf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tTt1ln05bf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tTt1ln05bf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTt1ln05bf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTt1ln05bf .navbar-buttons {
  text-align: center;
}
.cid-tTt1ln05bf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTt1ln05bf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTt1ln05bf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTt1ln05bf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTt1ln05bf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTt1ln05bf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTt1ln05bf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTt1ln05bf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTt1ln05bf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTt1ln05bf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTt1ln05bf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTt1ln05bf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tTt1ln05bf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tTt1ln05bf .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-tTt1ln05bf .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tTt1ln05bf .nav-link:hover,
.cid-tTt1ln05bf .icons-menu .mbr-iconfont:hover {
  color: #fcfcfc !important;
}
.cid-tTt1ln05bf .dropdown-item:hover {
  color: #878787 !important;
}
.cid-tTt1ln05bf .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #fcfcfc;
  transition: width 0.3s ease-in;
}
.cid-tTt1ln05bf .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tTt1ln05bf .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tTt1ln05bf .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tTt1ln05bf .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tTt1ln05bf .dropdown-menu {
    top: 100%;
  }
  .cid-tTt1ln05bf .dropdown-item {
    border-bottom: 1px solid #3b2c1d;
    box-shadow: 0px 2px 5px #a2784f;
    background: #a2784f !important;
  }
  .cid-tTt1ln05bf .dropdown-item:hover {
    background: #805f3e !important;
  }
  .cid-tTt1ln05bf .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tTt1ln05bf .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tTt2eDDQtg {
  background-image: url("../../../assets/images/gabriela-e-admilson-1609-2000x1333.jpg");
}
.cid-tTt2eDDQtg .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tTt2eDDQtg .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tTt2eDDQtg .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tTt2eDDQtg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTt2eDDQtg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTt1lo69DY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tTt1lo69DY .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tTt1lo69DY .photo-split {
  padding: 0;
}
.cid-tTt1lo69DY .photo-split img {
  width: 100%;
}
.cid-tTt1lo69DY .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tTt1lo69DY .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tTt1lo69DY .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-tTt1lo69DY .counter-container ul li:before {
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-tTt1lo69DY .wrap-block {
  padding: 3rem 3rem;
}
.cid-tTt1lo69DY .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tTt1lo69DY .wrap-block ul li {
  display: inline-block;
}
.cid-tTt1lo69DY .wrap-block ul li span {
  text-align: center;
}
.cid-tTt1lo69DY .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-tTt1lo69DY .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tTt1lo69DY .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tTt1lo69DY .mbr-list,
.cid-tTt1lo69DY .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-tTt1lo69DY .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tTt1lo69DY .mbr-section-title,
  .cid-tTt1lo69DY .mbr-section-subtitle,
  .cid-tTt1lo69DY .mbr-text {
    text-align: center !important;
  }
  .cid-tTt1lo69DY .social-list {
    text-align: center !important;
  }
}
.cid-tTt1lo69DY .mbr-list,
.cid-tTt1lo69DY .social-media {
  color: #767676;
}
.cid-tTt1lo69DY .mbr-section-title {
  color: #000000;
}
.cid-tTt3L5w4Gp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTt3L5w4Gp p {
  color: #767676;
}
.cid-tTt3L5w4Gp .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTt3L5w4Gp .row-element,
.cid-tTt3L5w4Gp .image-element {
  padding: 0;
}
.cid-tTt3L5w4Gp .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTt3L5w4Gp .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTt3L5w4Gp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tTt3L5w4Gp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c19b76, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tTt3L5w4Gp .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tTt3L5w4Gp .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tTt3L5w4Gp .text-content {
    padding: 2rem 1rem;
  }
  .cid-tTt3L5w4Gp .underline .line {
    height: 2px;
  }
  .cid-tTt3L5w4Gp .mbr-title,
  .cid-tTt3L5w4Gp .underline,
  .cid-tTt3L5w4Gp .mbr-text,
  .cid-tTt3L5w4Gp .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTt3L5w4Gp .mbr-text,
.cid-tTt3L5w4Gp .mbr-section-btn {
  color: #000000;
}
.cid-tTt4KdVu7L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTt1lp0Dhm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tTt1lp0Dhm .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tTt1lp0Dhm .card .card-img img {
  transition: all .5s;
}
.cid-tTt1lp0Dhm .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tTt1lp0Dhm .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tTt1lp0Dhm .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tTt1lp0Dhm .first-card {
  display: block;
}
.cid-tTt1lp0Dhm .first-card .card-wrapper {
  height: 100%;
}
.cid-tTt1lp0Dhm .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tTt1lp0Dhm .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTt1lp0Dhm .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tTt1lp0Dhm .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tTt1lp0Dhm .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tTt1lp0Dhm .first-row,
.cid-tTt1lp0Dhm .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tTt1lp0Dhm .first-row .card .card-wrapper,
.cid-tTt1lp0Dhm .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tTt1lp0Dhm .first-row .card .card-wrapper .card-img,
.cid-tTt1lp0Dhm .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tTt1lp0Dhm .first-row .card .card-wrapper .card-img img,
.cid-tTt1lp0Dhm .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tTt1lp0Dhm .first-row,
  .cid-tTt1lp0Dhm .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTt1lp0Dhm .first-row .card .card-wrapper .card-img,
  .cid-tTt1lp0Dhm .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTt1lp0Dhm .first-row .card .card-wrapper .card-img img,
  .cid-tTt1lp0Dhm .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tTt1lp0Dhm .first-row .caption,
.cid-tTt1lp0Dhm .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-tTt1lp0Dhm .first-row .caption .price,
.cid-tTt1lp0Dhm .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-tTt1lp0Dhm .first-row {
  padding-bottom: 1rem;
}
.cid-tTt1lp0Dhm .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tTt1lp0Dhm .first-card,
  .cid-tTt1lp0Dhm .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTt1lp0Dhm .first-card {
    padding-bottom: 2rem;
  }
  .cid-tTt1lp0Dhm .only-first-row {
    height: 100%;
  }
}
.cid-tTt1lp0Dhm .main-title {
  color: #000000;
}
.cid-tTt1lp0Dhm .first-card-text,
.cid-tTt1lp0Dhm .card-btn {
  color: #000000;
}
.cid-tTt9q8HFbN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tTt9q8HFbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTt9q8HFbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTt9q8HFbN .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tTt9q8HFbN .mbr-section-title {
  color: #24262b;
}
.cid-tTt9q8HFbN .mbr-section-subtitle {
  color: #24262b;
}
.cid-tTt9q8HFbN .items-row {
  row-gap: 32px;
}
.cid-tTt9q8HFbN .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tTt9q8HFbN .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 6));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tTt9q8HFbN .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tTt9q8HFbN .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tTt9q8HFbN .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tTt9q8HFbN .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tTt9q8HFbN .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tTt9q8HFbN .mbr-item-subtitle {
  color: #24262b;
}
.cid-tTt9q8HFbN .carousel-control,
.cid-tTt9q8HFbN .close {
  background: #1b1b1b;
}
.cid-tTt9q8HFbN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tTt9q8HFbN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tTt9q8HFbN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tTt9q8HFbN .carousel-control-next span {
  margin-left: 5px;
}
.cid-tTt9q8HFbN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tTt9q8HFbN .close::before {
  content: '\e91a';
}
.cid-tTt9q8HFbN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tTt9q8HFbN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tTt9q8HFbN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTt9q8HFbN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTt9q8HFbN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tTt9q8HFbN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tTt9q8HFbN .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tTt9q8HFbN .carousel-indicators li.active,
.cid-tTt9q8HFbN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tTt9q8HFbN .carousel-indicators li::after,
.cid-tTt9q8HFbN .carousel-indicators li::before {
  content: none;
}
.cid-tTt9q8HFbN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tTt9q8HFbN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tTt9q8HFbN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tTt9q8HFbN .carousel-indicators {
    display: none;
  }
}
.cid-tTt9q8HFbN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tTt9q8HFbN .carousel-inner > .active {
  display: block;
}
.cid-tTt9q8HFbN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTt9q8HFbN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTt9q8HFbN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tTt9q8HFbN .carousel-control,
  .cid-tTt9q8HFbN .carousel-indicators,
  .cid-tTt9q8HFbN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tTt9q8HFbN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tTt9q8HFbN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tTt9q8HFbN .carousel-indicators .active,
.cid-tTt9q8HFbN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tTt9q8HFbN .carousel-indicators .active {
  background: #fff;
}
.cid-tTt9q8HFbN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tTt9q8HFbN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tTt9q8HFbN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tTt9q8HFbN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tTt9q8HFbN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tTt9q8HFbN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tTt9q8HFbN .carousel {
  width: 100%;
}
.cid-tTt9q8HFbN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tTt9q8HFbN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tTt9q8HFbN .modal.fade .modal-dialog,
.cid-tTt9q8HFbN .modal.in .modal-dialog {
  transform: none;
}
.cid-tTt9q8HFbN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tTt9q8HFbN H6 {
  text-align: center;
}
#undefined .inst__title {
  color: #c19b76;
}
.cid-tTt1lrJ6ZC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTt1lrJ6ZC .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tTt1lrJ6ZC .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tTt1lrJ6ZC .title {
    width: 100% !important;
  }
}
.cid-tTt1lrJ6ZC .mbr-section-title {
  color: #000000;
}
.cid-tTt1ls2wdc {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/71015835-2426352444278882-6816982975658328064-o-1364x908.jpg");
}
.cid-tTt1ls2wdc .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tTt1ls2wdc .content-panel {
  padding: 3rem;
  background-color: #000000;
}
@media (min-width: 767px) {
  .cid-tTt1ls2wdc .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tTt1ls2wdc .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tTt1ls2wdc .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tTt1ls2wdc .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-tTt1ls2wdc .google-map .place-card {
  margin-left: 40px !important;
}
.cid-tTt1ls2wdc .mbr-section-title {
  color: #c19b76;
}
.cid-tTt1ls2wdc .adress-block {
  color: #e6c8ab;
}
.cid-tTtaWY8Lul {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tTtaWY8Lul .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTtaWY8Lul .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-tTtaWY8Lul .container {
    padding: 0 20px;
  }
}
.cid-tTtaWY8Lul .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tTtaWY8Lul .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-tTtaWY8Lul .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tTtaWY8Lul .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-tTtaWY8Lul .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tTtaWY8Lul .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-tTtaWY8Lul .row .list {
    margin-bottom: 32px;
  }
}
.cid-tTtaWY8Lul .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-tTtaWY8Lul .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #c19b76;
}
.cid-tTtaWY8Lul .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-tTtaWY8Lul .mbr-section-title {
  color: #ffffff;
}
.cid-tTtaWY8Lul .mbr-desc {
  color: #ffffff;
}
.cid-tTtaWY8Lul .mbr-text {
  color: #ffffff;
}
.cid-tTtaWY8Lul .list {
  color: #ffffff;
}
.cid-tTtaWY8Lul .copyright {
  color: #ffffff;
}
.cid-tTt1lsYkox {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tTtcTzcHqH .nav-item:focus,
.cid-tTtcTzcHqH .nav-link:focus {
  outline: none;
}
.cid-tTtcTzcHqH a.nav-link:focus {
  color: #fcfcfc !important;
}
.cid-tTtcTzcHqH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tTtcTzcHqH .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tTtcTzcHqH .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tTtcTzcHqH .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-tTtcTzcHqH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTtcTzcHqH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tTtcTzcHqH .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tTtcTzcHqH .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tTtcTzcHqH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTtcTzcHqH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTtcTzcHqH .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tTtcTzcHqH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTtcTzcHqH .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-tTtcTzcHqH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTtcTzcHqH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tTtcTzcHqH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTtcTzcHqH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTtcTzcHqH .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tTtcTzcHqH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTtcTzcHqH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTtcTzcHqH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTtcTzcHqH .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-tTtcTzcHqH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTtcTzcHqH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTtcTzcHqH .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tTtcTzcHqH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tTtcTzcHqH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTtcTzcHqH .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tTtcTzcHqH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTtcTzcHqH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTtcTzcHqH .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 .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTtcTzcHqH .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tTtcTzcHqH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tTtcTzcHqH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTtcTzcHqH .dropdown-item.active,
.cid-tTtcTzcHqH .dropdown-item:active {
  background-color: transparent;
}
.cid-tTtcTzcHqH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTtcTzcHqH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTtcTzcHqH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTtcTzcHqH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tTtcTzcHqH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tTtcTzcHqH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTtcTzcHqH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTtcTzcHqH .navbar-buttons {
  text-align: center;
}
.cid-tTtcTzcHqH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTtcTzcHqH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTtcTzcHqH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTtcTzcHqH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTtcTzcHqH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTtcTzcHqH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTtcTzcHqH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTtcTzcHqH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTtcTzcHqH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTtcTzcHqH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTtcTzcHqH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTtcTzcHqH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tTtcTzcHqH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tTtcTzcHqH .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-tTtcTzcHqH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tTtcTzcHqH .nav-link:hover,
.cid-tTtcTzcHqH .icons-menu .mbr-iconfont:hover {
  color: #fcfcfc !important;
}
.cid-tTtcTzcHqH .dropdown-item:hover {
  color: #878787 !important;
}
.cid-tTtcTzcHqH .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #fcfcfc;
  transition: width 0.3s ease-in;
}
.cid-tTtcTzcHqH .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tTtcTzcHqH .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tTtcTzcHqH .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tTtcTzcHqH .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tTtcTzcHqH .dropdown-menu {
    top: 100%;
  }
  .cid-tTtcTzcHqH .dropdown-item {
    border-bottom: 1px solid #3b2c1d;
    box-shadow: 0px 2px 5px #a2784f;
    background: #a2784f !important;
  }
  .cid-tTtcTzcHqH .dropdown-item:hover {
    background: #805f3e !important;
  }
  .cid-tTtcTzcHqH .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tTtcTzcHqH .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tTtcTAEKKA {
  background-image: url("../../../assets/images/whatsapp-image-2023-10-13-at-11.28.30-1024x768.jpg");
}
.cid-tTtcTAEKKA .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tTtcTAEKKA .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tTtcTAEKKA .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tTtcTAEKKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTtcTAEKKA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTtcTB7tOH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tTtcTB7tOH .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tTtcTB7tOH .photo-split {
  padding: 0;
}
.cid-tTtcTB7tOH .photo-split img {
  width: 100%;
}
.cid-tTtcTB7tOH .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tTtcTB7tOH .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tTtcTB7tOH .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-tTtcTB7tOH .counter-container ul li:before {
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-tTtcTB7tOH .wrap-block {
  padding: 3rem 3rem;
}
.cid-tTtcTB7tOH .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tTtcTB7tOH .wrap-block ul li {
  display: inline-block;
}
.cid-tTtcTB7tOH .wrap-block ul li span {
  text-align: center;
}
.cid-tTtcTB7tOH .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-tTtcTB7tOH .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tTtcTB7tOH .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tTtcTB7tOH .mbr-list,
.cid-tTtcTB7tOH .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-tTtcTB7tOH .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tTtcTB7tOH .mbr-section-title,
  .cid-tTtcTB7tOH .mbr-section-subtitle,
  .cid-tTtcTB7tOH .mbr-text {
    text-align: center !important;
  }
  .cid-tTtcTB7tOH .social-list {
    text-align: center !important;
  }
}
.cid-tTtcTB7tOH .mbr-list,
.cid-tTtcTB7tOH .social-media {
  color: #767676;
}
.cid-tTtcTB7tOH .mbr-section-title {
  color: #000000;
}
.cid-tTtcTBxpPI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTtcTBxpPI p {
  color: #767676;
}
.cid-tTtcTBxpPI .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTtcTBxpPI .row-element,
.cid-tTtcTBxpPI .image-element {
  padding: 0;
}
.cid-tTtcTBxpPI .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTtcTBxpPI .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTtcTBxpPI .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tTtcTBxpPI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c19b76, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tTtcTBxpPI .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tTtcTBxpPI .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tTtcTBxpPI .text-content {
    padding: 2rem 1rem;
  }
  .cid-tTtcTBxpPI .underline .line {
    height: 2px;
  }
  .cid-tTtcTBxpPI .mbr-title,
  .cid-tTtcTBxpPI .underline,
  .cid-tTtcTBxpPI .mbr-text,
  .cid-tTtcTBxpPI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTtcTBxpPI .mbr-text,
.cid-tTtcTBxpPI .mbr-section-btn {
  color: #000000;
}
.cid-tTtcTBTEnE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTtcTCahUc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tTtcTCahUc .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tTtcTCahUc .card .card-img img {
  transition: all .5s;
}
.cid-tTtcTCahUc .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tTtcTCahUc .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tTtcTCahUc .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tTtcTCahUc .first-card {
  display: block;
}
.cid-tTtcTCahUc .first-card .card-wrapper {
  height: 100%;
}
.cid-tTtcTCahUc .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tTtcTCahUc .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTtcTCahUc .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tTtcTCahUc .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tTtcTCahUc .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tTtcTCahUc .first-row,
.cid-tTtcTCahUc .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tTtcTCahUc .first-row .card .card-wrapper,
.cid-tTtcTCahUc .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tTtcTCahUc .first-row .card .card-wrapper .card-img,
.cid-tTtcTCahUc .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tTtcTCahUc .first-row .card .card-wrapper .card-img img,
.cid-tTtcTCahUc .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tTtcTCahUc .first-row,
  .cid-tTtcTCahUc .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTtcTCahUc .first-row .card .card-wrapper .card-img,
  .cid-tTtcTCahUc .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTtcTCahUc .first-row .card .card-wrapper .card-img img,
  .cid-tTtcTCahUc .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tTtcTCahUc .first-row .caption,
.cid-tTtcTCahUc .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-tTtcTCahUc .first-row .caption .price,
.cid-tTtcTCahUc .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-tTtcTCahUc .first-row {
  padding-bottom: 1rem;
}
.cid-tTtcTCahUc .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tTtcTCahUc .first-card,
  .cid-tTtcTCahUc .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTtcTCahUc .first-card {
    padding-bottom: 2rem;
  }
  .cid-tTtcTCahUc .only-first-row {
    height: 100%;
  }
}
.cid-tTtcTCahUc .main-title {
  color: #000000;
}
.cid-tTtcTCahUc .first-card-text,
.cid-tTtcTCahUc .card-btn {
  color: #000000;
}
#undefined .inst__title {
  color: #c19b76;
}
.cid-tTtcTDLRri {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTtcTDLRri .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tTtcTDLRri .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tTtcTDLRri .title {
    width: 100% !important;
  }
}
.cid-tTtcTDLRri .mbr-section-title {
  color: #000000;
}
.cid-tTtcTEaVNy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/71015835-2426352444278882-6816982975658328064-o-1364x908.jpg");
}
.cid-tTtcTEaVNy .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tTtcTEaVNy .content-panel {
  padding: 3rem;
  background-color: #000000;
}
@media (min-width: 767px) {
  .cid-tTtcTEaVNy .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tTtcTEaVNy .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tTtcTEaVNy .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tTtcTEaVNy .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-tTtcTEaVNy .google-map .place-card {
  margin-left: 40px !important;
}
.cid-tTtcTEaVNy .mbr-section-title {
  color: #c19b76;
}
.cid-tTtcTEaVNy .adress-block {
  color: #e6c8ab;
}
.cid-tTtcTEHgS6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tTtcTEHgS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTtcTEHgS6 .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-tTtcTEHgS6 .container {
    padding: 0 20px;
  }
}
.cid-tTtcTEHgS6 .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tTtcTEHgS6 .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-tTtcTEHgS6 .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tTtcTEHgS6 .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-tTtcTEHgS6 .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tTtcTEHgS6 .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-tTtcTEHgS6 .row .list {
    margin-bottom: 32px;
  }
}
.cid-tTtcTEHgS6 .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-tTtcTEHgS6 .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #c19b76;
}
.cid-tTtcTEHgS6 .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-tTtcTEHgS6 .mbr-section-title {
  color: #ffffff;
}
.cid-tTtcTEHgS6 .mbr-desc {
  color: #ffffff;
}
.cid-tTtcTEHgS6 .mbr-text {
  color: #ffffff;
}
.cid-tTtcTEHgS6 .list {
  color: #ffffff;
}
.cid-tTtcTEHgS6 .copyright {
  color: #ffffff;
}
.cid-tTtcTFsdeA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tTtfa0T422 .nav-item:focus,
.cid-tTtfa0T422 .nav-link:focus {
  outline: none;
}
.cid-tTtfa0T422 a.nav-link:focus {
  color: #fcfcfc !important;
}
.cid-tTtfa0T422 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
  background: none;
}
.cid-tTtfa0T422 .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tTtfa0T422 .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tTtfa0T422 .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-tTtfa0T422 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTtfa0T422 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-tTtfa0T422 .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tTtfa0T422 .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tTtfa0T422 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tTtfa0T422 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTtfa0T422 .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tTtfa0T422 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTtfa0T422 .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-tTtfa0T422 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTtfa0T422 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tTtfa0T422 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tTtfa0T422 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTtfa0T422 .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tTtfa0T422 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tTtfa0T422 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTtfa0T422 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTtfa0T422 .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-tTtfa0T422 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tTtfa0T422 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTtfa0T422 .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tTtfa0T422 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tTtfa0T422 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tTtfa0T422 .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tTtfa0T422 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tTtfa0T422 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tTtfa0T422 .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 .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTtfa0T422 .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tTtfa0T422 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tTtfa0T422 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTtfa0T422 .dropdown-item.active,
.cid-tTtfa0T422 .dropdown-item:active {
  background-color: transparent;
}
.cid-tTtfa0T422 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTtfa0T422 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTtfa0T422 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTtfa0T422 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tTtfa0T422 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tTtfa0T422 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTtfa0T422 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tTtfa0T422 .navbar-buttons {
  text-align: center;
}
.cid-tTtfa0T422 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tTtfa0T422 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tTtfa0T422 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tTtfa0T422 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tTtfa0T422 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tTtfa0T422 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tTtfa0T422 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTtfa0T422 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tTtfa0T422 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tTtfa0T422 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tTtfa0T422 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tTtfa0T422 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tTtfa0T422 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tTtfa0T422 .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-tTtfa0T422 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tTtfa0T422 .nav-link:hover,
.cid-tTtfa0T422 .icons-menu .mbr-iconfont:hover {
  color: #fcfcfc !important;
}
.cid-tTtfa0T422 .dropdown-item:hover {
  color: #878787 !important;
}
.cid-tTtfa0T422 .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #fcfcfc;
  transition: width 0.3s ease-in;
}
.cid-tTtfa0T422 .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tTtfa0T422 .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tTtfa0T422 .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tTtfa0T422 .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tTtfa0T422 .dropdown-menu {
    top: 100%;
  }
  .cid-tTtfa0T422 .dropdown-item {
    border-bottom: 1px solid #3b2c1d;
    box-shadow: 0px 2px 5px #a2784f;
    background: #a2784f !important;
  }
  .cid-tTtfa0T422 .dropdown-item:hover {
    background: #805f3e !important;
  }
  .cid-tTtfa0T422 .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tTtfa0T422 .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tTtfa2gdzx {
  background-image: url("../../../assets/images/whatsapp-image-2023-06-23-at-18.52.06-1-1242x799.jpg");
}
.cid-tTtfa2gdzx .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tTtfa2gdzx .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tTtfa2gdzx .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tTtfa2gdzx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTtfa2gdzx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTtfa2Wa3h {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tTtfa2Wa3h .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tTtfa2Wa3h .photo-split {
  padding: 0;
}
.cid-tTtfa2Wa3h .photo-split img {
  width: 100%;
}
.cid-tTtfa2Wa3h .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-tTtfa2Wa3h .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tTtfa2Wa3h .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-tTtfa2Wa3h .counter-container ul li:before {
  color: #000000;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-tTtfa2Wa3h .wrap-block {
  padding: 3rem 3rem;
}
.cid-tTtfa2Wa3h .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tTtfa2Wa3h .wrap-block ul li {
  display: inline-block;
}
.cid-tTtfa2Wa3h .wrap-block ul li span {
  text-align: center;
}
.cid-tTtfa2Wa3h .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-tTtfa2Wa3h .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tTtfa2Wa3h .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tTtfa2Wa3h .mbr-list,
.cid-tTtfa2Wa3h .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-tTtfa2Wa3h .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tTtfa2Wa3h .mbr-section-title,
  .cid-tTtfa2Wa3h .mbr-section-subtitle,
  .cid-tTtfa2Wa3h .mbr-text {
    text-align: center !important;
  }
  .cid-tTtfa2Wa3h .social-list {
    text-align: center !important;
  }
}
.cid-tTtfa2Wa3h .mbr-list,
.cid-tTtfa2Wa3h .social-media {
  color: #767676;
}
.cid-tTtfa2Wa3h .mbr-section-title {
  color: #000000;
}
.cid-tTtfa3pJso {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTtfa3pJso p {
  color: #767676;
}
.cid-tTtfa3pJso .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tTtfa3pJso .row-element,
.cid-tTtfa3pJso .image-element {
  padding: 0;
}
.cid-tTtfa3pJso .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tTtfa3pJso .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tTtfa3pJso .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tTtfa3pJso .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #c19b76, #000000);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tTtfa3pJso .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tTtfa3pJso .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tTtfa3pJso .text-content {
    padding: 2rem 1rem;
  }
  .cid-tTtfa3pJso .underline .line {
    height: 2px;
  }
  .cid-tTtfa3pJso .mbr-title,
  .cid-tTtfa3pJso .underline,
  .cid-tTtfa3pJso .mbr-text,
  .cid-tTtfa3pJso .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tTtfa3pJso .mbr-text,
.cid-tTtfa3pJso .mbr-section-btn {
  color: #000000;
}
.cid-tTtfa3Mx1q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTtfa4687t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tTtfa4687t .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tTtfa4687t .card .card-img img {
  transition: all .5s;
}
.cid-tTtfa4687t .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tTtfa4687t .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tTtfa4687t .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tTtfa4687t .first-card {
  display: block;
}
.cid-tTtfa4687t .first-card .card-wrapper {
  height: 100%;
}
.cid-tTtfa4687t .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tTtfa4687t .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tTtfa4687t .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tTtfa4687t .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tTtfa4687t .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tTtfa4687t .first-row,
.cid-tTtfa4687t .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tTtfa4687t .first-row .card .card-wrapper,
.cid-tTtfa4687t .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tTtfa4687t .first-row .card .card-wrapper .card-img,
.cid-tTtfa4687t .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tTtfa4687t .first-row .card .card-wrapper .card-img img,
.cid-tTtfa4687t .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tTtfa4687t .first-row,
  .cid-tTtfa4687t .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTtfa4687t .first-row .card .card-wrapper .card-img,
  .cid-tTtfa4687t .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tTtfa4687t .first-row .card .card-wrapper .card-img img,
  .cid-tTtfa4687t .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tTtfa4687t .first-row .caption,
.cid-tTtfa4687t .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-tTtfa4687t .first-row .caption .price,
.cid-tTtfa4687t .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-tTtfa4687t .first-row {
  padding-bottom: 1rem;
}
.cid-tTtfa4687t .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tTtfa4687t .first-card,
  .cid-tTtfa4687t .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTtfa4687t .first-card {
    padding-bottom: 2rem;
  }
  .cid-tTtfa4687t .only-first-row {
    height: 100%;
  }
}
.cid-tTtfa4687t .main-title {
  color: #000000;
}
.cid-tTtfa4687t .first-card-text,
.cid-tTtfa4687t .card-btn {
  color: #000000;
}
#undefined .inst__title {
  color: #c19b76;
}
.cid-tTtfa5qjZ0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tTtfa5qjZ0 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tTtfa5qjZ0 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tTtfa5qjZ0 .title {
    width: 100% !important;
  }
}
.cid-tTtfa5qjZ0 .mbr-section-title {
  color: #000000;
}
.cid-tTtfa66qjF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/71015835-2426352444278882-6816982975658328064-o-1364x908.jpg");
}
.cid-tTtfa66qjF .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tTtfa66qjF .content-panel {
  padding: 3rem;
  background-color: #000000;
}
@media (min-width: 767px) {
  .cid-tTtfa66qjF .text-block {
    padding-right: 0;
    padding-left: 0;
  }
}
.cid-tTtfa66qjF .google-map {
  width: 100%;
  height: 30rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tTtfa66qjF .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tTtfa66qjF .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-tTtfa66qjF .google-map .place-card {
  margin-left: 40px !important;
}
.cid-tTtfa66qjF .mbr-section-title {
  color: #c19b76;
}
.cid-tTtfa66qjF .adress-block {
  color: #e6c8ab;
}
.cid-tTtfa6DLVH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tTtfa6DLVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTtfa6DLVH .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-tTtfa6DLVH .container {
    padding: 0 20px;
  }
}
.cid-tTtfa6DLVH .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tTtfa6DLVH .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-tTtfa6DLVH .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tTtfa6DLVH .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-tTtfa6DLVH .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tTtfa6DLVH .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-tTtfa6DLVH .row .list {
    margin-bottom: 32px;
  }
}
.cid-tTtfa6DLVH .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-tTtfa6DLVH .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #c19b76;
}
.cid-tTtfa6DLVH .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-tTtfa6DLVH .mbr-section-title {
  color: #ffffff;
}
.cid-tTtfa6DLVH .mbr-desc {
  color: #ffffff;
}
.cid-tTtfa6DLVH .mbr-text {
  color: #ffffff;
}
.cid-tTtfa6DLVH .list {
  color: #ffffff;
}
.cid-tTtfa6DLVH .copyright {
  color: #ffffff;
}
.cid-tTtfa7HpCw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
