body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.6rem;
}
.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.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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: #84582e !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: #84582e !important;
  border-color: #84582e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4b321a !important;
  border-color: #4b321a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4b321a !important;
  border-color: #4b321a !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: #382614 !important;
  color: #382614 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #84582e !important;
  border-color: #84582e !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #84582e !important;
  border-color: #84582e !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: #84582e !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: #382614 !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: #84582e;
  border-color: #84582e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #84582e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ca9867;
}
.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*/
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #84582e;
}
/* 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: #84582e;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #84582e;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #84582e;
  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: #84582e;
  border-bottom-color: #84582e;
}
.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: #ffffff !important;
  background-color: #84582e !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='%2384582e' %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-tuJLM1QwdT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tuJLM1QwdT .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tuJLM1QwdT .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tuJLM1QwdT .title {
    width: 100% !important;
  }
}
.cid-tuJL4VexMC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tuJL4VexMC .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-tuJL4VexMC .modal-body .close {
  background: #1b1b1b;
}
.cid-tuJL4VexMC .modal-body .close span {
  font-style: normal;
}
.cid-tuJL4VexMC .carousel-inner > .active,
.cid-tuJL4VexMC .carousel-inner > .next,
.cid-tuJL4VexMC .carousel-inner > .prev {
  display: flex;
}
.cid-tuJL4VexMC .carousel-control .icon-next,
.cid-tuJL4VexMC .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tuJL4VexMC .carousel-control:hover {
  background: #84582e;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tuJL4VexMC .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tuJL4VexMC .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tuJL4VexMC .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tuJL4VexMC .boxed-slider > div {
  position: relative;
}
.cid-tuJL4VexMC .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-tuJL4VexMC .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tuJL4VexMC .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tuJL4VexMC .mbr-table-cell {
  padding: 0;
}
.cid-tuJL4VexMC .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tuJL4VexMC .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tuJL4VexMC .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-tuJL4VexMC .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-tuJL4VexMC .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tuJL4VexMC .carousel-item.active.right,
.cid-tuJL4VexMC .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tuJL4VexMC .carousel-item.active.left,
.cid-tuJL4VexMC .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tuJL4VexMC .carousel-item.active,
.cid-tuJL4VexMC .carousel-item.next.left,
.cid-tuJL4VexMC .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tuJL4VexMC .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tuJL4VexMC .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tuJL4VexMC .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tuJL4VexMC .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tuJL4VexMC .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tuJL4VexMC .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #84582e;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tuJL4VexMC .mbr-slider .carousel-indicators li.active,
.cid-tuJL4VexMC .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tuJL4VexMC .mbr-slider .carousel-indicators li::after,
.cid-tuJL4VexMC .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tuJL4VexMC .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tuJL4VexMC .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tuJL4VexMC .mbr-slider > .container img {
  width: 100%;
}
.cid-tuJL4VexMC .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tuJL4VexMC .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tuJL4VexMC .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tuJL4VexMC .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tuJL4VexMC .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tuJL4VexMC .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tuJL4VexMC .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tuJL4VexMC .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tuJL4VexMC .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tuJL4VexMC .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tuJL4VexMC .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tuJL4VexMC .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tuJL4VexMC .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tuJL4VexMC .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tuJL4VexMC .carousel-inner {
  height: 100%;
}
.cid-tuJL4VexMC .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tuJL4VexMC .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 680px;
  overflow: hidden;
}
.cid-tuJL4VexMC .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-tuJL4VexMC .content-slider-wrap {
  width: 100%;
}
.cid-tv0lIpurvH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tv0lIpurvH .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tv0lIpurvH .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tv0lIpurvH .title {
    width: 100% !important;
  }
}
.cid-tv0kNPmFBC {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #c19b76;
}
.cid-tv0kNPmFBC blockquote {
  border-color: #ffffff !important;
}
.cid-tv0kNPmFBC DIV {
  text-align: left;
  color: #ffffff;
}
.cid-tuJLerrYPd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tuJLerrYPd .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tuJLerrYPd .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tuJLerrYPd .card .card-header {
  background: #c19b76;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tuJLerrYPd .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tuJLerrYPd .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tuJLerrYPd .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tuJLerrYPd .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-tuJLerrYPd .card .panel-body {
  background: #ffffff;
}
.cid-tuJLerrYPd .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tuJLerrYPd .card-header h4,
  .cid-tuJLerrYPd .panel-body {
    padding: 1rem !important;
  }
}
.cid-tv0vffhc0d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tv0vffhc0d .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-tv0vffhc0d .modal-body .close {
  background: #1b1b1b;
}
.cid-tv0vffhc0d .modal-body .close span {
  font-style: normal;
}
.cid-tv0vffhc0d .carousel-inner > .active,
.cid-tv0vffhc0d .carousel-inner > .next,
.cid-tv0vffhc0d .carousel-inner > .prev {
  display: flex;
}
.cid-tv0vffhc0d .carousel-control .icon-next,
.cid-tv0vffhc0d .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tv0vffhc0d .carousel-control:hover {
  background: #84582e;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tv0vffhc0d .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tv0vffhc0d .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tv0vffhc0d .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tv0vffhc0d .boxed-slider > div {
  position: relative;
}
.cid-tv0vffhc0d .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-tv0vffhc0d .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tv0vffhc0d .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tv0vffhc0d .mbr-table-cell {
  padding: 0;
}
.cid-tv0vffhc0d .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tv0vffhc0d .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tv0vffhc0d .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-tv0vffhc0d .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-tv0vffhc0d .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tv0vffhc0d .carousel-item.active.right,
.cid-tv0vffhc0d .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tv0vffhc0d .carousel-item.active.left,
.cid-tv0vffhc0d .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tv0vffhc0d .carousel-item.active,
.cid-tv0vffhc0d .carousel-item.next.left,
.cid-tv0vffhc0d .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tv0vffhc0d .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tv0vffhc0d .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tv0vffhc0d .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tv0vffhc0d .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tv0vffhc0d .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tv0vffhc0d .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #84582e;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tv0vffhc0d .mbr-slider .carousel-indicators li.active,
.cid-tv0vffhc0d .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tv0vffhc0d .mbr-slider .carousel-indicators li::after,
.cid-tv0vffhc0d .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tv0vffhc0d .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tv0vffhc0d .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tv0vffhc0d .mbr-slider > .container img {
  width: 100%;
}
.cid-tv0vffhc0d .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tv0vffhc0d .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tv0vffhc0d .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tv0vffhc0d .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tv0vffhc0d .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tv0vffhc0d .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tv0vffhc0d .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tv0vffhc0d .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tv0vffhc0d .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tv0vffhc0d .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tv0vffhc0d .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tv0vffhc0d .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tv0vffhc0d .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tv0vffhc0d .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tv0vffhc0d .carousel-inner {
  height: 100%;
}
.cid-tv0vffhc0d .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tv0vffhc0d .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 680px;
  overflow: hidden;
}
.cid-tv0vffhc0d .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-tv0vffhc0d .content-slider-wrap {
  width: 100%;
}
.cid-tv0sZOhakz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tv0sZOhakz .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tv0sZOhakz .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tv0sZOhakz .card .card-header {
  background: #c19b76;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tv0sZOhakz .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tv0sZOhakz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tv0sZOhakz .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tv0sZOhakz .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-tv0sZOhakz .card .panel-body {
  background: #ffffff;
}
.cid-tv0sZOhakz .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tv0sZOhakz .card-header h4,
  .cid-tv0sZOhakz .panel-body {
    padding: 1rem !important;
  }
}
.cid-tuJNfN85nV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #c19b76;
}
.cid-tuJNfN85nV .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tuJNfN85nV .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tv0nl7vTRM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/chambre-2-1470x822.jpg");
}
.cid-tv0nl7vTRM .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tv0nl7vTRM .mbr-iconfont {
  font-size: 80px;
}
.cid-tv0oXRW2p8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tv0oXRW2p8 .first-col {
    padding-bottom: 1rem;
  }
}
.cid-tv0oXRW2p8 .mbr-section-title {
  color: #84582e;
}
.cid-tv0oXRW2p8 .mbr-section-subtitle {
  color: #84582e;
}
.cid-tvcVRHFZzW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tvcVRHFZzW .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tvcVRHFZzW .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tvcVRHFZzW .title {
    width: 100% !important;
  }
}
.cid-tvcVRIs9v2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvcVRIs9v2 .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-tvcVRIs9v2 .modal-body .close {
  background: #1b1b1b;
}
.cid-tvcVRIs9v2 .modal-body .close span {
  font-style: normal;
}
.cid-tvcVRIs9v2 .carousel-inner > .active,
.cid-tvcVRIs9v2 .carousel-inner > .next,
.cid-tvcVRIs9v2 .carousel-inner > .prev {
  display: flex;
}
.cid-tvcVRIs9v2 .carousel-control .icon-next,
.cid-tvcVRIs9v2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tvcVRIs9v2 .carousel-control:hover {
  background: #84582e;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvcVRIs9v2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tvcVRIs9v2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tvcVRIs9v2 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tvcVRIs9v2 .boxed-slider > div {
  position: relative;
}
.cid-tvcVRIs9v2 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-tvcVRIs9v2 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tvcVRIs9v2 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tvcVRIs9v2 .mbr-table-cell {
  padding: 0;
}
.cid-tvcVRIs9v2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tvcVRIs9v2 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tvcVRIs9v2 .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-tvcVRIs9v2 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-tvcVRIs9v2 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tvcVRIs9v2 .carousel-item.active.right,
.cid-tvcVRIs9v2 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tvcVRIs9v2 .carousel-item.active.left,
.cid-tvcVRIs9v2 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tvcVRIs9v2 .carousel-item.active,
.cid-tvcVRIs9v2 .carousel-item.next.left,
.cid-tvcVRIs9v2 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tvcVRIs9v2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #84582e;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators li.active,
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators li::after,
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tvcVRIs9v2 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tvcVRIs9v2 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tvcVRIs9v2 .mbr-slider > .container img {
  width: 100%;
}
.cid-tvcVRIs9v2 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tvcVRIs9v2 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tvcVRIs9v2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvcVRIs9v2 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tvcVRIs9v2 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tvcVRIs9v2 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tvcVRIs9v2 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tvcVRIs9v2 .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tvcVRIs9v2 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tvcVRIs9v2 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tvcVRIs9v2 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tvcVRIs9v2 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tvcVRIs9v2 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tvcVRIs9v2 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tvcVRIs9v2 .carousel-inner {
  height: 100%;
}
.cid-tvcVRIs9v2 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tvcVRIs9v2 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-tvcVRIs9v2 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-tvcVRIs9v2 .content-slider-wrap {
  width: 100%;
}
.cid-tvcVRJ4aCT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tvcVRJ4aCT .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tvcVRJ4aCT .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tvcVRJ4aCT .title {
    width: 100% !important;
  }
}
.cid-tvcVRJouzX {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #c19b76;
}
.cid-tvcVRJouzX blockquote {
  border-color: #ffffff !important;
}
.cid-tvcVRJouzX DIV {
  text-align: left;
  color: #ffffff;
}
.cid-tvcVRLipii {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #c19b76;
}
.cid-tvcVRLipii .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tvcVRLipii .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tvcVRLEkhg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/chambre-2-1470x822.jpg");
}
.cid-tvcVRLEkhg .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tvcVRLEkhg .mbr-iconfont {
  font-size: 80px;
}
.cid-tvcVRMmjqH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvcVRMmjqH .first-col {
    padding-bottom: 1rem;
  }
}
.cid-tvcVRMmjqH .mbr-section-title {
  color: #84582e;
}
.cid-tvcVRMmjqH .mbr-section-subtitle {
  color: #84582e;
}
.cid-tvcZsT0vi4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tvcZsT0vi4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tvcZsT0vi4 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tvcZsT0vi4 .title {
    width: 100% !important;
  }
}
.cid-tvcZsTClcc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvcZsTClcc .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-tvcZsTClcc .modal-body .close {
  background: #1b1b1b;
}
.cid-tvcZsTClcc .modal-body .close span {
  font-style: normal;
}
.cid-tvcZsTClcc .carousel-inner > .active,
.cid-tvcZsTClcc .carousel-inner > .next,
.cid-tvcZsTClcc .carousel-inner > .prev {
  display: flex;
}
.cid-tvcZsTClcc .carousel-control .icon-next,
.cid-tvcZsTClcc .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tvcZsTClcc .carousel-control:hover {
  background: #84582e;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvcZsTClcc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tvcZsTClcc .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tvcZsTClcc .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tvcZsTClcc .boxed-slider > div {
  position: relative;
}
.cid-tvcZsTClcc .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-tvcZsTClcc .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tvcZsTClcc .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tvcZsTClcc .mbr-table-cell {
  padding: 0;
}
.cid-tvcZsTClcc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tvcZsTClcc .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tvcZsTClcc .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-tvcZsTClcc .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-tvcZsTClcc .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tvcZsTClcc .carousel-item.active.right,
.cid-tvcZsTClcc .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tvcZsTClcc .carousel-item.active.left,
.cid-tvcZsTClcc .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tvcZsTClcc .carousel-item.active,
.cid-tvcZsTClcc .carousel-item.next.left,
.cid-tvcZsTClcc .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tvcZsTClcc .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tvcZsTClcc .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tvcZsTClcc .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tvcZsTClcc .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvcZsTClcc .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tvcZsTClcc .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #84582e;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tvcZsTClcc .mbr-slider .carousel-indicators li.active,
.cid-tvcZsTClcc .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvcZsTClcc .mbr-slider .carousel-indicators li::after,
.cid-tvcZsTClcc .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tvcZsTClcc .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tvcZsTClcc .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tvcZsTClcc .mbr-slider > .container img {
  width: 100%;
}
.cid-tvcZsTClcc .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tvcZsTClcc .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tvcZsTClcc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvcZsTClcc .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tvcZsTClcc .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tvcZsTClcc .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tvcZsTClcc .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tvcZsTClcc .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tvcZsTClcc .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tvcZsTClcc .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tvcZsTClcc .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tvcZsTClcc .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tvcZsTClcc .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tvcZsTClcc .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tvcZsTClcc .carousel-inner {
  height: 100%;
}
.cid-tvcZsTClcc .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tvcZsTClcc .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-tvcZsTClcc .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-tvcZsTClcc .content-slider-wrap {
  width: 100%;
}
.cid-tvcZsU8Cgj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tvcZsU8Cgj .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tvcZsU8Cgj .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tvcZsU8Cgj .title {
    width: 100% !important;
  }
}
.cid-tvcZsUschO {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #c19b76;
}
.cid-tvcZsUschO blockquote {
  border-color: #ffffff !important;
}
.cid-tvcZsUschO DIV {
  text-align: left;
  color: #ffffff;
}
.cid-tvcZsUGc8F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tvcZsUGc8F .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tvcZsUGc8F .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tvcZsUGc8F .card .card-header {
  background: #c19b76;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tvcZsUGc8F .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tvcZsUGc8F .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tvcZsUGc8F .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tvcZsUGc8F .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-tvcZsUGc8F .card .panel-body {
  background: #ffffff;
}
.cid-tvcZsUGc8F .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tvcZsUGc8F .card-header h4,
  .cid-tvcZsUGc8F .panel-body {
    padding: 1rem !important;
  }
}
.cid-tvcZsVp1K8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvcZsVp1K8 .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-tvcZsVp1K8 .modal-body .close {
  background: #1b1b1b;
}
.cid-tvcZsVp1K8 .modal-body .close span {
  font-style: normal;
}
.cid-tvcZsVp1K8 .carousel-inner > .active,
.cid-tvcZsVp1K8 .carousel-inner > .next,
.cid-tvcZsVp1K8 .carousel-inner > .prev {
  display: flex;
}
.cid-tvcZsVp1K8 .carousel-control .icon-next,
.cid-tvcZsVp1K8 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tvcZsVp1K8 .carousel-control:hover {
  background: #84582e;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tvcZsVp1K8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tvcZsVp1K8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tvcZsVp1K8 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tvcZsVp1K8 .boxed-slider > div {
  position: relative;
}
.cid-tvcZsVp1K8 .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-tvcZsVp1K8 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tvcZsVp1K8 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tvcZsVp1K8 .mbr-table-cell {
  padding: 0;
}
.cid-tvcZsVp1K8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tvcZsVp1K8 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tvcZsVp1K8 .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-tvcZsVp1K8 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-tvcZsVp1K8 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-tvcZsVp1K8 .carousel-item.active.right,
.cid-tvcZsVp1K8 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tvcZsVp1K8 .carousel-item.active.left,
.cid-tvcZsVp1K8 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-tvcZsVp1K8 .carousel-item.active,
.cid-tvcZsVp1K8 .carousel-item.next.left,
.cid-tvcZsVp1K8 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-tvcZsVp1K8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #84582e;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators li.active,
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators li::after,
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tvcZsVp1K8 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tvcZsVp1K8 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tvcZsVp1K8 .mbr-slider > .container img {
  width: 100%;
}
.cid-tvcZsVp1K8 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tvcZsVp1K8 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tvcZsVp1K8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvcZsVp1K8 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tvcZsVp1K8 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tvcZsVp1K8 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-tvcZsVp1K8 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tvcZsVp1K8 .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-tvcZsVp1K8 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tvcZsVp1K8 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tvcZsVp1K8 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tvcZsVp1K8 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tvcZsVp1K8 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tvcZsVp1K8 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tvcZsVp1K8 .carousel-inner {
  height: 100%;
}
.cid-tvcZsVp1K8 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tvcZsVp1K8 .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 670px;
  overflow: hidden;
}
.cid-tvcZsVp1K8 .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-tvcZsVp1K8 .content-slider-wrap {
  width: 100%;
}
.cid-tvcZsVSYpB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tvcZsVSYpB .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tvcZsVSYpB .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tvcZsVSYpB .card .card-header {
  background: #c19b76;
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tvcZsVSYpB .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-tvcZsVSYpB .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tvcZsVSYpB .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tvcZsVSYpB .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 20px;
}
.cid-tvcZsVSYpB .card .panel-body {
  background: #ffffff;
}
.cid-tvcZsVSYpB .card .panel-body .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tvcZsVSYpB .card-header h4,
  .cid-tvcZsVSYpB .panel-body {
    padding: 1rem !important;
  }
}
.cid-tvcZsWo3Li {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #c19b76;
}
.cid-tvcZsWo3Li .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-tvcZsWo3Li .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tvcZsWI3I0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/chambre-2-1470x822.jpg");
}
.cid-tvcZsWI3I0 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-tvcZsWI3I0 .mbr-iconfont {
  font-size: 80px;
}
.cid-tvcZsXtSuI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvcZsXtSuI .first-col {
    padding-bottom: 1rem;
  }
}
.cid-tvcZsXtSuI .mbr-section-title {
  color: #84582e;
}
.cid-tvcZsXtSuI .mbr-section-subtitle {
  color: #84582e;
}
