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: #92bda3 !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: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #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: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #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: #333333 !important;
}
.text-success {
  color: #92bda3 !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: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #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: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #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: #333333 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23c19b76' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rzMgHGam4n .nav-item:focus,
.cid-rzMgHGam4n .nav-link:focus {
  outline: none;
}
.cid-rzMgHGam4n a.nav-link:focus {
  color: #ffffff !important;
}
.cid-rzMgHGam4n .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.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 - 6.1rem);
  }
}
.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: #ffffff !important;
}
.cid-rzMgHGam4n .dropdown-item:hover {
  color: #000000 !important;
}
.cid-rzMgHGam4n .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  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 #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-rzMgHGam4n .dropdown-item:hover {
    background: #e6e6e6 !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-rzMgGd484C {
  z-index: 1;
  background-image: url("../../../assets/images/domaine-de-petit-vigne-location-salles-narbonne.webp");
}
.cid-rzMgGd484C .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rzMgGd484C .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rzMgGd484C .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rzMgGd484C .input-wrap {
  background: #fcfcfc;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  line-height: 18px;
  margin: 0;
  font-weight: 300;
}
.cid-rzMgGd484C .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rzMgGd484C .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rzMgGd484C .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rzMgGd484C .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rzMgGd484C .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rzMgGd484C .check-in-input,
.cid-rzMgGd484C .check-out-input,
.cid-rzMgGd484C .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rzMgGd484C .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rzMgGd484C .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rzMgGd484C .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rzMgGd484C .datepicker {
    left: 10% !important;
  }
}
.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;
  text-align: left;
}
.cid-tOArz1rxmS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tOArz1rxmS .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOArz1rxmS .mbr-section-subtitle,
.cid-tOArz1rxmS .mbr-text {
  color: #878787;
}
.cid-tOArz1rxmS .wrapper {
  position: relative;
  padding: 2rem;
}
.cid-tOArz1rxmS .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tOArz1rxmS .wrapper .content-block {
  padding: 2rem;
  position: relative;
}
.cid-tOArz1rxmS .wrapper .content-block > *:not(.mbr-overlay) {
  position: relative;
}
.cid-tOArz1rxmS .wrapper .content-block .mbr-overlay {
  background: #ffffff;
  opacity: 0.9;
}
.cid-tOArz1rxmS .wrapper .content-block .mbr-text {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOArz1rxmS .content-section {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tOArz1rxmS .wrapper {
    padding: 1rem;
  }
  .cid-tOArz1rxmS .wrapper .content-block {
    padding: 1rem;
  }
}
.cid-tOArz1rxmS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOArz1rxmS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOArz1rxmS .mbr-text,
.cid-tOArz1rxmS .mbr-section-btn {
  color: #000000;
}
.cid-tOwhiPl9uh {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tOwhiPl9uh .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOwhiPl9uh .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOwhiPl9uh .title {
    width: 100% !important;
  }
}
.cid-tOwhm0ZHN1 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tOwhm0ZHN1 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tOwhm0ZHN1 .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-tOwhm0ZHN1 .counter-container ol li {
  list-style: none;
  position: relative;
}
.cid-tOwhm0ZHN1 .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 2px;
  padding-left: 1px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #c19b76;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-rzMgTEX4qU {
  padding-top: 45px;
  padding-bottom: 45px;
  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;
  }
}
.cid-rzMgTEX4qU .main-title {
  color: #a2784f;
}
.cid-tOwoFOTG7s {
  background-color: #000000;
}
.cid-tOwoFOTG7s .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOwoFOTG7s .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOwoFOTG7s .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOwoFOTG7s .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOwoFOTG7s .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOwoFOTG7s .image-element {
    padding-right: 0;
  }
}
.cid-tOwoFOTG7s .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOwoFOTG7s .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOwoFOTG7s .brown {
  color: #c19b76;
}
.cid-tOwoFOTG7s .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-tOwoFOTG7s .paragraphs-wrapper .first-paragraph,
.cid-tOwoFOTG7s .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOwoFOTG7s .image-element {
    padding-bottom: 1rem;
  }
  .cid-tOwoFOTG7s .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tOwoFOTG7s .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOwoFOTG7s .paragraphs-wrapper .first-paragraph,
  .cid-tOwoFOTG7s .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOwoFOTG7s .first-paragraph,
  .cid-tOwoFOTG7s .second-paragraph {
    width: 50%;
  }
  .cid-tOwoFOTG7s .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOwoFOTG7s .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOwoFOTG7s .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOwoFOTG7s .mbr-section-title,
  .cid-tOwoFOTG7s .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOwoFOTG7s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOwoFOTG7s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOwoFOTG7s .mbr-text,
.cid-tOwoFOTG7s .mbr-section-btn {
  color: #b7b6b6;
}
.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-rzMgZGPH0E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzMgZGPH0E .google-map {
  width: 100%;
  height: 25rem;
}
.cid-rzMgZGPH0E .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-rzMi9GHrgW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOB3tsYufq .nav-item:focus,
.cid-tOB3tsYufq .nav-link:focus {
  outline: none;
}
.cid-tOB3tsYufq a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tOB3tsYufq .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tOB3tsYufq .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tOB3tsYufq .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tOB3tsYufq .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-tOB3tsYufq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOB3tsYufq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-tOB3tsYufq .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tOB3tsYufq .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tOB3tsYufq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOB3tsYufq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOB3tsYufq .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tOB3tsYufq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOB3tsYufq .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-tOB3tsYufq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOB3tsYufq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tOB3tsYufq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOB3tsYufq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOB3tsYufq .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tOB3tsYufq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOB3tsYufq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOB3tsYufq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOB3tsYufq .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-tOB3tsYufq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOB3tsYufq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOB3tsYufq .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tOB3tsYufq .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tOB3tsYufq .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOB3tsYufq .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tOB3tsYufq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOB3tsYufq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOB3tsYufq .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-tOB3tsYufq .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tOB3tsYufq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tOB3tsYufq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOB3tsYufq .dropdown-item.active,
.cid-tOB3tsYufq .dropdown-item:active {
  background-color: transparent;
}
.cid-tOB3tsYufq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOB3tsYufq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOB3tsYufq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOB3tsYufq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tOB3tsYufq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tOB3tsYufq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOB3tsYufq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOB3tsYufq .navbar-buttons {
  text-align: center;
}
.cid-tOB3tsYufq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOB3tsYufq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOB3tsYufq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOB3tsYufq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOB3tsYufq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOB3tsYufq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOB3tsYufq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOB3tsYufq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOB3tsYufq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOB3tsYufq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOB3tsYufq .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOB3tsYufq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tOB3tsYufq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tOB3tsYufq .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-tOB3tsYufq .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tOB3tsYufq .nav-link:hover,
.cid-tOB3tsYufq .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tOB3tsYufq .dropdown-item:hover {
  color: #000000 !important;
}
.cid-tOB3tsYufq .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tOB3tsYufq .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tOB3tsYufq .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tOB3tsYufq .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tOB3tsYufq .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tOB3tsYufq .dropdown-menu {
    top: 100%;
  }
  .cid-tOB3tsYufq .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tOB3tsYufq .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tOB3tsYufq .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tOB3tsYufq .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tOB3ttlxCM {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/location-salles-de-reception-narbonne-1.jpg");
}
.cid-tOB3ttlxCM .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tOB3ttlxCM .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tOB3ttlxCM .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOB3ttlxCM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOB3ttlxCM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOB3ttlxCM .mbr-section-title {
  text-align: center;
}
.cid-tOB7uUxSAU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tOB7uUxSAU .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOB7uUxSAU .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOB7uUxSAU .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-tOB7uUxSAU .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 991px) {
  .cid-tOB7uUxSAU .image-element {
    padding-right: 0;
  }
}
.cid-tOB7uUxSAU .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOB7uUxSAU .mbr-section-subtitle,
.cid-tOB7uUxSAU .mbr-text {
  color: #878787;
}
.cid-tOB7uUxSAU .mbr-text {
  line-height: 27px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOB7uUxSAU .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tOB7uUxSAU .text-element {
    padding-top: 0;
  }
}
.cid-tOB7uUxSAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOB7uUxSAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOB7uUxSAU .mbr-text,
.cid-tOB7uUxSAU .mbr-section-btn {
  color: #000000;
}
.cid-tOB3ttLqlQ {
  background-color: #000000;
}
.cid-tOB3ttLqlQ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOB3ttLqlQ .underline .line {
  width: 2rem;
  height: 1px;
  background: #c19b76;
  display: inline-block;
}
.cid-tOB3ttLqlQ .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOB3ttLqlQ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOB3ttLqlQ .image-element {
    padding-left: 0;
  }
}
.cid-tOB3ttLqlQ .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOB3ttLqlQ .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOB3ttLqlQ .brown {
  color: #c19b76;
}
.cid-tOB3ttLqlQ .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-tOB3ttLqlQ .paragraphs-wrapper .first-paragraph,
.cid-tOB3ttLqlQ .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOB3ttLqlQ .image-element {
    padding-top: 1rem;
  }
  .cid-tOB3ttLqlQ .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOB3ttLqlQ .paragraphs-wrapper .first-paragraph,
  .cid-tOB3ttLqlQ .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOB3ttLqlQ .first-paragraph,
  .cid-tOB3ttLqlQ .second-paragraph {
    width: 50%;
  }
  .cid-tOB3ttLqlQ .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOB3ttLqlQ .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOB3ttLqlQ .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOB3ttLqlQ .mbr-section-title,
  .cid-tOB3ttLqlQ .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOB3ttLqlQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOB3ttLqlQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOB3ttLqlQ .mbr-section-title {
  color: #c19b76;
}
.cid-tOB3ttLqlQ P {
  color: #efefef;
}
.cid-tOBd9J4R2E {
  background-color: #000000;
}
.cid-tOBd9J4R2E .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOBd9J4R2E .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOBd9J4R2E .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOBd9J4R2E .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOBd9J4R2E .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOBd9J4R2E .image-element {
    padding-right: 0;
  }
}
.cid-tOBd9J4R2E .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOBd9J4R2E .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOBd9J4R2E .brown {
  color: #c19b76;
}
.cid-tOBd9J4R2E .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-tOBd9J4R2E .paragraphs-wrapper .first-paragraph,
.cid-tOBd9J4R2E .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOBd9J4R2E .image-element {
    padding-bottom: 1rem;
  }
  .cid-tOBd9J4R2E .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tOBd9J4R2E .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOBd9J4R2E .paragraphs-wrapper .first-paragraph,
  .cid-tOBd9J4R2E .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOBd9J4R2E .first-paragraph,
  .cid-tOBd9J4R2E .second-paragraph {
    width: 50%;
  }
  .cid-tOBd9J4R2E .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOBd9J4R2E .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOBd9J4R2E .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBd9J4R2E .mbr-section-title,
  .cid-tOBd9J4R2E .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOBd9J4R2E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBd9J4R2E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBd9J4R2E .mbr-text,
.cid-tOBd9J4R2E .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tOBd9J4R2E .mbr-section-title {
  text-align: left;
}
.cid-tOBlOYe9ir {
  background-color: #000000;
}
.cid-tOBlOYe9ir .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOBlOYe9ir .underline .line {
  width: 2rem;
  height: 1px;
  background: #c19b76;
  display: inline-block;
}
.cid-tOBlOYe9ir .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOBlOYe9ir .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOBlOYe9ir .image-element {
    padding-left: 0;
  }
}
.cid-tOBlOYe9ir .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOBlOYe9ir .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOBlOYe9ir .brown {
  color: #c19b76;
}
.cid-tOBlOYe9ir .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-tOBlOYe9ir .paragraphs-wrapper .first-paragraph,
.cid-tOBlOYe9ir .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOBlOYe9ir .image-element {
    padding-top: 1rem;
  }
  .cid-tOBlOYe9ir .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOBlOYe9ir .paragraphs-wrapper .first-paragraph,
  .cid-tOBlOYe9ir .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOBlOYe9ir .first-paragraph,
  .cid-tOBlOYe9ir .second-paragraph {
    width: 50%;
  }
  .cid-tOBlOYe9ir .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOBlOYe9ir .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOBlOYe9ir .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBlOYe9ir .mbr-section-title,
  .cid-tOBlOYe9ir .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOBlOYe9ir .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBlOYe9ir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBlOYe9ir .mbr-section-title {
  color: #c19b76;
}
.cid-tOBlOYe9ir P {
  color: #efefef;
}
.cid-tQz7u17E3P {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tQz7u17E3P .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tQz7u17E3P .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tQz7u17E3P .title {
    width: 100% !important;
  }
}
.cid-tOB3tuYS1A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOB3tuYS1A .google-map {
  width: 100%;
  height: 25rem;
}
.cid-tOB3tuYS1A .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tOB3tvzqGe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOwDMbRiKS .nav-item:focus,
.cid-tOwDMbRiKS .nav-link:focus {
  outline: none;
}
.cid-tOwDMbRiKS a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tOwDMbRiKS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tOwDMbRiKS .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tOwDMbRiKS .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tOwDMbRiKS .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-tOwDMbRiKS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOwDMbRiKS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-tOwDMbRiKS .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tOwDMbRiKS .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tOwDMbRiKS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOwDMbRiKS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOwDMbRiKS .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tOwDMbRiKS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOwDMbRiKS .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-tOwDMbRiKS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOwDMbRiKS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tOwDMbRiKS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOwDMbRiKS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOwDMbRiKS .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tOwDMbRiKS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOwDMbRiKS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOwDMbRiKS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOwDMbRiKS .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-tOwDMbRiKS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOwDMbRiKS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOwDMbRiKS .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tOwDMbRiKS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tOwDMbRiKS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOwDMbRiKS .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tOwDMbRiKS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOwDMbRiKS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOwDMbRiKS .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-tOwDMbRiKS .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tOwDMbRiKS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tOwDMbRiKS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOwDMbRiKS .dropdown-item.active,
.cid-tOwDMbRiKS .dropdown-item:active {
  background-color: transparent;
}
.cid-tOwDMbRiKS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOwDMbRiKS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOwDMbRiKS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOwDMbRiKS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tOwDMbRiKS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tOwDMbRiKS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOwDMbRiKS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOwDMbRiKS .navbar-buttons {
  text-align: center;
}
.cid-tOwDMbRiKS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOwDMbRiKS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOwDMbRiKS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOwDMbRiKS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOwDMbRiKS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOwDMbRiKS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOwDMbRiKS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOwDMbRiKS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOwDMbRiKS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOwDMbRiKS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOwDMbRiKS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOwDMbRiKS a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tOwDMbRiKS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tOwDMbRiKS .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-tOwDMbRiKS .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tOwDMbRiKS .nav-link:hover,
.cid-tOwDMbRiKS .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tOwDMbRiKS .dropdown-item:hover {
  color: #000000 !important;
}
.cid-tOwDMbRiKS .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tOwDMbRiKS .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tOwDMbRiKS .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tOwDMbRiKS .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tOwDMbRiKS .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tOwDMbRiKS .dropdown-menu {
    top: 100%;
  }
  .cid-tOwDMbRiKS .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tOwDMbRiKS .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tOwDMbRiKS .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tOwDMbRiKS .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tOwE8RzjoZ {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/location-salles-de-reception-narbonne-1.jpg");
}
.cid-tOwE8RzjoZ .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tOwE8RzjoZ .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tOwE8RzjoZ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOwE8RzjoZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOwE8RzjoZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOwE8RzjoZ .mbr-section-title {
  text-align: center;
}
.cid-tOwF7DuBzx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tOwF7DuBzx .row {
  background-color: #ffffff;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOwF7DuBzx .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-tOwF7DuBzx .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tOwF7DuBzx .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOwF7DuBzx .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOwF7DuBzx .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOwF7DuBzx .image-element {
    padding: 0 15px;
  }
  .cid-tOwF7DuBzx .text-element {
    padding: 2rem 1rem;
  }
  .cid-tOwF7DuBzx .text-element .mbr-text {
    padding: 1rem;
  }
  .cid-tOwF7DuBzx .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.cid-tOwF7DuBzx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOwF7DuBzx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQzdau75v4 {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tQzdau75v4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tQzdau75v4 .mbr-section-title,
.cid-tQzdau75v4 .mbr-section-subtitle,
.cid-tQzdau75v4 .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tQzdau75v4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tQzdau75v4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tQzdau75v4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tQzdau75v4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tQzdau75v4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-tQzdau75v4 .icon-focus {
  display: none;
}
.cid-tQzdau75v4 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tQzdau75v4 ul {
  font-size: 0;
}
.cid-tQzdau75v4 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tQzdau75v4 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tQzdau75v4 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-tQzdau75v4 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tQzdau75v4 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tQzdau75v4 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tQzdau75v4 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tQzdau75v4 .btn:hover {
  background: transparent !important;
}
.cid-tQzdau75v4 .btn:hover:before {
  background: transparent !important;
}
.cid-tQzdau75v4 .btn:before {
  background-color: transparent !important;
}
.cid-tQzdau75v4 .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-tOwJkTwkm5 {
  background-color: #000000;
}
.cid-tOwJkTwkm5 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOwJkTwkm5 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOwJkTwkm5 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOwJkTwkm5 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOwJkTwkm5 .image-element {
    padding-left: 0;
  }
}
.cid-tOwJkTwkm5 .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOwJkTwkm5 .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOwJkTwkm5 .brown {
  color: #c19b76;
}
.cid-tOwJkTwkm5 .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-tOwJkTwkm5 .paragraphs-wrapper .first-paragraph,
.cid-tOwJkTwkm5 .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOwJkTwkm5 .image-element {
    padding-top: 1rem;
  }
  .cid-tOwJkTwkm5 .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOwJkTwkm5 .paragraphs-wrapper .first-paragraph,
  .cid-tOwJkTwkm5 .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOwJkTwkm5 .first-paragraph,
  .cid-tOwJkTwkm5 .second-paragraph {
    width: 50%;
  }
  .cid-tOwJkTwkm5 .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOwJkTwkm5 .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOwJkTwkm5 .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOwJkTwkm5 .mbr-section-title,
  .cid-tOwJkTwkm5 .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOwJkTwkm5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOwJkTwkm5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOwJkTwkm5 P {
  color: #d8d7d7;
}
.cid-tOwDMd9g9R {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tOwDMd9g9R .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOwDMd9g9R .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOwDMd9g9R .title {
    width: 100% !important;
  }
}
.cid-tOwLKm49kD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tOwLKm49kD .line {
  background-color: #c19b76;
  color: #c19b76;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tOwLKm49kD .mbr-text {
  margin: 0;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .cid-tOwLKm49kD .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-tOwMHAftpM {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tOwMHAftpM .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOwMHAftpM .mbr-section-title,
.cid-tOwMHAftpM .mbr-section-subtitle,
.cid-tOwMHAftpM .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tOwMHAftpM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tOwMHAftpM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOwMHAftpM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tOwMHAftpM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tOwMHAftpM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-tOwMHAftpM .icon-focus {
  display: none;
}
.cid-tOwMHAftpM .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tOwMHAftpM ul {
  font-size: 0;
}
.cid-tOwMHAftpM .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tOwMHAftpM .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tOwMHAftpM .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-tOwMHAftpM .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tOwMHAftpM .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tOwMHAftpM .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tOwMHAftpM .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tOwMHAftpM .btn:hover {
  background: transparent !important;
}
.cid-tOwMHAftpM .btn:hover:before {
  background: transparent !important;
}
.cid-tOwMHAftpM .btn:before {
  background-color: transparent !important;
}
.cid-tOwMHAftpM .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-tOwDMdWNRp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOwDMdWNRp .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOwDMdWNRp .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOwDMdWNRp .title {
    width: 100% !important;
  }
}
.cid-tOwDMe6ZXm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOwDMe6ZXm .google-map {
  width: 100%;
  height: 25rem;
}
.cid-tOwDMe6ZXm .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tOwDMeA0MA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOBFlWTG1c .nav-item:focus,
.cid-tOBFlWTG1c .nav-link:focus {
  outline: none;
}
.cid-tOBFlWTG1c a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tOBFlWTG1c .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tOBFlWTG1c .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tOBFlWTG1c .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tOBFlWTG1c .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-tOBFlWTG1c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOBFlWTG1c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-tOBFlWTG1c .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tOBFlWTG1c .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tOBFlWTG1c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOBFlWTG1c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOBFlWTG1c .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tOBFlWTG1c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOBFlWTG1c .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-tOBFlWTG1c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOBFlWTG1c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tOBFlWTG1c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOBFlWTG1c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOBFlWTG1c .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tOBFlWTG1c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOBFlWTG1c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOBFlWTG1c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOBFlWTG1c .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-tOBFlWTG1c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOBFlWTG1c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOBFlWTG1c .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tOBFlWTG1c .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tOBFlWTG1c .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOBFlWTG1c .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tOBFlWTG1c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOBFlWTG1c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOBFlWTG1c .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-tOBFlWTG1c .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tOBFlWTG1c .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tOBFlWTG1c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOBFlWTG1c .dropdown-item.active,
.cid-tOBFlWTG1c .dropdown-item:active {
  background-color: transparent;
}
.cid-tOBFlWTG1c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOBFlWTG1c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOBFlWTG1c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOBFlWTG1c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tOBFlWTG1c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tOBFlWTG1c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOBFlWTG1c ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOBFlWTG1c .navbar-buttons {
  text-align: center;
}
.cid-tOBFlWTG1c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOBFlWTG1c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOBFlWTG1c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOBFlWTG1c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOBFlWTG1c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOBFlWTG1c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOBFlWTG1c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOBFlWTG1c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOBFlWTG1c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOBFlWTG1c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOBFlWTG1c .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOBFlWTG1c a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tOBFlWTG1c .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tOBFlWTG1c .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-tOBFlWTG1c .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tOBFlWTG1c .nav-link:hover,
.cid-tOBFlWTG1c .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tOBFlWTG1c .dropdown-item:hover {
  color: #000000 !important;
}
.cid-tOBFlWTG1c .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tOBFlWTG1c .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tOBFlWTG1c .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tOBFlWTG1c .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tOBFlWTG1c .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tOBFlWTG1c .dropdown-menu {
    top: 100%;
  }
  .cid-tOBFlWTG1c .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tOBFlWTG1c .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tOBFlWTG1c .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tOBFlWTG1c .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tOBFlXfdHH {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/location-salles-de-reception-narbonne-1.jpg");
}
.cid-tOBFlXfdHH .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tOBFlXfdHH .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tOBFlXfdHH .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOBFlXfdHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBFlXfdHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBFlXfdHH .mbr-section-title {
  text-align: center;
}
.cid-tOBFlXt9Dl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-tOBFlXt9Dl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOBFlXt9Dl .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOBFlXt9Dl .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-tOBFlXt9Dl .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 991px) {
  .cid-tOBFlXt9Dl .image-element {
    padding-right: 0;
  }
}
.cid-tOBFlXt9Dl .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOBFlXt9Dl .mbr-section-subtitle,
.cid-tOBFlXt9Dl .mbr-text {
  color: #878787;
}
.cid-tOBFlXt9Dl .mbr-text {
  line-height: 27px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOBFlXt9Dl .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tOBFlXt9Dl .text-element {
    padding-top: 0;
  }
}
.cid-tOBFlXt9Dl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBFlXt9Dl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBFlXt9Dl .mbr-text,
.cid-tOBFlXt9Dl .mbr-section-btn {
  color: #000000;
}
.cid-tOBFlXH4a9 {
  background-color: #000000;
}
.cid-tOBFlXH4a9 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOBFlXH4a9 .underline .line {
  width: 2rem;
  height: 1px;
  background: #c19b76;
  display: inline-block;
}
.cid-tOBFlXH4a9 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOBFlXH4a9 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOBFlXH4a9 .image-element {
    padding-left: 0;
  }
}
.cid-tOBFlXH4a9 .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOBFlXH4a9 .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOBFlXH4a9 .brown {
  color: #c19b76;
}
.cid-tOBFlXH4a9 .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-tOBFlXH4a9 .paragraphs-wrapper .first-paragraph,
.cid-tOBFlXH4a9 .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOBFlXH4a9 .image-element {
    padding-top: 1rem;
  }
  .cid-tOBFlXH4a9 .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOBFlXH4a9 .paragraphs-wrapper .first-paragraph,
  .cid-tOBFlXH4a9 .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOBFlXH4a9 .first-paragraph,
  .cid-tOBFlXH4a9 .second-paragraph {
    width: 50%;
  }
  .cid-tOBFlXH4a9 .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOBFlXH4a9 .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOBFlXH4a9 .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBFlXH4a9 .mbr-section-title,
  .cid-tOBFlXH4a9 .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOBFlXH4a9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBFlXH4a9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBFlXH4a9 .mbr-section-title {
  color: #c19b76;
}
.cid-tOBFlXH4a9 P {
  color: #efefef;
}
.cid-tOBFlXUQoB {
  background-color: #000000;
}
.cid-tOBFlXUQoB .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOBFlXUQoB .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOBFlXUQoB .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOBFlXUQoB .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOBFlXUQoB .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOBFlXUQoB .image-element {
    padding-right: 0;
  }
}
.cid-tOBFlXUQoB .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOBFlXUQoB .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOBFlXUQoB .brown {
  color: #c19b76;
}
.cid-tOBFlXUQoB .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-tOBFlXUQoB .paragraphs-wrapper .first-paragraph,
.cid-tOBFlXUQoB .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOBFlXUQoB .image-element {
    padding-bottom: 1rem;
  }
  .cid-tOBFlXUQoB .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tOBFlXUQoB .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOBFlXUQoB .paragraphs-wrapper .first-paragraph,
  .cid-tOBFlXUQoB .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOBFlXUQoB .first-paragraph,
  .cid-tOBFlXUQoB .second-paragraph {
    width: 50%;
  }
  .cid-tOBFlXUQoB .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOBFlXUQoB .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOBFlXUQoB .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBFlXUQoB .mbr-section-title,
  .cid-tOBFlXUQoB .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOBFlXUQoB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBFlXUQoB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBFlXUQoB .mbr-text,
.cid-tOBFlXUQoB .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tOBFlXUQoB .mbr-section-title {
  text-align: left;
  color: #c19b76;
}
.cid-tOBFlY8leT {
  background-color: #000000;
}
.cid-tOBFlY8leT .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOBFlY8leT .underline .line {
  width: 2rem;
  height: 1px;
  background: #c19b76;
  display: inline-block;
}
.cid-tOBFlY8leT .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tOBFlY8leT .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-tOBFlY8leT .image-element {
    padding-left: 0;
  }
}
.cid-tOBFlY8leT .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-tOBFlY8leT .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-tOBFlY8leT .brown {
  color: #c19b76;
}
.cid-tOBFlY8leT .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-tOBFlY8leT .paragraphs-wrapper .first-paragraph,
.cid-tOBFlY8leT .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOBFlY8leT .image-element {
    padding-top: 1rem;
  }
  .cid-tOBFlY8leT .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tOBFlY8leT .paragraphs-wrapper .first-paragraph,
  .cid-tOBFlY8leT .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-tOBFlY8leT .first-paragraph,
  .cid-tOBFlY8leT .second-paragraph {
    width: 50%;
  }
  .cid-tOBFlY8leT .first-paragraph {
    padding-right: 0.5rem;
  }
  .cid-tOBFlY8leT .second-paragraph {
    padding-left: 0.5rem;
  }
  .cid-tOBFlY8leT .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBFlY8leT .mbr-section-title,
  .cid-tOBFlY8leT .mbr-section-btn {
    text-align: left;
  }
}
.cid-tOBFlY8leT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBFlY8leT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBFlY8leT .mbr-section-title {
  color: #c19b76;
}
.cid-tOBFlY8leT P {
  color: #efefef;
}
.cid-tOBFlY8leT .mbr-text,
.cid-tOBFlY8leT .mbr-section-btn {
  color: #ffffff;
}
.cid-tQz9EZohMk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tQz9EZohMk .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tQz9EZohMk .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tQz9EZohMk .title {
    width: 100% !important;
  }
}
.cid-tOBFlYtdil {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOBFlYtdil .google-map {
  width: 100%;
  height: 25rem;
}
.cid-tOBFlYtdil .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tOBFlYXXfB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOBZui9OZL .nav-item:focus,
.cid-tOBZui9OZL .nav-link:focus {
  outline: none;
}
.cid-tOBZui9OZL a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tOBZui9OZL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tOBZui9OZL .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tOBZui9OZL .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tOBZui9OZL .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-tOBZui9OZL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOBZui9OZL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-tOBZui9OZL .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tOBZui9OZL .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tOBZui9OZL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOBZui9OZL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOBZui9OZL .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tOBZui9OZL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOBZui9OZL .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-tOBZui9OZL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOBZui9OZL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tOBZui9OZL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOBZui9OZL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOBZui9OZL .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tOBZui9OZL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOBZui9OZL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOBZui9OZL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOBZui9OZL .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-tOBZui9OZL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOBZui9OZL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOBZui9OZL .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tOBZui9OZL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tOBZui9OZL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOBZui9OZL .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tOBZui9OZL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOBZui9OZL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOBZui9OZL .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-tOBZui9OZL .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tOBZui9OZL .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tOBZui9OZL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOBZui9OZL .dropdown-item.active,
.cid-tOBZui9OZL .dropdown-item:active {
  background-color: transparent;
}
.cid-tOBZui9OZL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOBZui9OZL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOBZui9OZL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOBZui9OZL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tOBZui9OZL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tOBZui9OZL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOBZui9OZL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOBZui9OZL .navbar-buttons {
  text-align: center;
}
.cid-tOBZui9OZL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOBZui9OZL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOBZui9OZL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOBZui9OZL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOBZui9OZL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOBZui9OZL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOBZui9OZL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOBZui9OZL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOBZui9OZL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOBZui9OZL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOBZui9OZL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOBZui9OZL a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tOBZui9OZL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tOBZui9OZL .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-tOBZui9OZL .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tOBZui9OZL .nav-link:hover,
.cid-tOBZui9OZL .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tOBZui9OZL .dropdown-item:hover {
  color: #000000 !important;
}
.cid-tOBZui9OZL .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tOBZui9OZL .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tOBZui9OZL .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tOBZui9OZL .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tOBZui9OZL .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tOBZui9OZL .dropdown-menu {
    top: 100%;
  }
  .cid-tOBZui9OZL .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tOBZui9OZL .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tOBZui9OZL .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tOBZui9OZL .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tOBZuiwhbN {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/location-salles-de-reception-narbonne-1.jpg");
}
.cid-tOBZuiwhbN .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tOBZuiwhbN .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tOBZuiwhbN .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOBZuiwhbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBZuiwhbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBZuiwhbN .mbr-section-title {
  text-align: center;
}
.cid-tOC0Hyv907 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOC0Hyv907 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOC0Hyv907 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOC0Hyv907 .title {
    width: 100% !important;
  }
}
.cid-tOFZ1yGgLg {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tOFZ1yGgLg .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOFZ1yGgLg .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOFZ1yGgLg .title {
    width: 100% !important;
  }
}
.cid-tOFZ1yGgLg .mbr-section-title {
  color: #c19b76;
}
.cid-tOC4eQX32e {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-tOC4eQX32e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOC4eQX32e .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-tOC4eQX32e .container {
    padding: 0 20px;
  }
  .cid-tOC4eQX32e .container .row {
    padding: 0;
  }
}
.cid-tOC4eQX32e .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tOC4eQX32e .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tOC4eQX32e .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tOC4eQX32e .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tOC4eQX32e .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-tOC4eQX32e .video-block .video-wrapper .app-video-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tOC4eQX32e .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tOC4eQX32e .video-block .video-wrapper .app-video-wrapper:before {
  color: #222222;
  text-shadow: none;
}
.cid-tOC4eQX32e .mbr-section-title {
  color: #222222;
}
.cid-tOC4eQX32e .mbr-text {
  color: #878787;
}
.cid-tOC4eQX32e .mbr-section-title,
.cid-tOC4eQX32e .mbr-section-btn {
  color: #ffffff;
}
.cid-tOG6NLeg31 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOG6NLeg31 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOG6NLeg31 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOG6NLeg31 .title {
    width: 100% !important;
  }
}
.cid-tOG6J3a8Pu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tOG6J3a8Pu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tOG6J3a8Pu .row {
  background-color: #ffffff;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOG6J3a8Pu .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-tOG6J3a8Pu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tOG6J3a8Pu .underline .line {
  width: 2rem;
  height: 1px;
  background: #c19b76;
  display: inline-block;
}
.cid-tOG6J3a8Pu .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOG6J3a8Pu .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOG6J3a8Pu .image-element {
    padding: 0 15px;
  }
  .cid-tOG6J3a8Pu .text-element {
    padding: 2rem 1rem;
  }
  .cid-tOG6J3a8Pu .text-element .mbr-text {
    padding: 1rem;
  }
  .cid-tOG6J3a8Pu .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.cid-tOG6J3a8Pu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOG6J3a8Pu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOG6J3a8Pu .mbr-text,
.cid-tOG6J3a8Pu .mbr-section-btn {
  color: #000000;
}
.cid-tOC7rJMzoH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOC7rJMzoH .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tOC7rJMzoH .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOC7rJMzoH .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 0;
}
.cid-tOC7rJMzoH .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 991px) {
  .cid-tOC7rJMzoH .image-element {
    padding-right: 0;
  }
}
.cid-tOC7rJMzoH .text-element {
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOC7rJMzoH .mbr-section-subtitle,
.cid-tOC7rJMzoH .mbr-text {
  color: #878787;
}
.cid-tOC7rJMzoH .mbr-text {
  line-height: 27px;
  padding: 2.5rem;
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOC7rJMzoH .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tOC7rJMzoH .text-element {
    padding-top: 0;
  }
}
.cid-tOC7rJMzoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOC7rJMzoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOC7rJMzoH .mbr-text,
.cid-tOC7rJMzoH .mbr-section-btn {
  color: #ffffff;
}
.cid-tOC7rJMzoH .mbr-section-subtitle,
.cid-tOC7rJMzoH .underline {
  color: #ffffff;
}
.cid-tOC7rJMzoH .mbr-section-title {
  color: #c19b76;
}
.cid-tQzb8osyPd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tQzb8osyPd .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tQzb8osyPd .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tQzb8osyPd .title {
    width: 100% !important;
  }
}
.cid-tOBZukybsa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOBZukybsa .google-map {
  width: 100%;
  height: 25rem;
}
.cid-tOBZukybsa .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tOBZul2oL1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOG8vcsAYW .nav-item:focus,
.cid-tOG8vcsAYW .nav-link:focus {
  outline: none;
}
.cid-tOG8vcsAYW a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tOG8vcsAYW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-tOG8vcsAYW .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-tOG8vcsAYW .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tOG8vcsAYW .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-tOG8vcsAYW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOG8vcsAYW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.1rem);
  }
}
.cid-tOG8vcsAYW .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tOG8vcsAYW .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tOG8vcsAYW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tOG8vcsAYW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOG8vcsAYW .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tOG8vcsAYW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOG8vcsAYW .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-tOG8vcsAYW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOG8vcsAYW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tOG8vcsAYW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tOG8vcsAYW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOG8vcsAYW .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tOG8vcsAYW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tOG8vcsAYW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOG8vcsAYW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOG8vcsAYW .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-tOG8vcsAYW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOG8vcsAYW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOG8vcsAYW .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tOG8vcsAYW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tOG8vcsAYW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tOG8vcsAYW .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-tOG8vcsAYW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOG8vcsAYW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOG8vcsAYW .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-tOG8vcsAYW .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tOG8vcsAYW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tOG8vcsAYW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOG8vcsAYW .dropdown-item.active,
.cid-tOG8vcsAYW .dropdown-item:active {
  background-color: transparent;
}
.cid-tOG8vcsAYW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOG8vcsAYW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOG8vcsAYW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOG8vcsAYW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tOG8vcsAYW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tOG8vcsAYW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOG8vcsAYW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOG8vcsAYW .navbar-buttons {
  text-align: center;
}
.cid-tOG8vcsAYW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOG8vcsAYW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOG8vcsAYW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOG8vcsAYW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOG8vcsAYW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOG8vcsAYW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOG8vcsAYW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOG8vcsAYW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOG8vcsAYW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOG8vcsAYW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOG8vcsAYW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tOG8vcsAYW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tOG8vcsAYW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tOG8vcsAYW .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-tOG8vcsAYW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tOG8vcsAYW .nav-link:hover,
.cid-tOG8vcsAYW .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tOG8vcsAYW .dropdown-item:hover {
  color: #000000 !important;
}
.cid-tOG8vcsAYW .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tOG8vcsAYW .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tOG8vcsAYW .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tOG8vcsAYW .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tOG8vcsAYW .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tOG8vcsAYW .dropdown-menu {
    top: 100%;
  }
  .cid-tOG8vcsAYW .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tOG8vcsAYW .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tOG8vcsAYW .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tOG8vcsAYW .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tOG8vcOrjV {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/location-salles-de-reception-narbonne-1.jpg");
}
.cid-tOG8vcOrjV .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-tOG8vcOrjV .mbr-arrow i {
  color: #ffffff !important;
}
.cid-tOG8vcOrjV .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tOG8vcOrjV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOG8vcOrjV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOG8vcOrjV .mbr-section-title {
  text-align: center;
}
.cid-tOG8vd1Omv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOG8vd1Omv .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOG8vd1Omv .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOG8vd1Omv .title {
    width: 100% !important;
  }
}
.cid-tOGbdlzRwX {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOGbdlzRwX blockquote {
  border-color: #c19b76 !important;
}
.cid-tOG9YjBcX9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tOG9YjBcX9 p {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-tOG9YjBcX9 .row {
    justify-content: flex-start !important;
  }
}
.cid-tOG9YjBcX9 .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-tOG9YjBcX9 .mbr-section-title {
  text-align: center;
}
.cid-tOG9YjBcX9 .mbr-section-subtitle {
  text-align: center;
}
.cid-tOG9YjBcX9 .card-container {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-tOG9YjBcX9 .card-container {
    margin-bottom: 2rem;
  }
}
.cid-tOG9YjBcX9 .card-wrapper {
  display: flex;
  flex: auto;
  flex-grow: 0;
  padding: 1rem 0 2rem;
}
@media (max-width: 767px) {
  .cid-tOG9YjBcX9 .card-wrapper {
    padding-bottom: 1rem;
  }
}
.cid-tOG9YjBcX9 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1rem;
  color: #33d5ad;
}
.cid-tOG8vf9sLE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
