body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #dc2021 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #bbbbbb !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #dc2021 !important;
  border-color: #dc2021 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #901516 !important;
  border-color: #901516 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #901516 !important;
  border-color: #901516 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dc2021;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #901516 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #dc2021 !important;
  border-color: #dc2021 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #dc2021 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #bbbbbb !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #831314 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #888888 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #dc2021;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #bbbbbb;
}
.mbr-gallery-filter li.active .btn {
  background-color: #dc2021;
  border-color: #dc2021;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #dc2021;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f8d0d0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfbfb;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #dc2021 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #dc2021;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #dc2021;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #dc2021;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #dc2021;
  border-bottom-color: #dc2021;
}
.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: #dc2021 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23dc2021' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-u5HjwDXES3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u5HjwDXES3 nav.navbar {
  position: fixed;
}
.cid-u5HjwDXES3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5HjwDXES3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u5HjwDXES3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5HjwDXES3 .dropdown-item:hover,
.cid-u5HjwDXES3 .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u5HjwDXES3 .dropdown-item:hover span {
  color: white;
}
.cid-u5HjwDXES3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5HjwDXES3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5HjwDXES3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5HjwDXES3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5HjwDXES3 .nav-link {
  position: relative;
}
.cid-u5HjwDXES3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5HjwDXES3 .container {
    flex-wrap: nowrap;
  }
}
.cid-u5HjwDXES3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5HjwDXES3 .dropdown-menu,
.cid-u5HjwDXES3 .navbar.opened {
  background: #ffffff !important;
}
.cid-u5HjwDXES3 .nav-item:focus,
.cid-u5HjwDXES3 .nav-link:focus {
  outline: none;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5HjwDXES3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5HjwDXES3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5HjwDXES3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u5HjwDXES3 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5HjwDXES3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5HjwDXES3 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5HjwDXES3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5HjwDXES3 .navbar.collapsed {
  justify-content: center;
}
.cid-u5HjwDXES3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5HjwDXES3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5HjwDXES3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5HjwDXES3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5HjwDXES3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5HjwDXES3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5HjwDXES3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5HjwDXES3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5HjwDXES3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5HjwDXES3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5HjwDXES3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5HjwDXES3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5HjwDXES3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5HjwDXES3 .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u5HjwDXES3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5HjwDXES3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5HjwDXES3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5HjwDXES3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5HjwDXES3 .dropdown-item.active,
.cid-u5HjwDXES3 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5HjwDXES3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5HjwDXES3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5HjwDXES3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5HjwDXES3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5HjwDXES3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5HjwDXES3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5HjwDXES3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5HjwDXES3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5HjwDXES3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5HjwDXES3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5HjwDXES3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5HjwDXES3 .navbar {
    height: 70px;
  }
  .cid-u5HjwDXES3 .navbar.opened {
    height: auto;
  }
  .cid-u5HjwDXES3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5T4ej2yGE .modal-body .close {
  background: #1b1b1b;
}
.cid-u5T4ej2yGE .modal-body .close span {
  font-style: normal;
}
.cid-u5T4ej2yGE .carousel-inner > .active,
.cid-u5T4ej2yGE .carousel-inner > .next,
.cid-u5T4ej2yGE .carousel-inner > .prev {
  display: table;
}
.cid-u5T4ej2yGE .carousel-control .icon-next,
.cid-u5T4ej2yGE .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-u5T4ej2yGE .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5T4ej2yGE .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u5T4ej2yGE .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-u5T4ej2yGE .boxed-slider > div {
  position: relative;
}
.cid-u5T4ej2yGE .container img {
  width: 100%;
}
.cid-u5T4ej2yGE .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-u5T4ej2yGE .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u5T4ej2yGE .mbr-table-cell {
  padding: 0;
}
.cid-u5T4ej2yGE .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u5T4ej2yGE .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-u5T4ej2yGE .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u5T4ej2yGE .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-u5T4ej2yGE .carousel-item .container {
    width: 100%;
  }
}
.cid-u5T4ej2yGE .carousel-item-next.carousel-item-left,
.cid-u5T4ej2yGE .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-u5T4ej2yGE .mbr-slider .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #dc2021;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .cid-u5T4ej2yGE .mbr-slider .carousel-control {
    top: auto;
    bottom: 5rem;
  }
}
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2.5rem !important;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators li.active,
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators li::after,
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-u5T4ej2yGE .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-u5T4ej2yGE .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-u5T4ej2yGE .mbr-slider > .container img {
  width: 100%;
}
.cid-u5T4ej2yGE .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-u5T4ej2yGE .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-u5T4ej2yGE .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u5T4ej2yGE .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u5T4ej2yGE .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-u5T4ej2yGE .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-u5T4ej2yGE .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-u5T4ej2yGE .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-u5T4ej2yGE .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-u5T4ej2yGE .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u5T4ej2yGE .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-u5T4ej2yGE .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-u5T4ej2yGE .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-u5T4ej2yGE H2 {
  color: #ffffff;
}
.cid-u5T4ej2yGE P {
  color: #ffffff;
  text-align: left;
}
.cid-u5Hphe2Ouv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5Hphe2Ouv .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5Hphe2Ouv .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u5Hphe2Ouv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u5Hphe2Ouv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u5Hphe2Ouv .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u5Hphe2Ouv .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u5Hphe2Ouv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5ToIVKPQl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u5ToIVKPQl nav.navbar {
  position: fixed;
}
.cid-u5ToIVKPQl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5ToIVKPQl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u5ToIVKPQl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5ToIVKPQl .dropdown-item:hover,
.cid-u5ToIVKPQl .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u5ToIVKPQl .dropdown-item:hover span {
  color: white;
}
.cid-u5ToIVKPQl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5ToIVKPQl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5ToIVKPQl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5ToIVKPQl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5ToIVKPQl .nav-link {
  position: relative;
}
.cid-u5ToIVKPQl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5ToIVKPQl .container {
    flex-wrap: nowrap;
  }
}
.cid-u5ToIVKPQl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5ToIVKPQl .dropdown-menu,
.cid-u5ToIVKPQl .navbar.opened {
  background: #ffffff !important;
}
.cid-u5ToIVKPQl .nav-item:focus,
.cid-u5ToIVKPQl .nav-link:focus {
  outline: none;
}
.cid-u5ToIVKPQl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5ToIVKPQl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5ToIVKPQl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5ToIVKPQl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5ToIVKPQl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5ToIVKPQl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5ToIVKPQl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u5ToIVKPQl .navbar.opened {
  transition: all 0.3s;
}
.cid-u5ToIVKPQl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5ToIVKPQl .navbar .navbar-logo img {
  width: auto;
}
.cid-u5ToIVKPQl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5ToIVKPQl .navbar.collapsed {
  justify-content: center;
}
.cid-u5ToIVKPQl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5ToIVKPQl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5ToIVKPQl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u5ToIVKPQl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5ToIVKPQl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5ToIVKPQl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5ToIVKPQl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5ToIVKPQl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5ToIVKPQl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5ToIVKPQl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5ToIVKPQl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5ToIVKPQl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5ToIVKPQl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5ToIVKPQl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5ToIVKPQl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5ToIVKPQl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5ToIVKPQl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5ToIVKPQl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5ToIVKPQl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5ToIVKPQl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5ToIVKPQl .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5ToIVKPQl .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u5ToIVKPQl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5ToIVKPQl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5ToIVKPQl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5ToIVKPQl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5ToIVKPQl .dropdown-item.active,
.cid-u5ToIVKPQl .dropdown-item:active {
  background-color: transparent;
}
.cid-u5ToIVKPQl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5ToIVKPQl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5ToIVKPQl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5ToIVKPQl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5ToIVKPQl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5ToIVKPQl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5ToIVKPQl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5ToIVKPQl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5ToIVKPQl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5ToIVKPQl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5ToIVKPQl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5ToIVKPQl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5ToIVKPQl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5ToIVKPQl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5ToIVKPQl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5ToIVKPQl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5ToIVKPQl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5ToIVKPQl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5ToIVKPQl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5ToIVKPQl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5ToIVKPQl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5ToIVKPQl .navbar {
    height: 70px;
  }
  .cid-u5ToIVKPQl .navbar.opened {
    height: auto;
  }
  .cid-u5ToIVKPQl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u5TpbiSsAF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #e4e4e4;
}
.cid-u5TpbiSsAF img,
.cid-u5TpbiSsAF .item-img {
  width: 100%;
}
.cid-u5TpbiSsAF .item:focus,
.cid-u5TpbiSsAF span:focus {
  outline: none;
}
.cid-u5TpbiSsAF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u5TpbiSsAF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u5TpbiSsAF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u5TpbiSsAF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u5TpbiSsAF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u5TpbiSsAF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u5TpbiSsAF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u5TpbiSsAF .mbr-section-title {
  color: #dc2021;
  text-align: left;
}
.cid-u5TpbiSsAF .mbr-text,
.cid-u5TpbiSsAF .mbr-section-btn {
  text-align: left;
}
.cid-u5TpbiSsAF .item-title {
  text-align: left;
}
.cid-u5TpbiSsAF .item-subtitle {
  text-align: left;
}
.cid-u5TpbiSsAF .mbr-section-subtitle {
  text-align: left;
}
.cid-u8kxQxwsWd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e4e4e4;
}
.cid-u8kxQxwsWd img,
.cid-u8kxQxwsWd .item-img {
  width: 100%;
}
.cid-u8kxQxwsWd .item:focus,
.cid-u8kxQxwsWd span:focus {
  outline: none;
}
.cid-u8kxQxwsWd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8kxQxwsWd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u8kxQxwsWd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u8kxQxwsWd .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8kxQxwsWd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u8kxQxwsWd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u8kxQxwsWd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u8kxQxwsWd .mbr-section-title {
  color: #dc2021;
  text-align: left;
}
.cid-u8kxQxwsWd .mbr-text,
.cid-u8kxQxwsWd .mbr-section-btn {
  text-align: left;
}
.cid-u8kxQxwsWd .item-title {
  text-align: left;
}
.cid-u8kxQxwsWd .item-subtitle {
  text-align: left;
}
.cid-u8kxQxwsWd .mbr-section-subtitle {
  text-align: left;
}
.cid-ua1GtXLH9G {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #e4e4e4;
}
.cid-ua1GtXLH9G img,
.cid-ua1GtXLH9G .item-img {
  width: 100%;
}
.cid-ua1GtXLH9G .item:focus,
.cid-ua1GtXLH9G span:focus {
  outline: none;
}
.cid-ua1GtXLH9G .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ua1GtXLH9G .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ua1GtXLH9G .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ua1GtXLH9G .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ua1GtXLH9G .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ua1GtXLH9G .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ua1GtXLH9G .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ua1GtXLH9G .mbr-section-title {
  color: #dc2021;
  text-align: left;
}
.cid-ua1GtXLH9G .mbr-text,
.cid-ua1GtXLH9G .mbr-section-btn {
  text-align: left;
}
.cid-ua1GtXLH9G .item-title {
  text-align: left;
}
.cid-ua1GtXLH9G .item-subtitle {
  text-align: left;
}
.cid-ua1GtXLH9G .mbr-section-subtitle {
  text-align: left;
}
.cid-ua1L1mHYm2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-ua1L1mHYm2 img,
.cid-ua1L1mHYm2 .item-img {
  width: 100%;
}
.cid-ua1L1mHYm2 .item:focus,
.cid-ua1L1mHYm2 span:focus {
  outline: none;
}
.cid-ua1L1mHYm2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ua1L1mHYm2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ua1L1mHYm2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ua1L1mHYm2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ua1L1mHYm2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ua1L1mHYm2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ua1L1mHYm2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ua1L1mHYm2 .mbr-section-title {
  color: #dc2021;
  text-align: left;
}
.cid-ua1L1mHYm2 .mbr-text,
.cid-ua1L1mHYm2 .mbr-section-btn {
  text-align: left;
}
.cid-ua1L1mHYm2 .item-title {
  text-align: left;
}
.cid-ua1L1mHYm2 .item-subtitle {
  text-align: left;
}
.cid-ua1L1mHYm2 .mbr-section-subtitle {
  text-align: left;
}
.cid-u5ToIXpkPw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5ToIXpkPw .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5ToIXpkPw .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u5ToIXpkPw .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u5ToIXpkPw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5ToIXpkPw .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u5ToIXpkPw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u5ToIXpkPw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u5ToIXpkPw .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u5ToIXpkPw .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u5ToIXpkPw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5ToIXpkPw .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u705WDDuks {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u705WDDuks nav.navbar {
  position: fixed;
}
.cid-u705WDDuks .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u705WDDuks .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u705WDDuks .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u705WDDuks .dropdown-item:hover,
.cid-u705WDDuks .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u705WDDuks .dropdown-item:hover span {
  color: white;
}
.cid-u705WDDuks .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u705WDDuks .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u705WDDuks .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u705WDDuks .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u705WDDuks .nav-link {
  position: relative;
}
.cid-u705WDDuks .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u705WDDuks .container {
    flex-wrap: nowrap;
  }
}
.cid-u705WDDuks .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u705WDDuks .dropdown-menu,
.cid-u705WDDuks .navbar.opened {
  background: #ffffff !important;
}
.cid-u705WDDuks .nav-item:focus,
.cid-u705WDDuks .nav-link:focus {
  outline: none;
}
.cid-u705WDDuks .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u705WDDuks .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u705WDDuks .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u705WDDuks .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u705WDDuks .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u705WDDuks .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u705WDDuks .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u705WDDuks .navbar.opened {
  transition: all 0.3s;
}
.cid-u705WDDuks .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u705WDDuks .navbar .navbar-logo img {
  width: auto;
}
.cid-u705WDDuks .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u705WDDuks .navbar.collapsed {
  justify-content: center;
}
.cid-u705WDDuks .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u705WDDuks .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u705WDDuks .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u705WDDuks .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u705WDDuks .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u705WDDuks .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u705WDDuks .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u705WDDuks .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u705WDDuks .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u705WDDuks .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u705WDDuks .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u705WDDuks .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u705WDDuks .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u705WDDuks .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u705WDDuks .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u705WDDuks .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u705WDDuks .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u705WDDuks .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u705WDDuks .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u705WDDuks .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u705WDDuks .navbar.navbar-short {
  min-height: 60px;
}
.cid-u705WDDuks .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u705WDDuks .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u705WDDuks .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u705WDDuks .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u705WDDuks .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u705WDDuks .dropdown-item.active,
.cid-u705WDDuks .dropdown-item:active {
  background-color: transparent;
}
.cid-u705WDDuks .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u705WDDuks .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u705WDDuks .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u705WDDuks .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u705WDDuks .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u705WDDuks .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u705WDDuks ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u705WDDuks .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u705WDDuks button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u705WDDuks button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u705WDDuks button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u705WDDuks button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u705WDDuks button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u705WDDuks button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u705WDDuks nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u705WDDuks nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u705WDDuks nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u705WDDuks nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u705WDDuks .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u705WDDuks a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u705WDDuks .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u705WDDuks .navbar {
    height: 70px;
  }
  .cid-u705WDDuks .navbar.opened {
    height: auto;
  }
  .cid-u705WDDuks .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u706lwAoo6 {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u706lwAoo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u706lwAoo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u706lwAoo6 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u706lwAoo6 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u706lwAoo6 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u706lwAoo6 .container {
    padding: 0 16px;
  }
}
.cid-u706lwAoo6 .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-u706lwAoo6 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u706lwAoo6 .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-u706lwAoo6 .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-u706lwAoo6 .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u706lwAoo6 .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u706lwAoo6 .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-u706lwAoo6 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #dc2021;
  transition: all 0.3s ease-in-out;
}
.cid-u706lwAoo6 .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-u706lwAoo6 .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u706lwAoo6 .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u706lwAoo6 .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-u706lwAoo6 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-u706lwAoo6 .mbr-section-title {
  color: #1c1c1c;
  text-align: left;
}
.cid-u706lwAoo6 .panel-number {
  color: #dc2021;
}
.cid-u706lwAoo6 .panel-title-edit {
  color: #1c1c1c;
}
.cid-u706lwAoo6 .panel-text {
  color: #1c1c1c;
}
.cid-u716af6DmH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u716af6DmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u716af6DmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u716af6DmH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u716af6DmH .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u716af6DmH .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u716af6DmH .container {
    padding: 0 16px;
  }
}
.cid-u716af6DmH .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-u716af6DmH .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u716af6DmH .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-u716af6DmH .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-u716af6DmH .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u716af6DmH .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u716af6DmH .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-u716af6DmH .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #dc2021;
  transition: all 0.3s ease-in-out;
}
.cid-u716af6DmH .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-u716af6DmH .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u716af6DmH .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u716af6DmH .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-u716af6DmH .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-u716af6DmH .mbr-section-title {
  color: #1c1c1c;
  text-align: left;
}
.cid-u716af6DmH .panel-number {
  color: #dc2021;
}
.cid-u716af6DmH .panel-title-edit {
  color: #1c1c1c;
}
.cid-u716af6DmH .panel-text {
  color: #1c1c1c;
}
.cid-u71a4kJG4w {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u71a4kJG4w .mbr-fallback-image.disabled {
  display: none;
}
.cid-u71a4kJG4w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u71a4kJG4w .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u71a4kJG4w .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u71a4kJG4w .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u71a4kJG4w .container {
    padding: 0 16px;
  }
}
.cid-u71a4kJG4w .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-u71a4kJG4w .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u71a4kJG4w .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-u71a4kJG4w .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-u71a4kJG4w .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u71a4kJG4w .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u71a4kJG4w .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-u71a4kJG4w .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #dc2021;
  transition: all 0.3s ease-in-out;
}
.cid-u71a4kJG4w .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-u71a4kJG4w .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u71a4kJG4w .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u71a4kJG4w .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-u71a4kJG4w .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-u71a4kJG4w .mbr-section-title {
  color: #1c1c1c;
  text-align: left;
}
.cid-u71a4kJG4w .panel-number {
  color: #dc2021;
}
.cid-u71a4kJG4w .panel-title-edit {
  color: #1c1c1c;
}
.cid-u71a4kJG4w .panel-text {
  color: #1c1c1c;
}
.cid-u71dYBydoZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u71dYBydoZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u71dYBydoZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u71dYBydoZ .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u71dYBydoZ .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u71dYBydoZ .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u71dYBydoZ .container {
    padding: 0 16px;
  }
}
.cid-u71dYBydoZ .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-u71dYBydoZ .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u71dYBydoZ .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-u71dYBydoZ .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-u71dYBydoZ .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u71dYBydoZ .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u71dYBydoZ .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-u71dYBydoZ .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #dc2021;
  transition: all 0.3s ease-in-out;
}
.cid-u71dYBydoZ .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-u71dYBydoZ .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u71dYBydoZ .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u71dYBydoZ .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-u71dYBydoZ .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-u71dYBydoZ .mbr-section-title {
  color: #1c1c1c;
  text-align: left;
}
.cid-u71dYBydoZ .panel-number {
  color: #dc2021;
}
.cid-u71dYBydoZ .panel-title-edit {
  color: #1c1c1c;
}
.cid-u71dYBydoZ .panel-text {
  color: #1c1c1c;
}
.cid-u71gh4eOwd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f4f4f4;
}
.cid-u71gh4eOwd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u71gh4eOwd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u71gh4eOwd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-u71gh4eOwd .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-u71gh4eOwd .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u71gh4eOwd .container {
    padding: 0 16px;
  }
}
.cid-u71gh4eOwd .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-u71gh4eOwd .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u71gh4eOwd .panel-group .card {
  border-radius: 0 !important;
  padding: 24px 0;
  border-bottom: 1px solid #c1c1c1;
}
.cid-u71gh4eOwd .panel-group .card:first-child {
  border-top: 1px solid #c1c1c1;
}
.cid-u71gh4eOwd .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(135deg);
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title .panel-wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u71gh4eOwd .panel-group .card .card-header .panel-title .panel-wrap {
    width: 100%;
  }
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
  min-width: 210px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u71gh4eOwd .panel-group .card .card-header .panel-title .panel-wrap .panel-number {
    display: none;
  }
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title .panel-wrap .panel-title-edit {
  width: 100%;
  margin-bottom: 0;
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title .icon-wrapper {
  margin-left: 16px;
}
.cid-u71gh4eOwd .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 32px;
  color: #dc2021;
  transition: all 0.3s ease-in-out;
}
.cid-u71gh4eOwd .panel-group .card .panel-collapse .panel-body {
  display: flex;
  padding-top: 16px;
}
.cid-u71gh4eOwd .panel-group .card .panel-collapse .panel-body .panel-padding {
  min-width: 210px;
}
@media (max-width: 992px) {
  .cid-u71gh4eOwd .panel-group .card .panel-collapse .panel-body .panel-padding {
    display: none;
  }
}
.cid-u71gh4eOwd .panel-group .card .panel-collapse .panel-body .panel-text {
  width: 60%;
  margin-bottom: 0;
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-u71gh4eOwd .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 80%;
  }
}
.cid-u71gh4eOwd .mbr-section-title {
  color: #1c1c1c;
  text-align: left;
}
.cid-u71gh4eOwd .panel-number {
  color: #dc2021;
}
.cid-u71gh4eOwd .panel-title-edit {
  color: #1c1c1c;
}
.cid-u71gh4eOwd .panel-text {
  color: #1c1c1c;
}
.cid-u705WFaeqU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u705WFaeqU .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u705WFaeqU .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u705WFaeqU .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u705WFaeqU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u705WFaeqU .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u705WFaeqU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u705WFaeqU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u705WFaeqU .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u705WFaeqU .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u705WFaeqU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u705WFaeqU .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u6etJc2nmf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u6etJc2nmf nav.navbar {
  position: fixed;
}
.cid-u6etJc2nmf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6etJc2nmf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u6etJc2nmf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6etJc2nmf .dropdown-item:hover,
.cid-u6etJc2nmf .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u6etJc2nmf .dropdown-item:hover span {
  color: white;
}
.cid-u6etJc2nmf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6etJc2nmf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6etJc2nmf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6etJc2nmf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6etJc2nmf .nav-link {
  position: relative;
}
.cid-u6etJc2nmf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u6etJc2nmf .container {
    flex-wrap: nowrap;
  }
}
.cid-u6etJc2nmf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6etJc2nmf .dropdown-menu,
.cid-u6etJc2nmf .navbar.opened {
  background: #ffffff !important;
}
.cid-u6etJc2nmf .nav-item:focus,
.cid-u6etJc2nmf .nav-link:focus {
  outline: none;
}
.cid-u6etJc2nmf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6etJc2nmf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6etJc2nmf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6etJc2nmf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6etJc2nmf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6etJc2nmf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6etJc2nmf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u6etJc2nmf .navbar.opened {
  transition: all 0.3s;
}
.cid-u6etJc2nmf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6etJc2nmf .navbar .navbar-logo img {
  width: auto;
}
.cid-u6etJc2nmf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6etJc2nmf .navbar.collapsed {
  justify-content: center;
}
.cid-u6etJc2nmf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6etJc2nmf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6etJc2nmf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u6etJc2nmf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6etJc2nmf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6etJc2nmf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u6etJc2nmf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6etJc2nmf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6etJc2nmf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6etJc2nmf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6etJc2nmf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6etJc2nmf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6etJc2nmf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6etJc2nmf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u6etJc2nmf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6etJc2nmf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6etJc2nmf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6etJc2nmf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6etJc2nmf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6etJc2nmf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u6etJc2nmf .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6etJc2nmf .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u6etJc2nmf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6etJc2nmf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6etJc2nmf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6etJc2nmf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6etJc2nmf .dropdown-item.active,
.cid-u6etJc2nmf .dropdown-item:active {
  background-color: transparent;
}
.cid-u6etJc2nmf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6etJc2nmf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6etJc2nmf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6etJc2nmf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u6etJc2nmf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6etJc2nmf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6etJc2nmf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6etJc2nmf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6etJc2nmf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6etJc2nmf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u6etJc2nmf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6etJc2nmf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6etJc2nmf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6etJc2nmf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6etJc2nmf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6etJc2nmf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6etJc2nmf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6etJc2nmf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6etJc2nmf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6etJc2nmf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6etJc2nmf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6etJc2nmf .navbar {
    height: 70px;
  }
  .cid-u6etJc2nmf .navbar.opened {
    height: auto;
  }
  .cid-u6etJc2nmf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6etJcXdug {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u6etJcXdug .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6etJcXdug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6etJcXdug .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u6etJcXdug .card {
    margin-bottom: 2rem!important;
  }
  .cid-u6etJcXdug .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u6etJcXdug .link-wrap {
    align-items: center;
  }
}
.cid-u6etJcXdug .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u6etJdLBsW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u6etJdLBsW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6etJdLBsW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6etJdLBsW .row {
  justify-content: center;
}
.cid-u6etJdLBsW .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-u6etJdLBsW .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-u6etJdLBsW .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-u6etJdLBsW .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u6etJdLBsW .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-u6etJdLBsW .content-container {
    padding: 24px 16px;
  }
}
.cid-u6etJdLBsW .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u6etJdLBsW .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-u6etJdLBsW .head-clear {
    display: none;
  }
}
.cid-u6etJdLBsW .card-head {
  padding-bottom: 40px;
}
.cid-u6etJdLBsW .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-u6etJdLBsW .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-u6etJdLBsW .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u6etJdLBsW .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u6etJdLBsW .price-text {
  color: #ffffff;
}
.cid-u6etJdLBsW .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-u6etJdLBsW .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-u6etJdLBsW .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-u6etJdLBsW .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u6etJdLBsW .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-u6etJdLBsW .item-text {
  color: #232323;
  text-align: center;
}
.cid-u6etJdLBsW .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-u6etJdLBsW .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-u6etJdLBsW .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-u6etJdLBsW .card-comment {
    text-align: center;
  }
}
.cid-u6etJdLBsW .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u6etJf90Eo {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u6etJf90Eo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6etJf90Eo .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-u6etJf90Eo .container {
    padding: 0 30px;
  }
}
.cid-u6etJf90Eo .items .item {
  margin-bottom: 30px;
}
.cid-u6etJf90Eo .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u6etJf90Eo .items .item {
    margin-bottom: 30px;
  }
}
.cid-u6etJf90Eo .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-u6etJf90Eo .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u6etJf90Eo .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-u6etJf90Eo .dragArea.row {
  margin: 0;
}
.cid-u6etJf90Eo .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-u6etJf90Eo .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-u6etJf90Eo .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u6etJf90Eo .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-u6etJf90Eo .dragArea.row .form-group .form-control:hover,
.cid-u6etJf90Eo .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-u6etJf90Eo .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-u6etJf90Eo .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-u6etJf90Eo .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-u6etJf90Eo .mbr-section-title {
  color: #000000;
}
.cid-u6etJf90Eo .card-title {
  color: #000000;
}
.cid-u6etJf90Eo .list {
  color: #000000;
}
.cid-u6etJf90Eo .mbr-text {
  color: #000000;
}
.cid-u6etJf90Eo label {
  color: #000000;
}
.cid-u6eBbb4tPH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-u6eBbb4tPH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6eBbb4tPH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6eBbb4tPH .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-u6eBbb4tPH .mbr-section-subtitle {
  text-align: left;
}
.cid-u6eBbb4tPH .mbr-text UL {
  text-align: left;
}
.cid-u6eBbb4tPH .mbr-text {
  color: #a3a3a3;
}
.cid-u6eBbb4tPH .card-title,
.cid-u6eBbb4tPH .card-box {
  color: #353535;
}
.cid-u6etJfXB3z {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u6etJfXB3z .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u6etJfXB3z .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u6etJfXB3z .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u6etJfXB3z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u6etJfXB3z .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u6etJfXB3z .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u6etJfXB3z .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u6etJfXB3z .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u6etJfXB3z .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u6etJfXB3z .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6etJfXB3z .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7KVm4cvo5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u7KVm4cvo5 nav.navbar {
  position: fixed;
}
.cid-u7KVm4cvo5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KVm4cvo5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u7KVm4cvo5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7KVm4cvo5 .dropdown-item:hover,
.cid-u7KVm4cvo5 .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u7KVm4cvo5 .dropdown-item:hover span {
  color: white;
}
.cid-u7KVm4cvo5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7KVm4cvo5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7KVm4cvo5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7KVm4cvo5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7KVm4cvo5 .nav-link {
  position: relative;
}
.cid-u7KVm4cvo5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7KVm4cvo5 .container {
    flex-wrap: nowrap;
  }
}
.cid-u7KVm4cvo5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7KVm4cvo5 .dropdown-menu,
.cid-u7KVm4cvo5 .navbar.opened {
  background: #ffffff !important;
}
.cid-u7KVm4cvo5 .nav-item:focus,
.cid-u7KVm4cvo5 .nav-link:focus {
  outline: none;
}
.cid-u7KVm4cvo5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7KVm4cvo5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7KVm4cvo5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7KVm4cvo5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7KVm4cvo5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7KVm4cvo5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7KVm4cvo5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7KVm4cvo5 .navbar.opened {
  transition: all 0.3s;
}
.cid-u7KVm4cvo5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7KVm4cvo5 .navbar .navbar-logo img {
  width: auto;
}
.cid-u7KVm4cvo5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7KVm4cvo5 .navbar.collapsed {
  justify-content: center;
}
.cid-u7KVm4cvo5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7KVm4cvo5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7KVm4cvo5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u7KVm4cvo5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7KVm4cvo5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7KVm4cvo5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7KVm4cvo5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7KVm4cvo5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7KVm4cvo5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7KVm4cvo5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7KVm4cvo5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7KVm4cvo5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7KVm4cvo5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7KVm4cvo5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7KVm4cvo5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7KVm4cvo5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7KVm4cvo5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7KVm4cvo5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7KVm4cvo5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7KVm4cvo5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7KVm4cvo5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7KVm4cvo5 .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u7KVm4cvo5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7KVm4cvo5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7KVm4cvo5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7KVm4cvo5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7KVm4cvo5 .dropdown-item.active,
.cid-u7KVm4cvo5 .dropdown-item:active {
  background-color: transparent;
}
.cid-u7KVm4cvo5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7KVm4cvo5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7KVm4cvo5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7KVm4cvo5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7KVm4cvo5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7KVm4cvo5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7KVm4cvo5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7KVm4cvo5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7KVm4cvo5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7KVm4cvo5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7KVm4cvo5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7KVm4cvo5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KVm4cvo5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7KVm4cvo5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7KVm4cvo5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KVm4cvo5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7KVm4cvo5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7KVm4cvo5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7KVm4cvo5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7KVm4cvo5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7KVm4cvo5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7KVm4cvo5 .navbar {
    height: 70px;
  }
  .cid-u7KVm4cvo5 .navbar.opened {
    height: auto;
  }
  .cid-u7KVm4cvo5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7KVm4ZCKV {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u7KVm4ZCKV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KVm4ZCKV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KVm4ZCKV .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u7KVm4ZCKV .card {
    margin-bottom: 2rem!important;
  }
  .cid-u7KVm4ZCKV .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u7KVm4ZCKV .link-wrap {
    align-items: center;
  }
}
.cid-u7KVm4ZCKV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7KVm5LpNn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u7KVm5LpNn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KVm5LpNn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KVm5LpNn .row {
  justify-content: center;
}
.cid-u7KVm5LpNn .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-u7KVm5LpNn .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-u7KVm5LpNn .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-u7KVm5LpNn .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u7KVm5LpNn .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-u7KVm5LpNn .content-container {
    padding: 24px 16px;
  }
}
.cid-u7KVm5LpNn .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u7KVm5LpNn .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-u7KVm5LpNn .head-clear {
    display: none;
  }
}
.cid-u7KVm5LpNn .card-head {
  padding-bottom: 40px;
}
.cid-u7KVm5LpNn .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-u7KVm5LpNn .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-u7KVm5LpNn .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u7KVm5LpNn .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u7KVm5LpNn .price-text {
  color: #ffffff;
}
.cid-u7KVm5LpNn .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-u7KVm5LpNn .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-u7KVm5LpNn .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-u7KVm5LpNn .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u7KVm5LpNn .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-u7KVm5LpNn .item-text {
  color: #232323;
  text-align: center;
}
.cid-u7KVm5LpNn .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-u7KVm5LpNn .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-u7KVm5LpNn .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-u7KVm5LpNn .card-comment {
    text-align: center;
  }
}
.cid-u7KVm5LpNn .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u82lTpEcwc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u82lTpEcwc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82lTpEcwc .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-u82lTpEcwc .container {
    padding: 0 30px;
  }
}
.cid-u82lTpEcwc .items .item {
  margin-bottom: 30px;
}
.cid-u82lTpEcwc .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u82lTpEcwc .items .item {
    margin-bottom: 30px;
  }
}
.cid-u82lTpEcwc .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-u82lTpEcwc .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u82lTpEcwc .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-u82lTpEcwc .dragArea.row {
  margin: 0;
}
.cid-u82lTpEcwc .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-u82lTpEcwc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-u82lTpEcwc .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u82lTpEcwc .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-u82lTpEcwc .dragArea.row .form-group .form-control:hover,
.cid-u82lTpEcwc .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-u82lTpEcwc .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-u82lTpEcwc .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-u82lTpEcwc .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-u82lTpEcwc .mbr-section-title {
  color: #000000;
}
.cid-u82lTpEcwc .card-title {
  color: #000000;
}
.cid-u82lTpEcwc .list {
  color: #000000;
}
.cid-u82lTpEcwc .mbr-text {
  color: #000000;
}
.cid-u82lTpEcwc label {
  color: #000000;
}
.cid-u82lTpEcwc LABEL {
  text-align: center;
}
.cid-u7KVm7U25r {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-u7KVm7U25r .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7KVm7U25r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7KVm7U25r .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-u7KVm7U25r .mbr-section-subtitle {
  text-align: left;
}
.cid-u7KVm7U25r .mbr-text UL {
  text-align: left;
}
.cid-u7KVm7U25r .mbr-text {
  color: #a3a3a3;
}
.cid-u7KVm7U25r .card-title,
.cid-u7KVm7U25r .card-box {
  color: #353535;
}
.cid-u7KVm8OWab {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u7KVm8OWab .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7KVm8OWab .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u7KVm8OWab .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u7KVm8OWab .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7KVm8OWab .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u7KVm8OWab .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7KVm8OWab .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u7KVm8OWab .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u7KVm8OWab .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u7KVm8OWab .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7KVm8OWab .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7RUn9ohJN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u7RUn9ohJN nav.navbar {
  position: fixed;
}
.cid-u7RUn9ohJN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7RUn9ohJN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u7RUn9ohJN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u7RUn9ohJN .dropdown-item:hover,
.cid-u7RUn9ohJN .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u7RUn9ohJN .dropdown-item:hover span {
  color: white;
}
.cid-u7RUn9ohJN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u7RUn9ohJN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u7RUn9ohJN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u7RUn9ohJN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u7RUn9ohJN .nav-link {
  position: relative;
}
.cid-u7RUn9ohJN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u7RUn9ohJN .container {
    flex-wrap: nowrap;
  }
}
.cid-u7RUn9ohJN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u7RUn9ohJN .dropdown-menu,
.cid-u7RUn9ohJN .navbar.opened {
  background: #ffffff !important;
}
.cid-u7RUn9ohJN .nav-item:focus,
.cid-u7RUn9ohJN .nav-link:focus {
  outline: none;
}
.cid-u7RUn9ohJN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7RUn9ohJN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7RUn9ohJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7RUn9ohJN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7RUn9ohJN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7RUn9ohJN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7RUn9ohJN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u7RUn9ohJN .navbar.opened {
  transition: all 0.3s;
}
.cid-u7RUn9ohJN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u7RUn9ohJN .navbar .navbar-logo img {
  width: auto;
}
.cid-u7RUn9ohJN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u7RUn9ohJN .navbar.collapsed {
  justify-content: center;
}
.cid-u7RUn9ohJN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7RUn9ohJN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u7RUn9ohJN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u7RUn9ohJN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7RUn9ohJN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7RUn9ohJN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u7RUn9ohJN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7RUn9ohJN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u7RUn9ohJN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u7RUn9ohJN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7RUn9ohJN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7RUn9ohJN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7RUn9ohJN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u7RUn9ohJN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u7RUn9ohJN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7RUn9ohJN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u7RUn9ohJN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u7RUn9ohJN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7RUn9ohJN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7RUn9ohJN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u7RUn9ohJN .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7RUn9ohJN .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u7RUn9ohJN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7RUn9ohJN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7RUn9ohJN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u7RUn9ohJN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7RUn9ohJN .dropdown-item.active,
.cid-u7RUn9ohJN .dropdown-item:active {
  background-color: transparent;
}
.cid-u7RUn9ohJN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7RUn9ohJN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7RUn9ohJN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7RUn9ohJN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u7RUn9ohJN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u7RUn9ohJN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7RUn9ohJN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u7RUn9ohJN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7RUn9ohJN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u7RUn9ohJN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u7RUn9ohJN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7RUn9ohJN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7RUn9ohJN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7RUn9ohJN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7RUn9ohJN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7RUn9ohJN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7RUn9ohJN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7RUn9ohJN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7RUn9ohJN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u7RUn9ohJN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u7RUn9ohJN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7RUn9ohJN .navbar {
    height: 70px;
  }
  .cid-u7RUn9ohJN .navbar.opened {
    height: auto;
  }
  .cid-u7RUn9ohJN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7RUnahNf7 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u7RUnahNf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7RUnahNf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7RUnahNf7 .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u7RUnahNf7 .card {
    margin-bottom: 2rem!important;
  }
  .cid-u7RUnahNf7 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u7RUnahNf7 .link-wrap {
    align-items: center;
  }
}
.cid-u7RUnahNf7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u7RUnaXI33 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u7RUnaXI33 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7RUnaXI33 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7RUnaXI33 .row {
  justify-content: center;
}
.cid-u7RUnaXI33 .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-u7RUnaXI33 .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-u7RUnaXI33 .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-u7RUnaXI33 .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u7RUnaXI33 .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-u7RUnaXI33 .content-container {
    padding: 24px 16px;
  }
}
.cid-u7RUnaXI33 .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u7RUnaXI33 .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-u7RUnaXI33 .head-clear {
    display: none;
  }
}
.cid-u7RUnaXI33 .card-head {
  padding-bottom: 40px;
}
.cid-u7RUnaXI33 .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-u7RUnaXI33 .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-u7RUnaXI33 .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u7RUnaXI33 .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u7RUnaXI33 .price-text {
  color: #ffffff;
}
.cid-u7RUnaXI33 .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-u7RUnaXI33 .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-u7RUnaXI33 .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-u7RUnaXI33 .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u7RUnaXI33 .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-u7RUnaXI33 .item-text {
  color: #232323;
  text-align: center;
}
.cid-u7RUnaXI33 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-u7RUnaXI33 .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-u7RUnaXI33 .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-u7RUnaXI33 .card-comment {
    text-align: center;
  }
}
.cid-u7RUnaXI33 .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u82mxAZdgI {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u82mxAZdgI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82mxAZdgI .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-u82mxAZdgI .container {
    padding: 0 30px;
  }
}
.cid-u82mxAZdgI .items .item {
  margin-bottom: 30px;
}
.cid-u82mxAZdgI .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u82mxAZdgI .items .item {
    margin-bottom: 30px;
  }
}
.cid-u82mxAZdgI .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-u82mxAZdgI .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u82mxAZdgI .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-u82mxAZdgI .dragArea.row {
  margin: 0;
}
.cid-u82mxAZdgI .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-u82mxAZdgI .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-u82mxAZdgI .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u82mxAZdgI .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-u82mxAZdgI .dragArea.row .form-group .form-control:hover,
.cid-u82mxAZdgI .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-u82mxAZdgI .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-u82mxAZdgI .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-u82mxAZdgI .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-u82mxAZdgI .mbr-section-title {
  color: #000000;
}
.cid-u82mxAZdgI .card-title {
  color: #000000;
}
.cid-u82mxAZdgI .list {
  color: #000000;
}
.cid-u82mxAZdgI .mbr-text {
  color: #000000;
}
.cid-u82mxAZdgI label {
  color: #000000;
}
.cid-u7RUndib0M {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-u7RUndib0M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7RUndib0M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7RUndib0M .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-u7RUndib0M .mbr-section-subtitle {
  text-align: left;
}
.cid-u7RUndib0M .mbr-text UL {
  text-align: left;
}
.cid-u7RUndib0M .mbr-text {
  color: #a3a3a3;
}
.cid-u7RUndib0M .card-title,
.cid-u7RUndib0M .card-box {
  color: #353535;
}
.cid-u7RUneiR5S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u7RUneiR5S .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7RUneiR5S .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u7RUneiR5S .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u7RUneiR5S .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7RUneiR5S .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u7RUneiR5S .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7RUneiR5S .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u7RUneiR5S .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u7RUneiR5S .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u7RUneiR5S .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7RUneiR5S .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u8kCt5yiBw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u8kCt5yiBw nav.navbar {
  position: fixed;
}
.cid-u8kCt5yiBw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8kCt5yiBw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u8kCt5yiBw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8kCt5yiBw .dropdown-item:hover,
.cid-u8kCt5yiBw .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u8kCt5yiBw .dropdown-item:hover span {
  color: white;
}
.cid-u8kCt5yiBw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8kCt5yiBw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8kCt5yiBw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8kCt5yiBw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8kCt5yiBw .nav-link {
  position: relative;
}
.cid-u8kCt5yiBw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u8kCt5yiBw .container {
    flex-wrap: nowrap;
  }
}
.cid-u8kCt5yiBw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8kCt5yiBw .dropdown-menu,
.cid-u8kCt5yiBw .navbar.opened {
  background: #ffffff !important;
}
.cid-u8kCt5yiBw .nav-item:focus,
.cid-u8kCt5yiBw .nav-link:focus {
  outline: none;
}
.cid-u8kCt5yiBw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8kCt5yiBw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8kCt5yiBw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8kCt5yiBw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8kCt5yiBw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8kCt5yiBw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8kCt5yiBw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8kCt5yiBw .navbar.opened {
  transition: all 0.3s;
}
.cid-u8kCt5yiBw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8kCt5yiBw .navbar .navbar-logo img {
  width: auto;
}
.cid-u8kCt5yiBw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8kCt5yiBw .navbar.collapsed {
  justify-content: center;
}
.cid-u8kCt5yiBw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8kCt5yiBw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8kCt5yiBw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u8kCt5yiBw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8kCt5yiBw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8kCt5yiBw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u8kCt5yiBw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8kCt5yiBw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8kCt5yiBw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8kCt5yiBw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8kCt5yiBw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8kCt5yiBw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8kCt5yiBw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8kCt5yiBw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u8kCt5yiBw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8kCt5yiBw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8kCt5yiBw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8kCt5yiBw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8kCt5yiBw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8kCt5yiBw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8kCt5yiBw .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8kCt5yiBw .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u8kCt5yiBw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8kCt5yiBw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8kCt5yiBw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8kCt5yiBw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8kCt5yiBw .dropdown-item.active,
.cid-u8kCt5yiBw .dropdown-item:active {
  background-color: transparent;
}
.cid-u8kCt5yiBw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8kCt5yiBw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8kCt5yiBw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8kCt5yiBw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8kCt5yiBw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8kCt5yiBw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8kCt5yiBw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8kCt5yiBw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8kCt5yiBw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8kCt5yiBw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8kCt5yiBw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8kCt5yiBw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8kCt5yiBw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8kCt5yiBw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8kCt5yiBw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8kCt5yiBw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8kCt5yiBw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8kCt5yiBw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8kCt5yiBw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8kCt5yiBw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8kCt5yiBw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8kCt5yiBw .navbar {
    height: 70px;
  }
  .cid-u8kCt5yiBw .navbar.opened {
    height: auto;
  }
  .cid-u8kCt5yiBw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8kCt6nZuK {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u8kCt6nZuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kCt6nZuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kCt6nZuK .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u8kCt6nZuK .card {
    margin-bottom: 2rem!important;
  }
  .cid-u8kCt6nZuK .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u8kCt6nZuK .link-wrap {
    align-items: center;
  }
}
.cid-u8kCt6nZuK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u8kCt74d4A {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u8kCt74d4A .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kCt74d4A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kCt74d4A .row {
  justify-content: center;
}
.cid-u8kCt74d4A .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-u8kCt74d4A .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-u8kCt74d4A .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-u8kCt74d4A .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u8kCt74d4A .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-u8kCt74d4A .content-container {
    padding: 24px 16px;
  }
}
.cid-u8kCt74d4A .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u8kCt74d4A .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-u8kCt74d4A .head-clear {
    display: none;
  }
}
.cid-u8kCt74d4A .card-head {
  padding-bottom: 40px;
}
.cid-u8kCt74d4A .grid-column-item {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-u8kCt74d4A .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-u8kCt74d4A .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8kCt74d4A .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u8kCt74d4A .price-text {
  color: #ffffff;
}
.cid-u8kCt74d4A .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-u8kCt74d4A .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-u8kCt74d4A .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-u8kCt74d4A .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u8kCt74d4A .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-u8kCt74d4A .item-text {
  color: #232323;
  text-align: center;
}
.cid-u8kCt74d4A .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-u8kCt74d4A .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-u8kCt74d4A .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-u8kCt74d4A .card-comment {
    text-align: center;
  }
}
.cid-u8kCt74d4A .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u8kCt8fpcK {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u8kCt8fpcK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kCt8fpcK .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-u8kCt8fpcK .container {
    padding: 0 30px;
  }
}
.cid-u8kCt8fpcK .items .item {
  margin-bottom: 30px;
}
.cid-u8kCt8fpcK .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8kCt8fpcK .items .item {
    margin-bottom: 30px;
  }
}
.cid-u8kCt8fpcK .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-u8kCt8fpcK .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u8kCt8fpcK .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-u8kCt8fpcK .dragArea.row {
  margin: 0;
}
.cid-u8kCt8fpcK .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-u8kCt8fpcK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-u8kCt8fpcK .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u8kCt8fpcK .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-u8kCt8fpcK .dragArea.row .form-group .form-control:hover,
.cid-u8kCt8fpcK .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-u8kCt8fpcK .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-u8kCt8fpcK .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-u8kCt8fpcK .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-u8kCt8fpcK .mbr-section-title {
  color: #000000;
}
.cid-u8kCt8fpcK .card-title {
  color: #000000;
}
.cid-u8kCt8fpcK .list {
  color: #000000;
}
.cid-u8kCt8fpcK .mbr-text {
  color: #000000;
}
.cid-u8kCt8fpcK label {
  color: #000000;
}
.cid-u8kCt9mH1g {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-u8kCt9mH1g .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kCt9mH1g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kCt9mH1g .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-u8kCt9mH1g .mbr-section-subtitle {
  text-align: left;
}
.cid-u8kCt9mH1g .mbr-text UL {
  text-align: left;
}
.cid-u8kCt9mH1g .mbr-text {
  color: #a3a3a3;
}
.cid-u8kCt9mH1g .card-title,
.cid-u8kCt9mH1g .card-box {
  color: #353535;
}
.cid-u8kCtak9mt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u8kCtak9mt .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u8kCtak9mt .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u8kCtak9mt .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u8kCtak9mt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u8kCtak9mt .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u8kCtak9mt .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u8kCtak9mt .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u8kCtak9mt .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u8kCtak9mt .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8kCtak9mt .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u8kCtak9mt .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u8kIYiukMD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u8kIYiukMD nav.navbar {
  position: fixed;
}
.cid-u8kIYiukMD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8kIYiukMD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u8kIYiukMD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8kIYiukMD .dropdown-item:hover,
.cid-u8kIYiukMD .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u8kIYiukMD .dropdown-item:hover span {
  color: white;
}
.cid-u8kIYiukMD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8kIYiukMD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8kIYiukMD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8kIYiukMD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8kIYiukMD .nav-link {
  position: relative;
}
.cid-u8kIYiukMD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u8kIYiukMD .container {
    flex-wrap: nowrap;
  }
}
.cid-u8kIYiukMD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8kIYiukMD .dropdown-menu,
.cid-u8kIYiukMD .navbar.opened {
  background: #ffffff !important;
}
.cid-u8kIYiukMD .nav-item:focus,
.cid-u8kIYiukMD .nav-link:focus {
  outline: none;
}
.cid-u8kIYiukMD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8kIYiukMD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8kIYiukMD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8kIYiukMD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8kIYiukMD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8kIYiukMD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8kIYiukMD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8kIYiukMD .navbar.opened {
  transition: all 0.3s;
}
.cid-u8kIYiukMD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8kIYiukMD .navbar .navbar-logo img {
  width: auto;
}
.cid-u8kIYiukMD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8kIYiukMD .navbar.collapsed {
  justify-content: center;
}
.cid-u8kIYiukMD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8kIYiukMD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8kIYiukMD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u8kIYiukMD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8kIYiukMD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8kIYiukMD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u8kIYiukMD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8kIYiukMD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8kIYiukMD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8kIYiukMD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8kIYiukMD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8kIYiukMD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8kIYiukMD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8kIYiukMD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u8kIYiukMD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8kIYiukMD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8kIYiukMD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8kIYiukMD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8kIYiukMD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8kIYiukMD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8kIYiukMD .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8kIYiukMD .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u8kIYiukMD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8kIYiukMD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8kIYiukMD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8kIYiukMD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8kIYiukMD .dropdown-item.active,
.cid-u8kIYiukMD .dropdown-item:active {
  background-color: transparent;
}
.cid-u8kIYiukMD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8kIYiukMD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8kIYiukMD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8kIYiukMD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8kIYiukMD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8kIYiukMD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8kIYiukMD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8kIYiukMD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8kIYiukMD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8kIYiukMD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8kIYiukMD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8kIYiukMD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8kIYiukMD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8kIYiukMD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8kIYiukMD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8kIYiukMD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8kIYiukMD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8kIYiukMD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8kIYiukMD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8kIYiukMD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8kIYiukMD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8kIYiukMD .navbar {
    height: 70px;
  }
  .cid-u8kIYiukMD .navbar.opened {
    height: auto;
  }
  .cid-u8kIYiukMD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8kIYjhLlk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u8kIYjhLlk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kIYjhLlk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kIYjhLlk .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u8kIYjhLlk .card {
    margin-bottom: 2rem!important;
  }
  .cid-u8kIYjhLlk .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u8kIYjhLlk .link-wrap {
    align-items: center;
  }
}
.cid-u8kIYjhLlk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u8kIYjZC4p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u8kIYjZC4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kIYjZC4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kIYjZC4p .row {
  justify-content: center;
}
.cid-u8kIYjZC4p .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-u8kIYjZC4p .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-u8kIYjZC4p .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-u8kIYjZC4p .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u8kIYjZC4p .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-u8kIYjZC4p .content-container {
    padding: 24px 16px;
  }
}
.cid-u8kIYjZC4p .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u8kIYjZC4p .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-u8kIYjZC4p .head-clear {
    display: none;
  }
}
.cid-u8kIYjZC4p .card-head {
  padding-bottom: 40px;
}
.cid-u8kIYjZC4p .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-u8kIYjZC4p .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-u8kIYjZC4p .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8kIYjZC4p .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u8kIYjZC4p .price-text {
  color: #ffffff;
}
.cid-u8kIYjZC4p .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-u8kIYjZC4p .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-u8kIYjZC4p .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-u8kIYjZC4p .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u8kIYjZC4p .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-u8kIYjZC4p .item-text {
  color: #232323;
  text-align: center;
}
.cid-u8kIYjZC4p .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-u8kIYjZC4p .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-u8kIYjZC4p .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-u8kIYjZC4p .card-comment {
    text-align: center;
  }
}
.cid-u8kIYjZC4p .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u8kIYl66xc {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u8kIYl66xc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kIYl66xc .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-u8kIYl66xc .container {
    padding: 0 30px;
  }
}
.cid-u8kIYl66xc .items .item {
  margin-bottom: 30px;
}
.cid-u8kIYl66xc .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8kIYl66xc .items .item {
    margin-bottom: 30px;
  }
}
.cid-u8kIYl66xc .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-u8kIYl66xc .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u8kIYl66xc .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-u8kIYl66xc .dragArea.row {
  margin: 0;
}
.cid-u8kIYl66xc .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-u8kIYl66xc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-u8kIYl66xc .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u8kIYl66xc .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-u8kIYl66xc .dragArea.row .form-group .form-control:hover,
.cid-u8kIYl66xc .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-u8kIYl66xc .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-u8kIYl66xc .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-u8kIYl66xc .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-u8kIYl66xc .mbr-section-title {
  color: #000000;
}
.cid-u8kIYl66xc .card-title {
  color: #000000;
}
.cid-u8kIYl66xc .list {
  color: #000000;
}
.cid-u8kIYl66xc .mbr-text {
  color: #000000;
}
.cid-u8kIYl66xc label {
  color: #000000;
}
.cid-u8kIYl66xc LABEL {
  text-align: center;
}
.cid-u8kIYm9eR4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-u8kIYm9eR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kIYm9eR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kIYm9eR4 .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-u8kIYm9eR4 .mbr-section-subtitle {
  text-align: left;
}
.cid-u8kIYm9eR4 .mbr-text UL {
  text-align: left;
}
.cid-u8kIYm9eR4 .mbr-text {
  color: #a3a3a3;
}
.cid-u8kIYm9eR4 .card-title,
.cid-u8kIYm9eR4 .card-box {
  color: #353535;
}
.cid-u8kIYnetZu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u8kIYnetZu .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u8kIYnetZu .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u8kIYnetZu .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u8kIYnetZu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u8kIYnetZu .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u8kIYnetZu .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u8kIYnetZu .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u8kIYnetZu .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u8kIYnetZu .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8kIYnetZu .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u8kIYnetZu .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u8kMn84ecN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u8kMn84ecN nav.navbar {
  position: fixed;
}
.cid-u8kMn84ecN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8kMn84ecN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u8kMn84ecN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8kMn84ecN .dropdown-item:hover,
.cid-u8kMn84ecN .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u8kMn84ecN .dropdown-item:hover span {
  color: white;
}
.cid-u8kMn84ecN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8kMn84ecN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8kMn84ecN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8kMn84ecN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8kMn84ecN .nav-link {
  position: relative;
}
.cid-u8kMn84ecN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u8kMn84ecN .container {
    flex-wrap: nowrap;
  }
}
.cid-u8kMn84ecN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8kMn84ecN .dropdown-menu,
.cid-u8kMn84ecN .navbar.opened {
  background: #ffffff !important;
}
.cid-u8kMn84ecN .nav-item:focus,
.cid-u8kMn84ecN .nav-link:focus {
  outline: none;
}
.cid-u8kMn84ecN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8kMn84ecN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8kMn84ecN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8kMn84ecN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8kMn84ecN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8kMn84ecN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8kMn84ecN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8kMn84ecN .navbar.opened {
  transition: all 0.3s;
}
.cid-u8kMn84ecN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8kMn84ecN .navbar .navbar-logo img {
  width: auto;
}
.cid-u8kMn84ecN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8kMn84ecN .navbar.collapsed {
  justify-content: center;
}
.cid-u8kMn84ecN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8kMn84ecN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8kMn84ecN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u8kMn84ecN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8kMn84ecN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8kMn84ecN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u8kMn84ecN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8kMn84ecN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8kMn84ecN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8kMn84ecN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8kMn84ecN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8kMn84ecN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8kMn84ecN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8kMn84ecN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u8kMn84ecN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8kMn84ecN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8kMn84ecN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8kMn84ecN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8kMn84ecN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8kMn84ecN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u8kMn84ecN .navbar.navbar-short {
  min-height: 60px;
}
.cid-u8kMn84ecN .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u8kMn84ecN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8kMn84ecN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8kMn84ecN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8kMn84ecN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8kMn84ecN .dropdown-item.active,
.cid-u8kMn84ecN .dropdown-item:active {
  background-color: transparent;
}
.cid-u8kMn84ecN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8kMn84ecN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8kMn84ecN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8kMn84ecN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8kMn84ecN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8kMn84ecN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8kMn84ecN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8kMn84ecN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8kMn84ecN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8kMn84ecN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u8kMn84ecN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8kMn84ecN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8kMn84ecN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8kMn84ecN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8kMn84ecN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8kMn84ecN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8kMn84ecN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8kMn84ecN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8kMn84ecN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8kMn84ecN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8kMn84ecN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8kMn84ecN .navbar {
    height: 70px;
  }
  .cid-u8kMn84ecN .navbar.opened {
    height: auto;
  }
  .cid-u8kMn84ecN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8kMn9FL5K {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-u8kMn9FL5K .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kMn9FL5K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kMn9FL5K .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-u8kMn9FL5K .card {
    margin-bottom: 2rem!important;
  }
  .cid-u8kMn9FL5K .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-u8kMn9FL5K .link-wrap {
    align-items: center;
  }
}
.cid-u8kMn9FL5K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u8kMnaJJ0d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-u8kMnaJJ0d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kMnaJJ0d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kMnaJJ0d .row {
  justify-content: center;
}
.cid-u8kMnaJJ0d .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-u8kMnaJJ0d .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-u8kMnaJJ0d .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-u8kMnaJJ0d .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-u8kMnaJJ0d .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-u8kMnaJJ0d .content-container {
    padding: 24px 16px;
  }
}
.cid-u8kMnaJJ0d .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u8kMnaJJ0d .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-u8kMnaJJ0d .head-clear {
    display: none;
  }
}
.cid-u8kMnaJJ0d .card-head {
  padding-bottom: 40px;
}
.cid-u8kMnaJJ0d .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-u8kMnaJJ0d .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-u8kMnaJJ0d .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8kMnaJJ0d .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-u8kMnaJJ0d .price-text {
  color: #ffffff;
}
.cid-u8kMnaJJ0d .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-u8kMnaJJ0d .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-u8kMnaJJ0d .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-u8kMnaJJ0d .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u8kMnaJJ0d .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-u8kMnaJJ0d .item-text {
  color: #232323;
  text-align: center;
}
.cid-u8kMnaJJ0d .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-u8kMnaJJ0d .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-u8kMnaJJ0d .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-u8kMnaJJ0d .card-comment {
    text-align: center;
  }
}
.cid-u8kMnaJJ0d .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-u8kMnddmTz {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u8kMnddmTz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kMnddmTz .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-u8kMnddmTz .container {
    padding: 0 30px;
  }
}
.cid-u8kMnddmTz .items .item {
  margin-bottom: 30px;
}
.cid-u8kMnddmTz .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u8kMnddmTz .items .item {
    margin-bottom: 30px;
  }
}
.cid-u8kMnddmTz .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-u8kMnddmTz .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-u8kMnddmTz .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-u8kMnddmTz .dragArea.row {
  margin: 0;
}
.cid-u8kMnddmTz .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-u8kMnddmTz .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-u8kMnddmTz .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-u8kMnddmTz .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-u8kMnddmTz .dragArea.row .form-group .form-control:hover,
.cid-u8kMnddmTz .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-u8kMnddmTz .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-u8kMnddmTz .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-u8kMnddmTz .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-u8kMnddmTz .mbr-section-title {
  color: #000000;
}
.cid-u8kMnddmTz .card-title {
  color: #000000;
}
.cid-u8kMnddmTz .list {
  color: #000000;
}
.cid-u8kMnddmTz .mbr-text {
  color: #000000;
}
.cid-u8kMnddmTz label {
  color: #000000;
}
.cid-u8kMnddmTz LABEL {
  text-align: center;
}
.cid-u8kMne5nxg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-u8kMne5nxg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8kMne5nxg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8kMne5nxg .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-u8kMne5nxg .mbr-section-subtitle {
  text-align: left;
}
.cid-u8kMne5nxg .mbr-text UL {
  text-align: left;
}
.cid-u8kMne5nxg .mbr-text {
  color: #a3a3a3;
}
.cid-u8kMne5nxg .card-title,
.cid-u8kMne5nxg .card-box {
  color: #353535;
}
.cid-u8kMnf9yW0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u8kMnf9yW0 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u8kMnf9yW0 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u8kMnf9yW0 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u8kMnf9yW0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u8kMnf9yW0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u8kMnf9yW0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u8kMnf9yW0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u8kMnf9yW0 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u8kMnf9yW0 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u8kMnf9yW0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u8kMnf9yW0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u5HjwDXES3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u5HjwDXES3 nav.navbar {
  position: fixed;
}
.cid-u5HjwDXES3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5HjwDXES3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u5HjwDXES3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u5HjwDXES3 .dropdown-item:hover,
.cid-u5HjwDXES3 .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u5HjwDXES3 .dropdown-item:hover span {
  color: white;
}
.cid-u5HjwDXES3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u5HjwDXES3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u5HjwDXES3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u5HjwDXES3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u5HjwDXES3 .nav-link {
  position: relative;
}
.cid-u5HjwDXES3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u5HjwDXES3 .container {
    flex-wrap: nowrap;
  }
}
.cid-u5HjwDXES3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u5HjwDXES3 .dropdown-menu,
.cid-u5HjwDXES3 .navbar.opened {
  background: #ffffff !important;
}
.cid-u5HjwDXES3 .nav-item:focus,
.cid-u5HjwDXES3 .nav-link:focus {
  outline: none;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u5HjwDXES3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u5HjwDXES3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u5HjwDXES3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u5HjwDXES3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u5HjwDXES3 .navbar.opened {
  transition: all 0.3s;
}
.cid-u5HjwDXES3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u5HjwDXES3 .navbar .navbar-logo img {
  width: auto;
}
.cid-u5HjwDXES3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u5HjwDXES3 .navbar.collapsed {
  justify-content: center;
}
.cid-u5HjwDXES3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u5HjwDXES3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u5HjwDXES3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u5HjwDXES3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u5HjwDXES3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u5HjwDXES3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u5HjwDXES3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u5HjwDXES3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u5HjwDXES3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u5HjwDXES3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u5HjwDXES3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u5HjwDXES3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u5HjwDXES3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u5HjwDXES3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u5HjwDXES3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u5HjwDXES3 .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u5HjwDXES3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u5HjwDXES3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u5HjwDXES3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u5HjwDXES3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u5HjwDXES3 .dropdown-item.active,
.cid-u5HjwDXES3 .dropdown-item:active {
  background-color: transparent;
}
.cid-u5HjwDXES3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u5HjwDXES3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u5HjwDXES3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u5HjwDXES3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u5HjwDXES3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u5HjwDXES3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u5HjwDXES3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u5HjwDXES3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u5HjwDXES3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u5HjwDXES3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u5HjwDXES3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u5HjwDXES3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u5HjwDXES3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u5HjwDXES3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u5HjwDXES3 .navbar {
    height: 70px;
  }
  .cid-u5HjwDXES3 .navbar.opened {
    height: auto;
  }
  .cid-u5HjwDXES3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9t3vFvwpP {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-u9t3vFvwpP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9t3vFvwpP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9t3vFvwpP .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-u9t3vFvwpP .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u9t3vFvwpP .container {
    padding: 0 24px;
  }
}
.cid-u9t3vFvwpP .content-wrapper {
  padding: 50px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100h;
}
@media (max-width: 992px) {
  .cid-u9t3vFvwpP .content-wrapper {
    padding: 0;
  }
}
.cid-u9t3vFvwpP .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0.5rem !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap {
  opacity: 0.9;
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  width: 50%;
  padding: 48px;
  background-color: #fafafa;
  border-radius: 0.5rem !important;
}
@media (max-width: 1500px) {
  .cid-u9t3vFvwpP .content-wrapper .card-wrap {
    width: 65%;
  }
}
@media (max-width: 1200px) {
  .cid-u9t3vFvwpP .content-wrapper .card-wrap {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-u9t3vFvwpP .content-wrapper .card-wrap {
    padding: 24px;
  }
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 16px;
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #161616 0%, transparent 100%);
}
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-section-btn .btn:hover,
.cid-u9t3vFvwpP .content-wrapper .card-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.cid-u9t3vFvwpP .mbr-section-title {
  color: #141414;
}
.cid-u9t3vFvwpP .mbr-desc {
  color: #141414;
}
.cid-u9t3vFvwpP .mbr-text {
  color: #141414;
}
.cid-u5Hphe2Ouv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5Hphe2Ouv .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u5Hphe2Ouv .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u5Hphe2Ouv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u5Hphe2Ouv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u5Hphe2Ouv .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u5Hphe2Ouv .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u5Hphe2Ouv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u5Hphe2Ouv .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u9taV0PkgA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-u9taV0PkgA nav.navbar {
  position: fixed;
}
.cid-u9taV0PkgA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9taV0PkgA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-u9taV0PkgA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u9taV0PkgA .dropdown-item:hover,
.cid-u9taV0PkgA .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-u9taV0PkgA .dropdown-item:hover span {
  color: white;
}
.cid-u9taV0PkgA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u9taV0PkgA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u9taV0PkgA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u9taV0PkgA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u9taV0PkgA .nav-link {
  position: relative;
}
.cid-u9taV0PkgA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u9taV0PkgA .container {
    flex-wrap: nowrap;
  }
}
.cid-u9taV0PkgA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u9taV0PkgA .dropdown-menu,
.cid-u9taV0PkgA .navbar.opened {
  background: #ffffff !important;
}
.cid-u9taV0PkgA .nav-item:focus,
.cid-u9taV0PkgA .nav-link:focus {
  outline: none;
}
.cid-u9taV0PkgA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u9taV0PkgA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u9taV0PkgA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u9taV0PkgA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u9taV0PkgA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u9taV0PkgA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u9taV0PkgA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u9taV0PkgA .navbar.opened {
  transition: all 0.3s;
}
.cid-u9taV0PkgA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u9taV0PkgA .navbar .navbar-logo img {
  width: auto;
}
.cid-u9taV0PkgA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u9taV0PkgA .navbar.collapsed {
  justify-content: center;
}
.cid-u9taV0PkgA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u9taV0PkgA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u9taV0PkgA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-u9taV0PkgA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u9taV0PkgA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u9taV0PkgA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u9taV0PkgA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u9taV0PkgA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u9taV0PkgA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u9taV0PkgA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u9taV0PkgA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u9taV0PkgA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u9taV0PkgA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u9taV0PkgA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u9taV0PkgA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u9taV0PkgA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u9taV0PkgA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u9taV0PkgA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u9taV0PkgA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u9taV0PkgA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u9taV0PkgA .navbar.navbar-short {
  min-height: 60px;
}
.cid-u9taV0PkgA .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-u9taV0PkgA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u9taV0PkgA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u9taV0PkgA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u9taV0PkgA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u9taV0PkgA .dropdown-item.active,
.cid-u9taV0PkgA .dropdown-item:active {
  background-color: transparent;
}
.cid-u9taV0PkgA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u9taV0PkgA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u9taV0PkgA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u9taV0PkgA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u9taV0PkgA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u9taV0PkgA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u9taV0PkgA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u9taV0PkgA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u9taV0PkgA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u9taV0PkgA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u9taV0PkgA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u9taV0PkgA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9taV0PkgA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u9taV0PkgA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u9taV0PkgA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9taV0PkgA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u9taV0PkgA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u9taV0PkgA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u9taV0PkgA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u9taV0PkgA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u9taV0PkgA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u9taV0PkgA .navbar {
    height: 70px;
  }
  .cid-u9taV0PkgA .navbar.opened {
    height: auto;
  }
  .cid-u9taV0PkgA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u9tefsigNU {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #e9e9e9;
}
.cid-u9tefsigNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9tefsigNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9tefsigNU .mbr-section-title {
  text-align: left;
}
.cid-u9tj7xnD1B {
  padding-top: 60px;
  padding-bottom: 135px;
  position: relative;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-u9tj7xnD1B p {
  color: #767676;
  padding: 0;
  letter-spacing: 0px;
}
.cid-u9tj7xnD1B .panel-title {
  border-bottom: 2px solid #dc2021;
}
.cid-u9tj7xnD1B .collapsed {
  border: none;
}
.cid-u9tj7xnD1B .panel-body {
  padding-top: 0.5rem;
}
.cid-u9tj7xnD1B .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-u9tj7xnD1B .card .card-header {
  opacity: 0.7;
  border-radius: 6px;
  margin: 0.5rem 0;
  border-bottom: 1px solid #dc2021;
  background: #fafafa;
  padding: 0;
}
.cid-u9tj7xnD1B .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-u9tj7xnD1B .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-u9tj7xnD1B .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-u9tj7xnD1B .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-u9tj7xnD1B .panel-text {
  color: #6c758f;
}
.cid-u9tj7xnD1B H4 {
  color: #161616;
  text-transform: uppercase;
}
.cid-u9tj7xnD1B .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9tj7xnD1B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9tj7xnD1B H2 {
  color: #dc2021;
  text-align: left;
}
.cid-u9taV2dlsU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u9taV2dlsU .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u9taV2dlsU .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-u9taV2dlsU .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-u9taV2dlsU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u9taV2dlsU .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-u9taV2dlsU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u9taV2dlsU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-u9taV2dlsU .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u9taV2dlsU .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u9taV2dlsU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u9taV2dlsU .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ua1F5ONJtw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-ua1F5ONJtw nav.navbar {
  position: fixed;
}
.cid-ua1F5ONJtw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1F5ONJtw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-ua1F5ONJtw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ua1F5ONJtw .dropdown-item:hover,
.cid-ua1F5ONJtw .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-ua1F5ONJtw .dropdown-item:hover span {
  color: white;
}
.cid-ua1F5ONJtw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ua1F5ONJtw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ua1F5ONJtw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ua1F5ONJtw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ua1F5ONJtw .nav-link {
  position: relative;
}
.cid-ua1F5ONJtw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ua1F5ONJtw .container {
    flex-wrap: nowrap;
  }
}
.cid-ua1F5ONJtw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ua1F5ONJtw .dropdown-menu,
.cid-ua1F5ONJtw .navbar.opened {
  background: #ffffff !important;
}
.cid-ua1F5ONJtw .nav-item:focus,
.cid-ua1F5ONJtw .nav-link:focus {
  outline: none;
}
.cid-ua1F5ONJtw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ua1F5ONJtw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ua1F5ONJtw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ua1F5ONJtw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1F5ONJtw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ua1F5ONJtw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ua1F5ONJtw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ua1F5ONJtw .navbar.opened {
  transition: all 0.3s;
}
.cid-ua1F5ONJtw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ua1F5ONJtw .navbar .navbar-logo img {
  width: auto;
}
.cid-ua1F5ONJtw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ua1F5ONJtw .navbar.collapsed {
  justify-content: center;
}
.cid-ua1F5ONJtw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ua1F5ONJtw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ua1F5ONJtw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-ua1F5ONJtw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ua1F5ONJtw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ua1F5ONJtw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ua1F5ONJtw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ua1F5ONJtw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ua1F5ONJtw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ua1F5ONJtw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ua1F5ONJtw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ua1F5ONJtw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ua1F5ONJtw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ua1F5ONJtw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ua1F5ONJtw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ua1F5ONJtw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ua1F5ONJtw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ua1F5ONJtw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ua1F5ONJtw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ua1F5ONJtw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ua1F5ONJtw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ua1F5ONJtw .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-ua1F5ONJtw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ua1F5ONJtw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ua1F5ONJtw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ua1F5ONJtw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ua1F5ONJtw .dropdown-item.active,
.cid-ua1F5ONJtw .dropdown-item:active {
  background-color: transparent;
}
.cid-ua1F5ONJtw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ua1F5ONJtw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ua1F5ONJtw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ua1F5ONJtw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ua1F5ONJtw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ua1F5ONJtw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ua1F5ONJtw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ua1F5ONJtw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ua1F5ONJtw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ua1F5ONJtw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ua1F5ONJtw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ua1F5ONJtw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1F5ONJtw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1F5ONJtw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ua1F5ONJtw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1F5ONJtw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ua1F5ONJtw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ua1F5ONJtw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1F5ONJtw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ua1F5ONJtw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ua1F5ONJtw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ua1F5ONJtw .navbar {
    height: 70px;
  }
  .cid-ua1F5ONJtw .navbar.opened {
    height: auto;
  }
  .cid-ua1F5ONJtw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ua1F5PwCZk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ua1F5PwCZk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1F5PwCZk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1F5PwCZk .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ua1F5PwCZk .card {
    margin-bottom: 2rem!important;
  }
  .cid-ua1F5PwCZk .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ua1F5PwCZk .link-wrap {
    align-items: center;
  }
}
.cid-ua1F5PwCZk .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ua1F5Q7GxV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ua1F5Q7GxV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1F5Q7GxV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1F5Q7GxV .row {
  justify-content: center;
}
.cid-ua1F5Q7GxV .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-ua1F5Q7GxV .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-ua1F5Q7GxV .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-ua1F5Q7GxV .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-ua1F5Q7GxV .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-ua1F5Q7GxV .content-container {
    padding: 24px 16px;
  }
}
.cid-ua1F5Q7GxV .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ua1F5Q7GxV .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ua1F5Q7GxV .head-clear {
    display: none;
  }
}
.cid-ua1F5Q7GxV .card-head {
  padding-bottom: 40px;
}
.cid-ua1F5Q7GxV .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-ua1F5Q7GxV .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-ua1F5Q7GxV .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ua1F5Q7GxV .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ua1F5Q7GxV .price-text {
  color: #ffffff;
}
.cid-ua1F5Q7GxV .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-ua1F5Q7GxV .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-ua1F5Q7GxV .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-ua1F5Q7GxV .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1F5Q7GxV .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-ua1F5Q7GxV .item-text {
  color: #232323;
  text-align: center;
}
.cid-ua1F5Q7GxV .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-ua1F5Q7GxV .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-ua1F5Q7GxV .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-ua1F5Q7GxV .card-comment {
    text-align: center;
  }
}
.cid-ua1F5Q7GxV .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ua1F5RjQb0 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-ua1F5RjQb0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1F5RjQb0 .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-ua1F5RjQb0 .container {
    padding: 0 30px;
  }
}
.cid-ua1F5RjQb0 .items .item {
  margin-bottom: 30px;
}
.cid-ua1F5RjQb0 .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ua1F5RjQb0 .items .item {
    margin-bottom: 30px;
  }
}
.cid-ua1F5RjQb0 .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-ua1F5RjQb0 .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ua1F5RjQb0 .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-ua1F5RjQb0 .dragArea.row {
  margin: 0;
}
.cid-ua1F5RjQb0 .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-ua1F5RjQb0 .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ua1F5RjQb0 .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-ua1F5RjQb0 .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-ua1F5RjQb0 .dragArea.row .form-group .form-control:hover,
.cid-ua1F5RjQb0 .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-ua1F5RjQb0 .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-ua1F5RjQb0 .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-ua1F5RjQb0 .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-ua1F5RjQb0 .mbr-section-title {
  color: #000000;
}
.cid-ua1F5RjQb0 .card-title {
  color: #000000;
}
.cid-ua1F5RjQb0 .list {
  color: #000000;
}
.cid-ua1F5RjQb0 .mbr-text {
  color: #000000;
}
.cid-ua1F5RjQb0 label {
  color: #000000;
}
.cid-ua1F5RjQb0 LABEL {
  text-align: center;
}
.cid-ua1F5StNJV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-ua1F5StNJV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1F5StNJV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1F5StNJV .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-ua1F5StNJV .mbr-section-subtitle {
  text-align: left;
}
.cid-ua1F5StNJV .mbr-text UL {
  text-align: left;
}
.cid-ua1F5StNJV .mbr-text {
  color: #a3a3a3;
}
.cid-ua1F5StNJV .card-title,
.cid-ua1F5StNJV .card-box {
  color: #353535;
}
.cid-ua1F5Tv7xs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1F5Tv7xs .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1F5Tv7xs .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-ua1F5Tv7xs .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-ua1F5Tv7xs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1F5Tv7xs .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-ua1F5Tv7xs .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ua1F5Tv7xs .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ua1F5Tv7xs .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ua1F5Tv7xs .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ua1F5Tv7xs .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ua1F5Tv7xs .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ua1Pe01ofv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-ua1Pe01ofv nav.navbar {
  position: fixed;
}
.cid-ua1Pe01ofv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1Pe01ofv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-ua1Pe01ofv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ua1Pe01ofv .dropdown-item:hover,
.cid-ua1Pe01ofv .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-ua1Pe01ofv .dropdown-item:hover span {
  color: white;
}
.cid-ua1Pe01ofv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ua1Pe01ofv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ua1Pe01ofv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ua1Pe01ofv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ua1Pe01ofv .nav-link {
  position: relative;
}
.cid-ua1Pe01ofv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ua1Pe01ofv .container {
    flex-wrap: nowrap;
  }
}
.cid-ua1Pe01ofv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ua1Pe01ofv .dropdown-menu,
.cid-ua1Pe01ofv .navbar.opened {
  background: #ffffff !important;
}
.cid-ua1Pe01ofv .nav-item:focus,
.cid-ua1Pe01ofv .nav-link:focus {
  outline: none;
}
.cid-ua1Pe01ofv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ua1Pe01ofv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ua1Pe01ofv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ua1Pe01ofv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1Pe01ofv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ua1Pe01ofv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ua1Pe01ofv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ua1Pe01ofv .navbar.opened {
  transition: all 0.3s;
}
.cid-ua1Pe01ofv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ua1Pe01ofv .navbar .navbar-logo img {
  width: auto;
}
.cid-ua1Pe01ofv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ua1Pe01ofv .navbar.collapsed {
  justify-content: center;
}
.cid-ua1Pe01ofv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ua1Pe01ofv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ua1Pe01ofv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-ua1Pe01ofv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ua1Pe01ofv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ua1Pe01ofv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ua1Pe01ofv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ua1Pe01ofv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ua1Pe01ofv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ua1Pe01ofv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ua1Pe01ofv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ua1Pe01ofv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ua1Pe01ofv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ua1Pe01ofv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ua1Pe01ofv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ua1Pe01ofv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ua1Pe01ofv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ua1Pe01ofv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ua1Pe01ofv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ua1Pe01ofv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ua1Pe01ofv .navbar.navbar-short {
  min-height: 60px;
}
.cid-ua1Pe01ofv .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-ua1Pe01ofv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ua1Pe01ofv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ua1Pe01ofv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ua1Pe01ofv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ua1Pe01ofv .dropdown-item.active,
.cid-ua1Pe01ofv .dropdown-item:active {
  background-color: transparent;
}
.cid-ua1Pe01ofv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ua1Pe01ofv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ua1Pe01ofv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ua1Pe01ofv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ua1Pe01ofv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ua1Pe01ofv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ua1Pe01ofv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ua1Pe01ofv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ua1Pe01ofv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ua1Pe01ofv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ua1Pe01ofv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ua1Pe01ofv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1Pe01ofv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1Pe01ofv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ua1Pe01ofv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1Pe01ofv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ua1Pe01ofv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ua1Pe01ofv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1Pe01ofv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ua1Pe01ofv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ua1Pe01ofv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ua1Pe01ofv .navbar {
    height: 70px;
  }
  .cid-ua1Pe01ofv .navbar.opened {
    height: auto;
  }
  .cid-ua1Pe01ofv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ua1Pe0Q6Ss {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ua1Pe0Q6Ss .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1Pe0Q6Ss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1Pe0Q6Ss .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ua1Pe0Q6Ss .card {
    margin-bottom: 2rem!important;
  }
  .cid-ua1Pe0Q6Ss .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ua1Pe0Q6Ss .link-wrap {
    align-items: center;
  }
}
.cid-ua1Pe0Q6Ss .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ua1Pe1uAMf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ua1Pe1uAMf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1Pe1uAMf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1Pe1uAMf .row {
  justify-content: center;
}
.cid-ua1Pe1uAMf .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-ua1Pe1uAMf .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-ua1Pe1uAMf .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-ua1Pe1uAMf .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-ua1Pe1uAMf .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-ua1Pe1uAMf .content-container {
    padding: 24px 16px;
  }
}
.cid-ua1Pe1uAMf .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ua1Pe1uAMf .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ua1Pe1uAMf .head-clear {
    display: none;
  }
}
.cid-ua1Pe1uAMf .card-head {
  padding-bottom: 40px;
}
.cid-ua1Pe1uAMf .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-ua1Pe1uAMf .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-ua1Pe1uAMf .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ua1Pe1uAMf .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ua1Pe1uAMf .price-text {
  color: #ffffff;
}
.cid-ua1Pe1uAMf .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-ua1Pe1uAMf .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-ua1Pe1uAMf .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-ua1Pe1uAMf .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1Pe1uAMf .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-ua1Pe1uAMf .item-text {
  color: #232323;
  text-align: center;
}
.cid-ua1Pe1uAMf .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-ua1Pe1uAMf .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-ua1Pe1uAMf .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-ua1Pe1uAMf .card-comment {
    text-align: center;
  }
}
.cid-ua1Pe1uAMf .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ua1Pe2HrKJ {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-ua1Pe2HrKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1Pe2HrKJ .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-ua1Pe2HrKJ .container {
    padding: 0 30px;
  }
}
.cid-ua1Pe2HrKJ .items .item {
  margin-bottom: 30px;
}
.cid-ua1Pe2HrKJ .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ua1Pe2HrKJ .items .item {
    margin-bottom: 30px;
  }
}
.cid-ua1Pe2HrKJ .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-ua1Pe2HrKJ .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ua1Pe2HrKJ .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-ua1Pe2HrKJ .dragArea.row {
  margin: 0;
}
.cid-ua1Pe2HrKJ .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-ua1Pe2HrKJ .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ua1Pe2HrKJ .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-ua1Pe2HrKJ .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-ua1Pe2HrKJ .dragArea.row .form-group .form-control:hover,
.cid-ua1Pe2HrKJ .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-ua1Pe2HrKJ .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-ua1Pe2HrKJ .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-ua1Pe2HrKJ .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-ua1Pe2HrKJ .mbr-section-title {
  color: #000000;
}
.cid-ua1Pe2HrKJ .card-title {
  color: #000000;
}
.cid-ua1Pe2HrKJ .list {
  color: #000000;
}
.cid-ua1Pe2HrKJ .mbr-text {
  color: #000000;
}
.cid-ua1Pe2HrKJ label {
  color: #000000;
}
.cid-ua1Pe2HrKJ LABEL {
  text-align: center;
}
.cid-ua1Pe3KVh9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-ua1Pe3KVh9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1Pe3KVh9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1Pe3KVh9 .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-ua1Pe3KVh9 .mbr-section-subtitle {
  text-align: left;
}
.cid-ua1Pe3KVh9 .mbr-text UL {
  text-align: left;
}
.cid-ua1Pe3KVh9 .mbr-text {
  color: #a3a3a3;
}
.cid-ua1Pe3KVh9 .card-title,
.cid-ua1Pe3KVh9 .card-box {
  color: #353535;
}
.cid-ua1Pe4K9iX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1Pe4K9iX .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1Pe4K9iX .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-ua1Pe4K9iX .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-ua1Pe4K9iX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1Pe4K9iX .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-ua1Pe4K9iX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ua1Pe4K9iX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ua1Pe4K9iX .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ua1Pe4K9iX .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ua1Pe4K9iX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ua1Pe4K9iX .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ua1QQo6FKG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-ua1QQo6FKG nav.navbar {
  position: fixed;
}
.cid-ua1QQo6FKG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1QQo6FKG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-ua1QQo6FKG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ua1QQo6FKG .dropdown-item:hover,
.cid-ua1QQo6FKG .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-ua1QQo6FKG .dropdown-item:hover span {
  color: white;
}
.cid-ua1QQo6FKG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ua1QQo6FKG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ua1QQo6FKG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ua1QQo6FKG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ua1QQo6FKG .nav-link {
  position: relative;
}
.cid-ua1QQo6FKG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ua1QQo6FKG .container {
    flex-wrap: nowrap;
  }
}
.cid-ua1QQo6FKG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ua1QQo6FKG .dropdown-menu,
.cid-ua1QQo6FKG .navbar.opened {
  background: #ffffff !important;
}
.cid-ua1QQo6FKG .nav-item:focus,
.cid-ua1QQo6FKG .nav-link:focus {
  outline: none;
}
.cid-ua1QQo6FKG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ua1QQo6FKG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ua1QQo6FKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ua1QQo6FKG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1QQo6FKG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ua1QQo6FKG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ua1QQo6FKG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ua1QQo6FKG .navbar.opened {
  transition: all 0.3s;
}
.cid-ua1QQo6FKG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ua1QQo6FKG .navbar .navbar-logo img {
  width: auto;
}
.cid-ua1QQo6FKG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ua1QQo6FKG .navbar.collapsed {
  justify-content: center;
}
.cid-ua1QQo6FKG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ua1QQo6FKG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ua1QQo6FKG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-ua1QQo6FKG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ua1QQo6FKG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ua1QQo6FKG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ua1QQo6FKG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ua1QQo6FKG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ua1QQo6FKG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ua1QQo6FKG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ua1QQo6FKG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ua1QQo6FKG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ua1QQo6FKG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ua1QQo6FKG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ua1QQo6FKG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ua1QQo6FKG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ua1QQo6FKG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ua1QQo6FKG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ua1QQo6FKG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ua1QQo6FKG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ua1QQo6FKG .navbar.navbar-short {
  min-height: 60px;
}
.cid-ua1QQo6FKG .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-ua1QQo6FKG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ua1QQo6FKG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ua1QQo6FKG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ua1QQo6FKG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ua1QQo6FKG .dropdown-item.active,
.cid-ua1QQo6FKG .dropdown-item:active {
  background-color: transparent;
}
.cid-ua1QQo6FKG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ua1QQo6FKG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ua1QQo6FKG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ua1QQo6FKG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ua1QQo6FKG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ua1QQo6FKG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ua1QQo6FKG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ua1QQo6FKG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ua1QQo6FKG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ua1QQo6FKG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ua1QQo6FKG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ua1QQo6FKG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1QQo6FKG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1QQo6FKG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ua1QQo6FKG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1QQo6FKG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ua1QQo6FKG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ua1QQo6FKG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1QQo6FKG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ua1QQo6FKG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ua1QQo6FKG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ua1QQo6FKG .navbar {
    height: 70px;
  }
  .cid-ua1QQo6FKG .navbar.opened {
    height: auto;
  }
  .cid-ua1QQo6FKG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ua1QQp0cue {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ua1QQp0cue .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1QQp0cue .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1QQp0cue .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ua1QQp0cue .card {
    margin-bottom: 2rem!important;
  }
  .cid-ua1QQp0cue .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ua1QQp0cue .link-wrap {
    align-items: center;
  }
}
.cid-ua1QQp0cue .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ua1QQpENXE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ua1QQpENXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1QQpENXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1QQpENXE .row {
  justify-content: center;
}
.cid-ua1QQpENXE .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-ua1QQpENXE .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-ua1QQpENXE .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-ua1QQpENXE .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-ua1QQpENXE .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-ua1QQpENXE .content-container {
    padding: 24px 16px;
  }
}
.cid-ua1QQpENXE .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ua1QQpENXE .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ua1QQpENXE .head-clear {
    display: none;
  }
}
.cid-ua1QQpENXE .card-head {
  padding-bottom: 40px;
}
.cid-ua1QQpENXE .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-ua1QQpENXE .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-ua1QQpENXE .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ua1QQpENXE .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ua1QQpENXE .price-text {
  color: #ffffff;
}
.cid-ua1QQpENXE .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-ua1QQpENXE .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-ua1QQpENXE .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-ua1QQpENXE .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1QQpENXE .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-ua1QQpENXE .item-text {
  color: #232323;
  text-align: center;
}
.cid-ua1QQpENXE .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-ua1QQpENXE .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-ua1QQpENXE .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-ua1QQpENXE .card-comment {
    text-align: center;
  }
}
.cid-ua1QQpENXE .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ua1QQqX7KK {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-ua1QQqX7KK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1QQqX7KK .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-ua1QQqX7KK .container {
    padding: 0 30px;
  }
}
.cid-ua1QQqX7KK .items .item {
  margin-bottom: 30px;
}
.cid-ua1QQqX7KK .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ua1QQqX7KK .items .item {
    margin-bottom: 30px;
  }
}
.cid-ua1QQqX7KK .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-ua1QQqX7KK .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ua1QQqX7KK .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-ua1QQqX7KK .dragArea.row {
  margin: 0;
}
.cid-ua1QQqX7KK .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-ua1QQqX7KK .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ua1QQqX7KK .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-ua1QQqX7KK .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-ua1QQqX7KK .dragArea.row .form-group .form-control:hover,
.cid-ua1QQqX7KK .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-ua1QQqX7KK .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-ua1QQqX7KK .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-ua1QQqX7KK .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-ua1QQqX7KK .mbr-section-title {
  color: #000000;
}
.cid-ua1QQqX7KK .card-title {
  color: #000000;
}
.cid-ua1QQqX7KK .list {
  color: #000000;
}
.cid-ua1QQqX7KK .mbr-text {
  color: #000000;
}
.cid-ua1QQqX7KK label {
  color: #000000;
}
.cid-ua1QQqX7KK LABEL {
  text-align: center;
}
.cid-ua1QQrX2a8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-ua1QQrX2a8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1QQrX2a8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1QQrX2a8 .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-ua1QQrX2a8 .mbr-section-subtitle {
  text-align: left;
}
.cid-ua1QQrX2a8 .mbr-text UL {
  text-align: left;
}
.cid-ua1QQrX2a8 .mbr-text {
  color: #a3a3a3;
}
.cid-ua1QQrX2a8 .card-title,
.cid-ua1QQrX2a8 .card-box {
  color: #353535;
}
.cid-ua1QQsVwvy {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1QQsVwvy .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1QQsVwvy .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-ua1QQsVwvy .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-ua1QQsVwvy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1QQsVwvy .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-ua1QQsVwvy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ua1QQsVwvy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ua1QQsVwvy .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ua1QQsVwvy .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ua1QQsVwvy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ua1QQsVwvy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ua1RSxlBXO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-ua1RSxlBXO nav.navbar {
  position: fixed;
}
.cid-ua1RSxlBXO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1RSxlBXO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-ua1RSxlBXO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ua1RSxlBXO .dropdown-item:hover,
.cid-ua1RSxlBXO .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-ua1RSxlBXO .dropdown-item:hover span {
  color: white;
}
.cid-ua1RSxlBXO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ua1RSxlBXO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ua1RSxlBXO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ua1RSxlBXO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ua1RSxlBXO .nav-link {
  position: relative;
}
.cid-ua1RSxlBXO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ua1RSxlBXO .container {
    flex-wrap: nowrap;
  }
}
.cid-ua1RSxlBXO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ua1RSxlBXO .dropdown-menu,
.cid-ua1RSxlBXO .navbar.opened {
  background: #ffffff !important;
}
.cid-ua1RSxlBXO .nav-item:focus,
.cid-ua1RSxlBXO .nav-link:focus {
  outline: none;
}
.cid-ua1RSxlBXO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ua1RSxlBXO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ua1RSxlBXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ua1RSxlBXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua1RSxlBXO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ua1RSxlBXO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ua1RSxlBXO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ua1RSxlBXO .navbar.opened {
  transition: all 0.3s;
}
.cid-ua1RSxlBXO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ua1RSxlBXO .navbar .navbar-logo img {
  width: auto;
}
.cid-ua1RSxlBXO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ua1RSxlBXO .navbar.collapsed {
  justify-content: center;
}
.cid-ua1RSxlBXO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ua1RSxlBXO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ua1RSxlBXO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-ua1RSxlBXO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ua1RSxlBXO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ua1RSxlBXO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ua1RSxlBXO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ua1RSxlBXO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ua1RSxlBXO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ua1RSxlBXO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ua1RSxlBXO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ua1RSxlBXO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ua1RSxlBXO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ua1RSxlBXO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ua1RSxlBXO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ua1RSxlBXO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ua1RSxlBXO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ua1RSxlBXO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ua1RSxlBXO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ua1RSxlBXO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ua1RSxlBXO .navbar.navbar-short {
  min-height: 60px;
}
.cid-ua1RSxlBXO .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-ua1RSxlBXO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ua1RSxlBXO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ua1RSxlBXO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ua1RSxlBXO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ua1RSxlBXO .dropdown-item.active,
.cid-ua1RSxlBXO .dropdown-item:active {
  background-color: transparent;
}
.cid-ua1RSxlBXO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ua1RSxlBXO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ua1RSxlBXO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ua1RSxlBXO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ua1RSxlBXO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ua1RSxlBXO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ua1RSxlBXO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ua1RSxlBXO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ua1RSxlBXO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ua1RSxlBXO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ua1RSxlBXO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ua1RSxlBXO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1RSxlBXO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua1RSxlBXO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ua1RSxlBXO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1RSxlBXO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ua1RSxlBXO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ua1RSxlBXO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua1RSxlBXO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ua1RSxlBXO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ua1RSxlBXO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ua1RSxlBXO .navbar {
    height: 70px;
  }
  .cid-ua1RSxlBXO .navbar.opened {
    height: auto;
  }
  .cid-ua1RSxlBXO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ua1RSy0G7I {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-ua1RSy0G7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1RSy0G7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1RSy0G7I .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-ua1RSy0G7I .card {
    margin-bottom: 2rem!important;
  }
  .cid-ua1RSy0G7I .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ua1RSy0G7I .link-wrap {
    align-items: center;
  }
}
.cid-ua1RSy0G7I .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ua1RSyusqO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-ua1RSyusqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1RSyusqO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1RSyusqO .row {
  justify-content: center;
}
.cid-ua1RSyusqO .title-container {
  padding: 0;
  margin-bottom: 20px;
}
.cid-ua1RSyusqO .mbr-section-title {
  color: #161616;
  text-align: left;
}
.cid-ua1RSyusqO .mbr-section-subtitle {
  color: #161616;
  margin-top: 24px;
  text-align: left;
}
.cid-ua1RSyusqO .content-container {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px;
  border-radius: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 767px) {
  .cid-ua1RSyusqO .content-container {
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .cid-ua1RSyusqO .content-container {
    padding: 24px 16px;
  }
}
.cid-ua1RSyusqO .grid-row-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ua1RSyusqO .grid-row-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cid-ua1RSyusqO .head-clear {
    display: none;
  }
}
.cid-ua1RSyusqO .card-head {
  padding-bottom: 40px;
}
.cid-ua1RSyusqO .grid-column-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  grid-auto-columns: 1fr;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}
.cid-ua1RSyusqO .card-name {
  color: #ffffff;
  text-align: center;
}
.cid-ua1RSyusqO .price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ua1RSyusqO .price-container {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ua1RSyusqO .price-text {
  color: #ffffff;
}
.cid-ua1RSyusqO .price-number {
  color: #dc2021;
  margin-left: 6px;
}
.cid-ua1RSyusqO .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-ua1RSyusqO .card-item {
  padding-top: 16px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cid-ua1RSyusqO .item-name {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1RSyusqO .item-name {
    margin: 8px 0 !important;
    text-align: center;
  }
}
.cid-ua1RSyusqO .item-text {
  color: #232323;
  text-align: center;
}
.cid-ua1RSyusqO .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  width: min-content;
  min-height: 32px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #dc2021;
}
.cid-ua1RSyusqO .iconfont-wrapper .mbr-iconfont {
  font-size: 12px;
  color: #ffffff;
}
.cid-ua1RSyusqO .card-comment {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cid-ua1RSyusqO .card-comment {
    text-align: center;
  }
}
.cid-ua1RSyusqO .circle-blur {
  position: absolute;
  top: -5%;
  left: -5%;
  bottom: auto;
  display: block;
  width: 440px;
  height: 440px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  background-image: linear-gradient(132deg, #ff7448 27%, #ff4848 50%, #6148ff 79%);
  opacity: .97;
  -webkit-filter: blur(64px) blur(64px);
  filter: blur(64px) blur(64px);
}
.cid-ua1RSzASMj {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/reservas-bk-3.jpg");
}
.cid-ua1RSzASMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1RSzASMj .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-ua1RSzASMj .container {
    padding: 0 30px;
  }
}
.cid-ua1RSzASMj .items .item {
  margin-bottom: 30px;
}
.cid-ua1RSzASMj .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ua1RSzASMj .items .item {
    margin-bottom: 30px;
  }
}
.cid-ua1RSzASMj .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-ua1RSzASMj .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ua1RSzASMj .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-ua1RSzASMj .dragArea.row {
  margin: 0;
}
.cid-ua1RSzASMj .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-ua1RSzASMj .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-ua1RSzASMj .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-ua1RSzASMj .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-ua1RSzASMj .dragArea.row .form-group .form-control:hover,
.cid-ua1RSzASMj .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-ua1RSzASMj .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-ua1RSzASMj .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-ua1RSzASMj .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-ua1RSzASMj .mbr-section-title {
  color: #000000;
}
.cid-ua1RSzASMj .card-title {
  color: #000000;
}
.cid-ua1RSzASMj .list {
  color: #000000;
}
.cid-ua1RSzASMj .mbr-text {
  color: #000000;
}
.cid-ua1RSzASMj label {
  color: #000000;
}
.cid-ua1RSzASMj LABEL {
  text-align: center;
}
.cid-ua1RSAAV9k {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-ua1RSAAV9k .mbr-fallback-image.disabled {
  display: none;
}
.cid-ua1RSAAV9k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ua1RSAAV9k .mbr-section-title {
  text-align: left;
  color: #353535;
}
.cid-ua1RSAAV9k .mbr-section-subtitle {
  text-align: left;
}
.cid-ua1RSAAV9k .mbr-text UL {
  text-align: left;
}
.cid-ua1RSAAV9k .mbr-text {
  color: #a3a3a3;
}
.cid-ua1RSAAV9k .card-title,
.cid-ua1RSAAV9k .card-box {
  color: #353535;
}
.cid-ua1RSBwAfS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua1RSBwAfS .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1RSBwAfS .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-ua1RSBwAfS .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-ua1RSBwAfS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua1RSBwAfS .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-ua1RSBwAfS .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ua1RSBwAfS .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ua1RSBwAfS .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ua1RSBwAfS .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ua1RSBwAfS .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ua1RSBwAfS .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ua7PpWRJAO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 30px;
}
.cid-ua7PpWRJAO nav.navbar {
  position: fixed;
}
.cid-ua7PpWRJAO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua7PpWRJAO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  opacity: 0.8;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
}
.cid-ua7PpWRJAO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ua7PpWRJAO .dropdown-item:hover,
.cid-ua7PpWRJAO .dropdown-item:focus {
  background: #dc2021 !important;
  color: white !important;
}
.cid-ua7PpWRJAO .dropdown-item:hover span {
  color: white;
}
.cid-ua7PpWRJAO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ua7PpWRJAO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ua7PpWRJAO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ua7PpWRJAO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ua7PpWRJAO .nav-link {
  position: relative;
}
.cid-ua7PpWRJAO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ua7PpWRJAO .container {
    flex-wrap: nowrap;
  }
}
.cid-ua7PpWRJAO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ua7PpWRJAO .dropdown-menu,
.cid-ua7PpWRJAO .navbar.opened {
  background: #ffffff !important;
}
.cid-ua7PpWRJAO .nav-item:focus,
.cid-ua7PpWRJAO .nav-link:focus {
  outline: none;
}
.cid-ua7PpWRJAO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ua7PpWRJAO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ua7PpWRJAO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ua7PpWRJAO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ua7PpWRJAO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ua7PpWRJAO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ua7PpWRJAO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ua7PpWRJAO .navbar.opened {
  transition: all 0.3s;
}
.cid-ua7PpWRJAO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ua7PpWRJAO .navbar .navbar-logo img {
  width: auto;
}
.cid-ua7PpWRJAO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ua7PpWRJAO .navbar.collapsed {
  justify-content: center;
}
.cid-ua7PpWRJAO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ua7PpWRJAO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ua7PpWRJAO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-ua7PpWRJAO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ua7PpWRJAO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ua7PpWRJAO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ua7PpWRJAO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ua7PpWRJAO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ua7PpWRJAO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ua7PpWRJAO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ua7PpWRJAO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ua7PpWRJAO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ua7PpWRJAO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ua7PpWRJAO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ua7PpWRJAO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ua7PpWRJAO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ua7PpWRJAO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ua7PpWRJAO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ua7PpWRJAO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ua7PpWRJAO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ua7PpWRJAO .navbar.navbar-short {
  min-height: 60px;
}
.cid-ua7PpWRJAO .navbar.navbar-short .navbar-logo img {
  height: 3.5rem !important;
}
.cid-ua7PpWRJAO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ua7PpWRJAO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ua7PpWRJAO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ua7PpWRJAO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ua7PpWRJAO .dropdown-item.active,
.cid-ua7PpWRJAO .dropdown-item:active {
  background-color: transparent;
}
.cid-ua7PpWRJAO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ua7PpWRJAO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ua7PpWRJAO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ua7PpWRJAO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ua7PpWRJAO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ua7PpWRJAO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ua7PpWRJAO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ua7PpWRJAO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ua7PpWRJAO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ua7PpWRJAO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ua7PpWRJAO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ua7PpWRJAO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua7PpWRJAO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ua7PpWRJAO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ua7PpWRJAO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua7PpWRJAO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ua7PpWRJAO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ua7PpWRJAO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ua7PpWRJAO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ua7PpWRJAO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ua7PpWRJAO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ua7PpWRJAO .navbar {
    height: 70px;
  }
  .cid-ua7PpWRJAO .navbar.opened {
    height: auto;
  }
  .cid-ua7PpWRJAO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ua7QQRHzKV {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/cont-bg.jpg");
}
.cid-ua7QQRHzKV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ua7QQRHzKV .mbr-section-tag {
  color: #9e9e9e;
  margin-bottom: 0.4375rem;
}
.cid-ua7QQRHzKV .mbr-title-form {
  margin-bottom: 2.8125rem;
}
.cid-ua7QQRHzKV .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-ua7QQRHzKV .mbr-section-title b:last-child,
.cid-ua7QQRHzKV .mbr-section-title strong:last-child {
  color: #dc2021;
}
.cid-ua7QQRHzKV .mbr-section-subtitle {
  margin-bottom: 1.5625rem;
}
.cid-ua7QQRHzKV .mbr-social-links {
  margin-top: 0.5rem;
}
.cid-ua7QQRHzKV .mbr-social-links a {
  display: inline-block;
  color: #000000;
}
.cid-ua7QQRHzKV .mbr-social-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #a3a3a3;
  width: 36px;
  height: 36px;
  margin-left: 0.4375rem;
  margin-right: 0.4375rem;
  transition: 0.3s ease-out;
}
.cid-ua7QQRHzKV .mbr-social-links span:hover {
  border-color: #dc2021;
  color: #dc2021;
}
.cid-ua7QQRHzKV .mbr-item {
  display: flex;
  margin-bottom: 30px;
}
@media (min-width: 546px) {
  .cid-ua7QQRHzKV .mbr-item {
    width: 50% !important;
  }
}
.cid-ua7QQRHzKV .map-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40rem;
  overflow: hidden;
  border-radius: 5%;
}
.cid-ua7QQRHzKV .google-map {
  width: 100%;
  height: 100%;
}
.cid-ua7QQRHzKV .google-map iframe {
  width: 100%;
  height: 100%;
}
.cid-ua7QQRHzKV .mbr-section-link {
  color: #dc2021;
}
.cid-ua7PpY9BE4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ua7PpY9BE4 .media-wrap {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua7PpY9BE4 .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-ua7PpY9BE4 .links {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .cid-ua7PpY9BE4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ua7PpY9BE4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #000;
  opacity: 0.05;
}
.cid-ua7PpY9BE4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ua7PpY9BE4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-ua7PpY9BE4 .footer-lower .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ua7PpY9BE4 .footer-lower .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ua7PpY9BE4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ua7PpY9BE4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
