@import url(https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap);





body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.7rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.92rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.96rem;
    font-size: calc( 1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.945rem + (3.7 - 1.945) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ff4f7b !important;
}
.bg-success {
  background-color: #ed6533 !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #1862a9 !important;
}
.bg-danger {
  background-color: #6f6f6f !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #7fb448 !important;
  border-color: #7fb448 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #587d32 !important;
  border-color: #587d32 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #587d32 !important;
  border-color: #587d32 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ed6533 !important;
  border-color: #ed6533 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #c24111 !important;
  border-color: #c24111 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c24111 !important;
  border-color: #c24111 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #1862a9 !important;
  border-color: #1862a9 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0e3b66 !important;
  border-color: #0e3b66 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0e3b66 !important;
  border-color: #0e3b66 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #494949 !important;
  border-color: #494949 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #494949 !important;
  border-color: #494949 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #4c6b2b !important;
  color: #4c6b2b !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #7fb448 !important;
  border-color: #7fb448 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7fb448 !important;
  border-color: #7fb448 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #ab390f !important;
  color: #ab390f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #ed6533 !important;
  border-color: #ed6533 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ed6533 !important;
  border-color: #ed6533 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #0b2e50 !important;
  color: #0b2e50 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #1862a9 !important;
  border-color: #1862a9 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #1862a9 !important;
  border-color: #1862a9 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #3c3c3c !important;
  color: #3c3c3c !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #6f6f6f !important;
  border-color: #6f6f6f !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4f7b !important;
}
.text-secondary {
  color: #7fb448 !important;
}
.text-success {
  color: #ed6533 !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #1862a9 !important;
}
.text-danger {
  color: #6f6f6f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e8003a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #4c6b2b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ab390f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0b2e50 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #3c3c3c !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #ed6533;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #1862a9;
}
.alert-danger {
  background-color: #6f6f6f;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4f7b;
  border-color: #ff4f7b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff4f7b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fef3ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #59a2e7;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #afafaf;
}
/* Scroll to top button*/
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #ffffff;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #000000;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #ffffff;
}
.form-control {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4f7b;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ff4f7b;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ff4f7b;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4f7b;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4f7b;
  border-bottom-color: #ff4f7b;
}
.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: #ff4f7b !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: #7fb448 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff4f7b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rJhcVvqGD1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJhcVvqGD1 .nav-item,
.cid-rJhcVvqGD1 .nav-link,
.cid-rJhcVvqGD1 .navbar-caption {
  font-weight: normal;
}
.cid-rJhcVvqGD1 .nav-item:focus,
.cid-rJhcVvqGD1 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJhcVvqGD1 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJhcVvqGD1 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJhcVvqGD1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJhcVvqGD1 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJhcVvqGD1 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJhcVvqGD1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJhcVvqGD1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJhcVvqGD1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJhcVvqGD1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJhcVvqGD1 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJhcVvqGD1 .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJhcVvqGD1 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJhcVvqGD1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJhcVvqGD1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJhcVvqGD1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJhcVvqGD1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJhcVvqGD1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJhcVvqGD1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJhcVvqGD1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJhcVvqGD1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJhcVvqGD1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJhcVvqGD1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJhcVvqGD1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJhcVvqGD1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJhcVvqGD1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJhcVvqGD1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJhcVvqGD1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJhcVvqGD1 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJhcVvqGD1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJhcVvqGD1 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJhcVvqGD1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJhcVvqGD1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJhcVvqGD1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJhcVvqGD1 .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJhcVvqGD1 .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJhcVvqGD1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJhcVvqGD1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJhcVvqGD1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJhcVvqGD1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJhcVvqGD1 .dropdown-item.active,
.cid-rJhcVvqGD1 .dropdown-item:active {
  background-color: transparent;
}
.cid-rJhcVvqGD1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJhcVvqGD1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJhcVvqGD1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJhcVvqGD1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJhcVvqGD1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJhcVvqGD1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJhcVvqGD1 .navbar-buttons {
  text-align: center;
}
.cid-rJhcVvqGD1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJhcVvqGD1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJhcVvqGD1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJhcVvqGD1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJhcVvqGD1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJhcVvqGD1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJhcVvqGD1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJhcVvqGD1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJhcVvqGD1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJhcVvqGD1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJhcVvqGD1 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJhcVvqGD1 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJhcVvqGD1 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJhcVvqGD1 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJhcVvqGD1 .soc-item {
  margin: .5rem .3rem;
}
.cid-rJhcVvqGD1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJhcVvqGD1 .navbar {
    height: 77px;
  }
  .cid-rJhcVvqGD1 .navbar.opened {
    height: auto;
  }
  .cid-rJhcVvqGD1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJhdshbQCb {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-rJhdshbQCb .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJhdshbQCb .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJhdshbQCb .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJhdshbQCb .input-wrap {
  background: #fcfcfc;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJhdshbQCb .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJhdshbQCb .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJhdshbQCb .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJhdshbQCb .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJhdshbQCb .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJhdshbQCb .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJhdshbQCb .check-in-input,
.cid-rJhdshbQCb .check-out-input,
.cid-rJhdshbQCb .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJhdshbQCb .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJhdshbQCb .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJhdshbQCb .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJhdshbQCb .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJhdshbQCb .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJhdshbQCb .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJhdshbQCb .datepicker {
    left: 10% !important;
  }
}
.cid-rJhdshbQCb .mbr-section-subtitle,
.cid-rJhdshbQCb .underline {
  text-align: center;
}
.cid-rJhdRuXoPi {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJhdRuXoPi .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rJhdRuXoPi .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rJqCUhn8tH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #444444;
}
.cid-rJqCUhn8tH .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJqCUhn8tH .card .card-wrapper {
  background: #ffffff;
  height: 1%;
  border-radius: 8px;
}
.cid-rJqCUhn8tH .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
  z-index: 1;
}
.cid-rJqCUhn8tH .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rJqCUhn8tH .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #232323;
}
.cid-rJqCUhn8tH .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rJqCUhn8tH .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-rJqCUhn8tH .mbr-card-text {
  margin: 0;
}
.cid-rJqCUhn8tH .mbr-title {
  color: #6f6f6f;
}
.cid-rJqkBui8sn {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-rJqkBui8sn .mbr-overlay {
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-rJqkBui8sn .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rJqkBui8sn .card-wrap {
  background-color: #444444;
  padding: 2rem;
  width: calc(100% + 10rem);
  margin-left: -10rem;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rJqkBui8sn .img-wrap img {
  width: 100%;
  border-radius: .25rem;
}
@media (max-width: 991px) {
  .cid-rJqkBui8sn .card-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.cid-rJqkBui8sn H1 {
  color: #ffffff;
}
.cid-rJqkBui8sn .mbr-section-subtitle,
.cid-rJqkBui8sn .mbr-section-btn {
  color: #ffffff;
}
.cid-rJqYXBkxZ7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rJqYXBkxZ7 .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rJqYXBkxZ7 .icon2 {
  color: #f9b03e;
}
.cid-rJqYXBkxZ7 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rJqYXBkxZ7 p {
  font-weight: 400;
}
.cid-rJqYXBkxZ7 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rJqYXBkxZ7 .line2 {
  background: #ffffff;
}
.cid-rJqYXBkxZ7 .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rJqYXBkxZ7 .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rJqYXBkxZ7 .card2 {
  background: #ed6533;
}
.cid-rJqYXBkxZ7 .card-title,
.cid-rJqYXBkxZ7 .card-ico,
.cid-rJqYXBkxZ7 .line-wrap {
  text-align: center;
}
.cid-rJqYXBkxZ7 .mbr-text,
.cid-rJqYXBkxZ7 .card-link {
  text-align: center;
}
.cid-rJsgLCBk17 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rJsgLCBk17 svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rJsgLCBk17 .mbr-text,
.cid-rJsgLCBk17 .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rJsgLCBk17 #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rJsgLCBk17 #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rJsgLCBk17 H1 {
  color: #188ef4;
}
.cid-rJsgLCBk17 img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rJsgLCBk17 .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rJsgLCBk17 .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rJsgLCBk17 img {
    left: 0px;
    width: 100%;
  }
}
.cid-rJsgLCBk17 H3 {
  color: #444444;
}
.cid-rJr2JyoOvq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJr2JyoOvq .content {
    text-align: center;
  }
  .cid-rJr2JyoOvq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJr2JyoOvq .logo-subtitle {
  color: #8d97ad;
}
.cid-rJr2JyoOvq .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJr2JyoOvq .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJr2JyoOvq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJr2JyoOvq .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJr2JyoOvq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJr2JyoOvq .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJr2JyoOvq .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-rJr2JyoOvq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJr2JyoOvq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJr2JyoOvq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJr2JyoOvq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJr2JyoOvq .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJr2JyoOvq .list-item {
  display: flex;
}
.cid-rJr2JyoOvq .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJr2JyoOvq ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJr2JyoOvq ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJr2JyoOvq ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJr2JyoOvq .column-title {
  color: #6f6f6f;
}
.cid-rJr2JyoOvq .logo-subtitle,
.cid-rJr2JyoOvq .media-wrap {
  color: #6f6f6f;
}
.cid-rJr2JyoOvq .copyright > p {
  color: #6f6f6f;
}
.cid-rJrlH7Wfqd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrlH7Wfqd .nav-item,
.cid-rJrlH7Wfqd .nav-link,
.cid-rJrlH7Wfqd .navbar-caption {
  font-weight: normal;
}
.cid-rJrlH7Wfqd .nav-item:focus,
.cid-rJrlH7Wfqd .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJrlH7Wfqd .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJrlH7Wfqd .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrlH7Wfqd .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJrlH7Wfqd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJrlH7Wfqd .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJrlH7Wfqd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJrlH7Wfqd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrlH7Wfqd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJrlH7Wfqd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJrlH7Wfqd .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJrlH7Wfqd .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJrlH7Wfqd .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJrlH7Wfqd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJrlH7Wfqd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJrlH7Wfqd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJrlH7Wfqd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJrlH7Wfqd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJrlH7Wfqd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJrlH7Wfqd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJrlH7Wfqd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJrlH7Wfqd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJrlH7Wfqd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJrlH7Wfqd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJrlH7Wfqd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJrlH7Wfqd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJrlH7Wfqd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJrlH7Wfqd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJrlH7Wfqd .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJrlH7Wfqd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJrlH7Wfqd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJrlH7Wfqd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJrlH7Wfqd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJrlH7Wfqd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJrlH7Wfqd .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJrlH7Wfqd .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJrlH7Wfqd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJrlH7Wfqd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJrlH7Wfqd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJrlH7Wfqd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJrlH7Wfqd .dropdown-item.active,
.cid-rJrlH7Wfqd .dropdown-item:active {
  background-color: transparent;
}
.cid-rJrlH7Wfqd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJrlH7Wfqd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJrlH7Wfqd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJrlH7Wfqd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJrlH7Wfqd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJrlH7Wfqd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJrlH7Wfqd .navbar-buttons {
  text-align: center;
}
.cid-rJrlH7Wfqd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJrlH7Wfqd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJrlH7Wfqd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJrlH7Wfqd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrlH7Wfqd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrlH7Wfqd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJrlH7Wfqd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrlH7Wfqd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJrlH7Wfqd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJrlH7Wfqd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrlH7Wfqd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJrlH7Wfqd a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrlH7Wfqd .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJrlH7Wfqd .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJrlH7Wfqd .soc-item {
  margin: .5rem .3rem;
}
.cid-rJrlH7Wfqd .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJrlH7Wfqd .navbar {
    height: 77px;
  }
  .cid-rJrlH7Wfqd .navbar.opened {
    height: auto;
  }
  .cid-rJrlH7Wfqd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJrlH8Ds1l {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr.jpg");
}
.cid-rJrlH8Ds1l .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJrlH8Ds1l .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJrlH8Ds1l .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJrlH8Ds1l .input-wrap {
  background: #fcfcfc;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJrlH8Ds1l .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJrlH8Ds1l .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJrlH8Ds1l .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJrlH8Ds1l .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJrlH8Ds1l .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJrlH8Ds1l .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJrlH8Ds1l .check-in-input,
.cid-rJrlH8Ds1l .check-out-input,
.cid-rJrlH8Ds1l .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJrlH8Ds1l .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJrlH8Ds1l .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJrlH8Ds1l .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJrlH8Ds1l .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJrlH8Ds1l .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJrlH8Ds1l .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJrlH8Ds1l .datepicker {
    left: 10% !important;
  }
}
.cid-rJrlH9yMCp {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJrlH9yMCp .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rJrlH9yMCp .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rJroesGnjl {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #444444;
}
.cid-rJroesGnjl .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-rJroesGnjl .section-text {
  color: #ffffff;
}
.cid-rJroesGnjl .mbr-overlay {
  background: linear-gradient(90deg, #6f6f6f, #444444);
}
.cid-rJroesGnjl .text-block {
  padding-left: 0;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.cid-rJroesGnjl .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rJroesGnjl .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-rJroesGnjl .mbr-figure .card-text {
  padding: 2rem;
}
.cid-rJroesGnjl .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-rJroesGnjl .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rJroesGnjl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rJroesGnjl .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rJroesGnjl .mbr-text {
    text-align: left;
  }
}
.cid-rJroesGnjl .mbr-section-title,
.cid-rJroesGnjl .mbr-section-btn {
  color: #ffffff;
}
.cid-rJroesGnjl .mbr-text {
  color: #ffffff;
}
.cid-rJrxeW0UcW {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJrxeW0UcW .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rJrxeW0UcW .section-text {
  color: #444444;
}
.cid-rJrxeW0UcW .mbr-overlay {
  background: linear-gradient(90deg, #6f6f6f, #444444);
}
.cid-rJrxeW0UcW .text-block {
  padding-left: 1.5rem;
}
.cid-rJrxeW0UcW .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rJrxeW0UcW .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-rJrxeW0UcW .mbr-figure .card-text {
  padding: 2rem;
}
.cid-rJrxeW0UcW .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-rJrxeW0UcW .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rJrxeW0UcW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rJrxeW0UcW .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #444444;
}
@media (max-width: 767px) {
  .cid-rJrxeW0UcW .mbr-text {
    text-align: left;
  }
}
.cid-rJrxeW0UcW .mbr-section-title,
.cid-rJrxeW0UcW .mbr-section-btn {
  color: #444444;
}
.cid-rJrxeW0UcW .mbr-text {
  color: #444444;
}
.cid-rJrrdQjTuA {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #444444;
}
.cid-rJrrdQjTuA .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-rJrrdQjTuA .section-text {
  color: #ffffff;
}
.cid-rJrrdQjTuA .mbr-overlay {
  background: linear-gradient(90deg, #6f6f6f, #444444);
}
.cid-rJrrdQjTuA .text-block {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.cid-rJrrdQjTuA .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rJrrdQjTuA .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-rJrrdQjTuA .mbr-figure .card-text {
  padding: 2rem;
}
.cid-rJrrdQjTuA .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-rJrrdQjTuA .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rJrrdQjTuA .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rJrrdQjTuA .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rJrrdQjTuA .mbr-text {
    text-align: left;
  }
}
.cid-rJrrdQjTuA .mbr-section-title,
.cid-rJrrdQjTuA .mbr-section-btn {
  color: #ffffff;
}
.cid-rJrrdQjTuA .mbr-text {
  color: #ffffff;
}
.cid-rJrwyNFD6e {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJrwyNFD6e .main-row {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rJrwyNFD6e .section-text {
  color: #444444;
}
.cid-rJrwyNFD6e .mbr-overlay {
  background: linear-gradient(90deg, #6f6f6f, #444444);
}
.cid-rJrwyNFD6e .text-block {
  padding-left: 1.5rem;
}
.cid-rJrwyNFD6e .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rJrwyNFD6e .mbr-figure {
  background: #333333;
  overflow: hidden;
  border-radius: .25rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  padding: 0 !important;
}
.cid-rJrwyNFD6e .mbr-figure .card-text {
  padding: 2rem;
}
.cid-rJrwyNFD6e .counter-container {
  color: #767676;
  padding-top: 1rem;
}
.cid-rJrwyNFD6e .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rJrwyNFD6e .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rJrwyNFD6e .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 10px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #444444;
}
@media (max-width: 767px) {
  .cid-rJrwyNFD6e .mbr-text {
    text-align: left;
  }
}
.cid-rJrwyNFD6e .mbr-section-title,
.cid-rJrwyNFD6e .mbr-section-btn {
  color: #444444;
}
.cid-rJrwyNFD6e .mbr-text {
  color: #444444;
}
.cid-rKOSDaS7oW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rKOSDaS7oW .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rKOSDaS7oW .icon2 {
  color: #f9b03e;
}
.cid-rKOSDaS7oW .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rKOSDaS7oW p {
  font-weight: 400;
}
.cid-rKOSDaS7oW .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rKOSDaS7oW .line2 {
  background: #ffffff;
}
.cid-rKOSDaS7oW .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rKOSDaS7oW .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rKOSDaS7oW .card2 {
  background: #ed6533;
}
.cid-rKOSDaS7oW .card-title,
.cid-rKOSDaS7oW .card-ico,
.cid-rKOSDaS7oW .line-wrap {
  text-align: center;
}
.cid-rKOSDaS7oW .mbr-text,
.cid-rKOSDaS7oW .card-link {
  text-align: center;
}
.cid-rPODScPgu1 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPODScPgu1 svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPODScPgu1 .mbr-text,
.cid-rPODScPgu1 .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPODScPgu1 #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPODScPgu1 #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPODScPgu1 H1 {
  color: #188ef4;
}
.cid-rPODScPgu1 img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPODScPgu1 .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPODScPgu1 .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPODScPgu1 img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPODScPgu1 H3 {
  color: #444444;
}
.cid-rJrlHc01Xn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJrlHc01Xn .content {
    text-align: center;
  }
  .cid-rJrlHc01Xn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJrlHc01Xn .logo-subtitle {
  color: #8d97ad;
}
.cid-rJrlHc01Xn .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJrlHc01Xn .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJrlHc01Xn .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJrlHc01Xn .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJrlHc01Xn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJrlHc01Xn .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJrlHc01Xn .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-rJrlHc01Xn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJrlHc01Xn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJrlHc01Xn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJrlHc01Xn .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJrlHc01Xn .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJrlHc01Xn .list-item {
  display: flex;
}
.cid-rJrlHc01Xn .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJrlHc01Xn ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJrlHc01Xn ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJrlHc01Xn ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJrlHc01Xn .column-title {
  color: #6f6f6f;
}
.cid-rJrlHc01Xn .logo-subtitle,
.cid-rJrlHc01Xn .media-wrap {
  color: #6f6f6f;
}
.cid-rJrlHc01Xn .copyright > p {
  color: #6f6f6f;
}
.cid-rJrIG7UqxV .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrIG7UqxV .nav-item,
.cid-rJrIG7UqxV .nav-link,
.cid-rJrIG7UqxV .navbar-caption {
  font-weight: normal;
}
.cid-rJrIG7UqxV .nav-item:focus,
.cid-rJrIG7UqxV .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJrIG7UqxV .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJrIG7UqxV .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrIG7UqxV .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJrIG7UqxV .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJrIG7UqxV .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJrIG7UqxV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJrIG7UqxV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrIG7UqxV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJrIG7UqxV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJrIG7UqxV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJrIG7UqxV .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJrIG7UqxV .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJrIG7UqxV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJrIG7UqxV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJrIG7UqxV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJrIG7UqxV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJrIG7UqxV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJrIG7UqxV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJrIG7UqxV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJrIG7UqxV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJrIG7UqxV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJrIG7UqxV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJrIG7UqxV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJrIG7UqxV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJrIG7UqxV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJrIG7UqxV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJrIG7UqxV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJrIG7UqxV .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJrIG7UqxV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJrIG7UqxV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJrIG7UqxV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJrIG7UqxV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJrIG7UqxV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJrIG7UqxV .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJrIG7UqxV .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJrIG7UqxV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJrIG7UqxV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJrIG7UqxV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJrIG7UqxV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJrIG7UqxV .dropdown-item.active,
.cid-rJrIG7UqxV .dropdown-item:active {
  background-color: transparent;
}
.cid-rJrIG7UqxV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJrIG7UqxV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJrIG7UqxV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJrIG7UqxV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJrIG7UqxV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJrIG7UqxV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJrIG7UqxV .navbar-buttons {
  text-align: center;
}
.cid-rJrIG7UqxV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJrIG7UqxV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJrIG7UqxV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJrIG7UqxV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrIG7UqxV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrIG7UqxV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJrIG7UqxV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrIG7UqxV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJrIG7UqxV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJrIG7UqxV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrIG7UqxV .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJrIG7UqxV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrIG7UqxV .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJrIG7UqxV .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJrIG7UqxV .soc-item {
  margin: .5rem .3rem;
}
.cid-rJrIG7UqxV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJrIG7UqxV .navbar {
    height: 77px;
  }
  .cid-rJrIG7UqxV .navbar.opened {
    height: auto;
  }
  .cid-rJrIG7UqxV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJrIG8VX6s {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-9.jpg");
}
.cid-rJrIG8VX6s .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJrIG8VX6s .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJrIG8VX6s .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJrIG8VX6s .input-wrap {
  background: #fcfcfc;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJrIG8VX6s .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJrIG8VX6s .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJrIG8VX6s .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJrIG8VX6s .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJrIG8VX6s .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJrIG8VX6s .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJrIG8VX6s .check-in-input,
.cid-rJrIG8VX6s .check-out-input,
.cid-rJrIG8VX6s .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJrIG8VX6s .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJrIG8VX6s .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJrIG8VX6s .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJrIG8VX6s .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJrIG8VX6s .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJrIG8VX6s .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJrIG8VX6s .datepicker {
    left: 10% !important;
  }
}
.cid-rJrIGbXEcM {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rJrIGbXEcM .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rJrIGbXEcM .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rKEsV89205 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rKEsV89205 .subicon-title {
  color: #6f6f6f;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rKEsV89205 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #6f6f6f;
}
.cid-rKEsV89205 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-rKEsV89205 .underline .line {
  width: 3rem;
  height: 2px;
  background: #232323;
  display: inline-block;
}
.cid-rKEsV89205 .process-icon,
.cid-rKEsV89205 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-rKEsV89205 .wrapper,
.cid-rKEsV89205 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-rKEsV89205 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #ed6533;
  opacity: .4;
}
.cid-rKEsV89205 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-rKEsV89205 .icon-container a {
  display: inherit;
}
.cid-rKEsV89205 .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #306de8 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-rKEsV89205 .icon-main {
  margin: 1rem 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-rKEsV89205 .icon-main:hover .icon-wrapper {
  background-color: #306de8 !important;
}
.cid-rKEsV89205 .icon-main:hover .icon-number {
  background-color: #ed6533 !important;
  color: #ffffff !important;
}
.cid-rKEsV89205 .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-rKEsV89205 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-rKEsV89205 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-rKEsV89205 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-rKEsV89205 .mbr-section-title {
  margin: 0;
}
.cid-rKEsV89205 .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-rJrMXVYZOE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-10.jpg");
}
.cid-rJrMXVYZOE .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJrMXVYZOE .form-head {
  background: #444444;
  padding-top: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
}
.cid-rJrMXVYZOE .form1 {
  background: #444444;
  padding: 2rem;
}
.cid-rJrMXVYZOE .form-group {
  margin-bottom: 1rem;
}
.cid-rJrMXVYZOE .form-control {
  border-style: solid;
  border-radius: 1;
  padding: .5rem 1rem;
  background: #444444;
  color: #f4f8fa;
  width: 100%;
  border-color: white;
}
.cid-rJrMXVYZOE textarea.form-control {
  min-height: 96px;
}
.cid-rJrMXVYZOE .input-group-btn {
  width: 100%;
}
.cid-rJrMXVYZOE .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-rJrMXVYZOE .form-control-label {
  color: #f4f8fa;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-rJrMXVYZOE .form1 {
    padding: 1.5rem;
  }
}
.cid-rJrMXVYZOE LABEL {
  color: #444444;
}
.cid-rJrMXVYZOE .form-title {
  color: #ffffff;
}
.cid-rJrMXVYZOE .form-subtitle {
  color: #ffffff;
}
.cid-rKOSNUv5sL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rKOSNUv5sL .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rKOSNUv5sL .icon2 {
  color: #f9b03e;
}
.cid-rKOSNUv5sL .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rKOSNUv5sL p {
  font-weight: 400;
}
.cid-rKOSNUv5sL .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rKOSNUv5sL .line2 {
  background: #ffffff;
}
.cid-rKOSNUv5sL .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rKOSNUv5sL .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rKOSNUv5sL .card2 {
  background: #ed6533;
}
.cid-rKOSNUv5sL .card-title,
.cid-rKOSNUv5sL .card-ico,
.cid-rKOSNUv5sL .line-wrap {
  text-align: center;
}
.cid-rKOSNUv5sL .mbr-text,
.cid-rKOSNUv5sL .card-link {
  text-align: center;
}
.cid-rPOE2xQcgh {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPOE2xQcgh svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPOE2xQcgh .mbr-text,
.cid-rPOE2xQcgh .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPOE2xQcgh #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPOE2xQcgh #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPOE2xQcgh H1 {
  color: #188ef4;
}
.cid-rPOE2xQcgh img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPOE2xQcgh .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPOE2xQcgh .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPOE2xQcgh img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPOE2xQcgh H3 {
  color: #444444;
}
.cid-rJrIGeld5c {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJrIGeld5c .content {
    text-align: center;
  }
  .cid-rJrIGeld5c .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJrIGeld5c .logo-subtitle {
  color: #8d97ad;
}
.cid-rJrIGeld5c .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJrIGeld5c .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJrIGeld5c .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJrIGeld5c .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJrIGeld5c .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJrIGeld5c .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJrIGeld5c .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-rJrIGeld5c .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJrIGeld5c .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJrIGeld5c .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJrIGeld5c .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJrIGeld5c .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJrIGeld5c .list-item {
  display: flex;
}
.cid-rJrIGeld5c .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJrIGeld5c ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJrIGeld5c ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJrIGeld5c ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJrIGeld5c .column-title {
  color: #6f6f6f;
}
.cid-rJrIGeld5c .logo-subtitle,
.cid-rJrIGeld5c .media-wrap {
  color: #6f6f6f;
}
.cid-rJrIGeld5c .copyright > p {
  color: #6f6f6f;
}
.cid-rJrWtZOJKr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrWtZOJKr .nav-item,
.cid-rJrWtZOJKr .nav-link,
.cid-rJrWtZOJKr .navbar-caption {
  font-weight: normal;
}
.cid-rJrWtZOJKr .nav-item:focus,
.cid-rJrWtZOJKr .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJrWtZOJKr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJrWtZOJKr .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrWtZOJKr .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJrWtZOJKr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJrWtZOJKr .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJrWtZOJKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJrWtZOJKr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrWtZOJKr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJrWtZOJKr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJrWtZOJKr .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJrWtZOJKr .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJrWtZOJKr .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJrWtZOJKr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJrWtZOJKr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJrWtZOJKr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJrWtZOJKr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJrWtZOJKr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJrWtZOJKr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJrWtZOJKr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJrWtZOJKr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJrWtZOJKr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJrWtZOJKr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJrWtZOJKr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJrWtZOJKr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJrWtZOJKr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJrWtZOJKr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJrWtZOJKr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJrWtZOJKr .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJrWtZOJKr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJrWtZOJKr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJrWtZOJKr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJrWtZOJKr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJrWtZOJKr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJrWtZOJKr .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJrWtZOJKr .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJrWtZOJKr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJrWtZOJKr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJrWtZOJKr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJrWtZOJKr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJrWtZOJKr .dropdown-item.active,
.cid-rJrWtZOJKr .dropdown-item:active {
  background-color: transparent;
}
.cid-rJrWtZOJKr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJrWtZOJKr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJrWtZOJKr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJrWtZOJKr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJrWtZOJKr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJrWtZOJKr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJrWtZOJKr .navbar-buttons {
  text-align: center;
}
.cid-rJrWtZOJKr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJrWtZOJKr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJrWtZOJKr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJrWtZOJKr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrWtZOJKr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrWtZOJKr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJrWtZOJKr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrWtZOJKr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJrWtZOJKr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJrWtZOJKr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrWtZOJKr .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJrWtZOJKr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrWtZOJKr .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJrWtZOJKr .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJrWtZOJKr .soc-item {
  margin: .5rem .3rem;
}
.cid-rJrWtZOJKr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJrWtZOJKr .navbar {
    height: 77px;
  }
  .cid-rJrWtZOJKr .navbar.opened {
    height: auto;
  }
  .cid-rJrWtZOJKr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJrWu0ACys {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1460x973.jpg");
}
.cid-rJrWu0ACys .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJrWu0ACys .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJrWu0ACys .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJrWu0ACys .input-wrap {
  background: #fcfcfc;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJrWu0ACys .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJrWu0ACys .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJrWu0ACys .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJrWu0ACys .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJrWu0ACys .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJrWu0ACys .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJrWu0ACys .check-in-input,
.cid-rJrWu0ACys .check-out-input,
.cid-rJrWu0ACys .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJrWu0ACys .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJrWu0ACys .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJrWu0ACys .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJrWu0ACys .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJrWu0ACys .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJrWu0ACys .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJrWu0ACys .datepicker {
    left: 10% !important;
  }
}
.cid-rJrWVNr70h {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJrWVNr70h .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rJrWVNr70h .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rJrXJMxibN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJrXJMxibN .card-title {
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.cid-rJrXJMxibN .card {
  margin-bottom: 25px;
  overflow: hidden;
}
.cid-rJrXJMxibN .card .card-img {
  height: 100%;
}
.cid-rJrXJMxibN .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-rJrXJMxibN .card:hover .card-wrapper:before {
  opacity: 0.8;
  background: #6f6f6f;
}
.cid-rJrXJMxibN .card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-rJrXJMxibN .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-rJrXJMxibN .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.cid-rJrXJMxibN .card-wrapper {
  overflow: hidden;
  position: relative;
}
.cid-rJrXJMxibN .card-wrapper:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
  background: #232323;
  opacity: 0.4;
  z-index: 10;
  pointer-events: none;
}
.cid-rJrXJMxibN .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-rJrXJMxibN .card-box {
  position: absolute;
  overflow: hidden;
  height: fit-content;
  margin: auto;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 100;
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rJrXJMxibN .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-rJrXJMxibN .card-sub-title {
  text-align: center;
  font-weight: 500;
}
.cid-rJrXJMxibN .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-rJrXJMxibN .mbr-section-title,
.cid-rJrXJMxibN .line-wrap {
  color: #232323;
  text-align: center;
}
.cid-rJrXJMxibN .mbr-text {
  text-align: center;
  color: #767676;
}
@media (max-width: 992px) {
  .cid-rJrXJMxibN .card-big {
    height: 200px;
  }
  .cid-rJrXJMxibN .card-img {
    margin-top: -15%;
  }
}
.cid-rKOSRMnc3R {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rKOSRMnc3R .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rKOSRMnc3R .icon2 {
  color: #f9b03e;
}
.cid-rKOSRMnc3R .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rKOSRMnc3R p {
  font-weight: 400;
}
.cid-rKOSRMnc3R .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rKOSRMnc3R .line2 {
  background: #ffffff;
}
.cid-rKOSRMnc3R .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rKOSRMnc3R .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rKOSRMnc3R .card2 {
  background: #ed6533;
}
.cid-rKOSRMnc3R .card-title,
.cid-rKOSRMnc3R .card-ico,
.cid-rKOSRMnc3R .line-wrap {
  text-align: center;
}
.cid-rKOSRMnc3R .mbr-text,
.cid-rKOSRMnc3R .card-link {
  text-align: center;
}
.cid-rPOE6TCERL {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPOE6TCERL svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPOE6TCERL .mbr-text,
.cid-rPOE6TCERL .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPOE6TCERL #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPOE6TCERL #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPOE6TCERL H1 {
  color: #188ef4;
}
.cid-rPOE6TCERL img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPOE6TCERL .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPOE6TCERL .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPOE6TCERL img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPOE6TCERL H3 {
  color: #444444;
}
.cid-rJrWu4rb7j {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJrWu4rb7j .content {
    text-align: center;
  }
  .cid-rJrWu4rb7j .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJrWu4rb7j .logo-subtitle {
  color: #8d97ad;
}
.cid-rJrWu4rb7j .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJrWu4rb7j .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJrWu4rb7j .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJrWu4rb7j .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJrWu4rb7j .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJrWu4rb7j .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJrWu4rb7j .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-rJrWu4rb7j .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJrWu4rb7j .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJrWu4rb7j .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJrWu4rb7j .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJrWu4rb7j .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJrWu4rb7j .list-item {
  display: flex;
}
.cid-rJrWu4rb7j .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJrWu4rb7j ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJrWu4rb7j ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJrWu4rb7j ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJrWu4rb7j .column-title {
  color: #6f6f6f;
}
.cid-rJrWu4rb7j .logo-subtitle,
.cid-rJrWu4rb7j .media-wrap {
  color: #6f6f6f;
}
.cid-rJrWu4rb7j .copyright > p {
  color: #6f6f6f;
}
.cid-rJs0xh5oAG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJs0xh5oAG .nav-item,
.cid-rJs0xh5oAG .nav-link,
.cid-rJs0xh5oAG .navbar-caption {
  font-weight: normal;
}
.cid-rJs0xh5oAG .nav-item:focus,
.cid-rJs0xh5oAG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJs0xh5oAG .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJs0xh5oAG .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJs0xh5oAG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJs0xh5oAG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJs0xh5oAG .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJs0xh5oAG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJs0xh5oAG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJs0xh5oAG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJs0xh5oAG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJs0xh5oAG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJs0xh5oAG .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJs0xh5oAG .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJs0xh5oAG .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJs0xh5oAG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJs0xh5oAG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJs0xh5oAG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJs0xh5oAG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJs0xh5oAG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJs0xh5oAG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJs0xh5oAG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJs0xh5oAG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJs0xh5oAG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJs0xh5oAG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJs0xh5oAG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJs0xh5oAG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJs0xh5oAG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJs0xh5oAG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJs0xh5oAG .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJs0xh5oAG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJs0xh5oAG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJs0xh5oAG .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJs0xh5oAG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJs0xh5oAG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJs0xh5oAG .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJs0xh5oAG .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJs0xh5oAG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJs0xh5oAG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJs0xh5oAG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJs0xh5oAG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJs0xh5oAG .dropdown-item.active,
.cid-rJs0xh5oAG .dropdown-item:active {
  background-color: transparent;
}
.cid-rJs0xh5oAG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJs0xh5oAG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJs0xh5oAG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJs0xh5oAG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJs0xh5oAG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJs0xh5oAG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJs0xh5oAG .navbar-buttons {
  text-align: center;
}
.cid-rJs0xh5oAG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJs0xh5oAG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJs0xh5oAG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJs0xh5oAG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJs0xh5oAG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJs0xh5oAG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJs0xh5oAG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJs0xh5oAG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJs0xh5oAG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJs0xh5oAG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJs0xh5oAG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJs0xh5oAG a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJs0xh5oAG .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJs0xh5oAG .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJs0xh5oAG .soc-item {
  margin: .5rem .3rem;
}
.cid-rJs0xh5oAG .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJs0xh5oAG .navbar {
    height: 77px;
  }
  .cid-rJs0xh5oAG .navbar.opened {
    height: auto;
  }
  .cid-rJs0xh5oAG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJs0xi1sOz {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-18.jpg");
}
.cid-rJs0xi1sOz .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJs0xi1sOz .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJs0xi1sOz .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJs0xi1sOz .input-wrap {
  background: #fcfcfc;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJs0xi1sOz .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJs0xi1sOz .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJs0xi1sOz .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJs0xi1sOz .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJs0xi1sOz .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJs0xi1sOz .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJs0xi1sOz .check-in-input,
.cid-rJs0xi1sOz .check-out-input,
.cid-rJs0xi1sOz .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJs0xi1sOz .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJs0xi1sOz .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJs0xi1sOz .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJs0xi1sOz .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJs0xi1sOz .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJs0xi1sOz .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJs0xi1sOz .datepicker {
    left: 10% !important;
  }
}
.cid-rJs5E9NHla {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rJs5E9NHla .container-fluid {
  padding: 0 3rem;
}
.cid-rJs5E9NHla .mbr-section-subtitle {
  color: #767676;
}
.cid-rJs5E9NHla .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rJs5E9NHla .table-wrapper {
  margin: 0 auto;
}
.cid-rJs5E9NHla table {
  width: 79% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-rJs5E9NHla table thead tr {
  border: none !important;
}
.cid-rJs5E9NHla table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #666666;
  color: white;
  vertical-align: middle;
}
.cid-rJs5E9NHla table tr {
  border-bottom: 1px solid #cccccc;
  border-top: none;
}
.cid-rJs5E9NHla table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-rJs5E9NHla tr:hover {
  background-color: #cccccc !important;
}
.cid-rJs5E9NHla .head-item:after,
.cid-rJs5E9NHla .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-rJs5E9NHla table th,
  .cid-rJs5E9NHla table td {
    padding: .75rem;
  }
}
.cid-rJs5E9NHla .body-item {
  text-align: center;
}
.cid-rJs5E9NHla .mbr-text {
  color: #767676;
}
.cid-rJs5E9NHla .head-item {
  color: #1862a9;
}
.cid-rJs5E9NHla .head-item2 {
  color: #ed6533;
}
.cid-rKOSY8barH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rKOSY8barH .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rKOSY8barH .icon2 {
  color: #f9b03e;
}
.cid-rKOSY8barH .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rKOSY8barH p {
  font-weight: 400;
}
.cid-rKOSY8barH .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rKOSY8barH .line2 {
  background: #ffffff;
}
.cid-rKOSY8barH .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rKOSY8barH .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rKOSY8barH .card2 {
  background: #ed6533;
}
.cid-rKOSY8barH .card-title,
.cid-rKOSY8barH .card-ico,
.cid-rKOSY8barH .line-wrap {
  text-align: center;
}
.cid-rKOSY8barH .mbr-text,
.cid-rKOSY8barH .card-link {
  text-align: center;
}
.cid-rPOEbjLwZT {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPOEbjLwZT svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPOEbjLwZT .mbr-text,
.cid-rPOEbjLwZT .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPOEbjLwZT #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPOEbjLwZT #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPOEbjLwZT H1 {
  color: #188ef4;
}
.cid-rPOEbjLwZT img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPOEbjLwZT .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPOEbjLwZT .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPOEbjLwZT img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPOEbjLwZT H3 {
  color: #444444;
}
.cid-rJs0xlOTZ4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJs0xlOTZ4 .content {
    text-align: center;
  }
  .cid-rJs0xlOTZ4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJs0xlOTZ4 .logo-subtitle {
  color: #8d97ad;
}
.cid-rJs0xlOTZ4 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJs0xlOTZ4 .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJs0xlOTZ4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJs0xlOTZ4 .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJs0xlOTZ4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJs0xlOTZ4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJs0xlOTZ4 .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-rJs0xlOTZ4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJs0xlOTZ4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJs0xlOTZ4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJs0xlOTZ4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJs0xlOTZ4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJs0xlOTZ4 .list-item {
  display: flex;
}
.cid-rJs0xlOTZ4 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJs0xlOTZ4 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJs0xlOTZ4 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJs0xlOTZ4 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJs0xlOTZ4 .column-title {
  color: #6f6f6f;
}
.cid-rJs0xlOTZ4 .logo-subtitle,
.cid-rJs0xlOTZ4 .media-wrap {
  color: #6f6f6f;
}
.cid-rJs0xlOTZ4 .copyright > p {
  color: #6f6f6f;
}
.cid-rJs9q8hmMb .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJs9q8hmMb .nav-item,
.cid-rJs9q8hmMb .nav-link,
.cid-rJs9q8hmMb .navbar-caption {
  font-weight: normal;
}
.cid-rJs9q8hmMb .nav-item:focus,
.cid-rJs9q8hmMb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJs9q8hmMb .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJs9q8hmMb .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJs9q8hmMb .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJs9q8hmMb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJs9q8hmMb .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJs9q8hmMb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJs9q8hmMb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJs9q8hmMb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJs9q8hmMb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJs9q8hmMb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJs9q8hmMb .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJs9q8hmMb .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJs9q8hmMb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJs9q8hmMb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJs9q8hmMb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJs9q8hmMb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJs9q8hmMb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJs9q8hmMb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJs9q8hmMb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJs9q8hmMb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJs9q8hmMb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJs9q8hmMb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJs9q8hmMb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJs9q8hmMb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJs9q8hmMb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJs9q8hmMb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJs9q8hmMb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJs9q8hmMb .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJs9q8hmMb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJs9q8hmMb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJs9q8hmMb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJs9q8hmMb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJs9q8hmMb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJs9q8hmMb .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJs9q8hmMb .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJs9q8hmMb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJs9q8hmMb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJs9q8hmMb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJs9q8hmMb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJs9q8hmMb .dropdown-item.active,
.cid-rJs9q8hmMb .dropdown-item:active {
  background-color: transparent;
}
.cid-rJs9q8hmMb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJs9q8hmMb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJs9q8hmMb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJs9q8hmMb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJs9q8hmMb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJs9q8hmMb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJs9q8hmMb .navbar-buttons {
  text-align: center;
}
.cid-rJs9q8hmMb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJs9q8hmMb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJs9q8hmMb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJs9q8hmMb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJs9q8hmMb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJs9q8hmMb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJs9q8hmMb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJs9q8hmMb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJs9q8hmMb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJs9q8hmMb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJs9q8hmMb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJs9q8hmMb a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJs9q8hmMb .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJs9q8hmMb .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJs9q8hmMb .soc-item {
  margin: .5rem .3rem;
}
.cid-rJs9q8hmMb .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJs9q8hmMb .navbar {
    height: 77px;
  }
  .cid-rJs9q8hmMb .navbar.opened {
    height: auto;
  }
  .cid-rJs9q8hmMb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJs9q95OXZ {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-21.jpg");
}
.cid-rJs9q95OXZ .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJs9q95OXZ .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJs9q95OXZ .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJs9q95OXZ .input-wrap {
  background: #fcfcfc;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJs9q95OXZ .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJs9q95OXZ .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJs9q95OXZ .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJs9q95OXZ .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJs9q95OXZ .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJs9q95OXZ .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJs9q95OXZ .check-in-input,
.cid-rJs9q95OXZ .check-out-input,
.cid-rJs9q95OXZ .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJs9q95OXZ .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJs9q95OXZ .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJs9q95OXZ .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJs9q95OXZ .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJs9q95OXZ .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJs9q95OXZ .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJs9q95OXZ .datepicker {
    left: 10% !important;
  }
}
.cid-rKOUMscO4T {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKOUMscO4T .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rKOUMscO4T .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rPPk05BIkz {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rPPk05BIkz h4 {
  display: flex;
  color: #232323;
}
.cid-rPPk05BIkz .panel-text {
  color: #000000;
  line-height: 1.7;
}
.cid-rPPk05BIkz .wrap {
  display: flex;
}
.cid-rPPk05BIkz .icon {
  background: #7fb448;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  color: white!important;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 900;
}
.cid-rPPk05BIkz img {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 2rem;
}
.cid-rPPk05BIkz .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-rPPk05BIkz p {
  margin: 0;
}
.cid-rPPk05BIkz .card .card-header a.panel-title {
  background-color: none!important;
  margin-top: 0px!important;
}
.cid-rPPk05BIkz .mbr-section-subtitle {
  font-weight: 500;
  color: #767676;
  text-align: center;
}
.cid-rPPk05BIkz .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rPPk05BIkz .panel-group {
  width: 100%;
}
.cid-rPPk05BIkz .panel-title {
  border-bottom: 1px solid #7fb448;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rPPk05BIkz .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rPPk05BIkz .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rPPk05BIkz .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rPPk05BIkz .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rPPk05BIkz .card .card-header a.panel-title h4 {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
}
.cid-rPPk05BIkz .card .panel-body {
  background: #ffffff;
}
.cid-rPPk05BIkz .media-container-row .accordion-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-rPPk05BIkz .media-container-row > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-rPPk05BIkz .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rPPk05BIkz .header-text,
.cid-rPPk05BIkz .sign {
  color: #232323;
}
.cid-rKOXmrr9nY {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #6f6f6f;
}
.cid-rKOXmrr9nY .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-rKOXmrr9nY .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-rKOXmrr9nY .mbr-section-subtitle {
  color: #f4f8fa;
}
.cid-rKOXmrr9nY .card-img span {
  color: #7fb448;
}
.cid-rKOXmrr9nY .row-item {
  margin-bottom: 2rem;
}
.cid-rKOXmrr9nY .row-item:hover .wrapper {
  background: linear-gradient(90deg, #7fb448, #7fb448);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-rKOXmrr9nY .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-rKOXmrr9nY .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-rKOXmrr9nY .wrapper {
  padding: 2.5rem 1rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rKOXmrr9nY .mbr-card-title,
.cid-rKOXmrr9nY .card-img {
  color: #6f6f6f;
}
.cid-rMqWv8lr8K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #6f6f6f;
}
.cid-rMqWv8lr8K .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMqWv8lr8K .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMqWv8lr8K .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-rMqWv8lr8K .card .card-img span {
  color: #ed6533;
  font-size: 60px;
}
.cid-rMqWv8lr8K .mbr-text {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-rMqWv8lr8K .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rMqWv8lr8K .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-rMqWv8lr8K .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-rMqWv8lr8K .card .card-box .card-title,
  .cid-rMqWv8lr8K .card .card-box .mbr-text,
  .cid-rMqWv8lr8K .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-rMqWv8lr8K .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-rMqWv8lr8K .card .card-img {
    text-align: right !important;
  }
}
.cid-rMqWv8lr8K .mbr-text,
.cid-rMqWv8lr8K .link {
  color: #ffffff;
}
.cid-rMqWv8lr8K .mbr-section-title {
  margin: 0;
  color: #ffffff !important;
}
.cid-rMqWv8lr8K P {
  color: #ffffff;
}
.cid-rKOT50R46b {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rKOT50R46b .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rKOT50R46b .icon2 {
  color: #f9b03e;
}
.cid-rKOT50R46b .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rKOT50R46b p {
  font-weight: 400;
}
.cid-rKOT50R46b .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rKOT50R46b .line2 {
  background: #ffffff;
}
.cid-rKOT50R46b .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rKOT50R46b .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rKOT50R46b .card2 {
  background: #ed6533;
}
.cid-rKOT50R46b .card-title,
.cid-rKOT50R46b .card-ico,
.cid-rKOT50R46b .line-wrap {
  text-align: center;
}
.cid-rKOT50R46b .mbr-text,
.cid-rKOT50R46b .card-link {
  text-align: center;
}
.cid-rPOFeYh2fX {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPOFeYh2fX svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPOFeYh2fX .mbr-text,
.cid-rPOFeYh2fX .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPOFeYh2fX #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPOFeYh2fX #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPOFeYh2fX H1 {
  color: #188ef4;
}
.cid-rPOFeYh2fX img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPOFeYh2fX .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPOFeYh2fX .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPOFeYh2fX img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPOFeYh2fX H3 {
  color: #444444;
}
.cid-rJs9qbygHc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJs9qbygHc .content {
    text-align: center;
  }
  .cid-rJs9qbygHc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJs9qbygHc .logo-subtitle {
  color: #8d97ad;
}
.cid-rJs9qbygHc .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJs9qbygHc .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJs9qbygHc .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJs9qbygHc .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJs9qbygHc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJs9qbygHc .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJs9qbygHc .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-rJs9qbygHc .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJs9qbygHc .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJs9qbygHc .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJs9qbygHc .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJs9qbygHc .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJs9qbygHc .list-item {
  display: flex;
}
.cid-rJs9qbygHc .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJs9qbygHc ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJs9qbygHc ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJs9qbygHc ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJs9qbygHc .column-title {
  color: #6f6f6f;
}
.cid-rJs9qbygHc .logo-subtitle,
.cid-rJs9qbygHc .media-wrap {
  color: #6f6f6f;
}
.cid-rJs9qbygHc .copyright > p {
  color: #6f6f6f;
}
.cid-rJrzrk2y65 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrzrk2y65 .nav-item,
.cid-rJrzrk2y65 .nav-link,
.cid-rJrzrk2y65 .navbar-caption {
  font-weight: normal;
}
.cid-rJrzrk2y65 .nav-item:focus,
.cid-rJrzrk2y65 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rJrzrk2y65 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rJrzrk2y65 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrzrk2y65 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rJrzrk2y65 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rJrzrk2y65 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rJrzrk2y65 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJrzrk2y65 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rJrzrk2y65 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJrzrk2y65 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJrzrk2y65 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rJrzrk2y65 .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rJrzrk2y65 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rJrzrk2y65 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJrzrk2y65 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJrzrk2y65 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJrzrk2y65 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rJrzrk2y65 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJrzrk2y65 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJrzrk2y65 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJrzrk2y65 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJrzrk2y65 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJrzrk2y65 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJrzrk2y65 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJrzrk2y65 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJrzrk2y65 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJrzrk2y65 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJrzrk2y65 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJrzrk2y65 .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rJrzrk2y65 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJrzrk2y65 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rJrzrk2y65 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJrzrk2y65 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJrzrk2y65 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJrzrk2y65 .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rJrzrk2y65 .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rJrzrk2y65 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJrzrk2y65 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rJrzrk2y65 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJrzrk2y65 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJrzrk2y65 .dropdown-item.active,
.cid-rJrzrk2y65 .dropdown-item:active {
  background-color: transparent;
}
.cid-rJrzrk2y65 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJrzrk2y65 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJrzrk2y65 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rJrzrk2y65 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJrzrk2y65 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJrzrk2y65 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJrzrk2y65 .navbar-buttons {
  text-align: center;
}
.cid-rJrzrk2y65 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJrzrk2y65 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rJrzrk2y65 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJrzrk2y65 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrzrk2y65 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJrzrk2y65 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJrzrk2y65 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrzrk2y65 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJrzrk2y65 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJrzrk2y65 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJrzrk2y65 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJrzrk2y65 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrzrk2y65 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rJrzrk2y65 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rJrzrk2y65 .soc-item {
  margin: .5rem .3rem;
}
.cid-rJrzrk2y65 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJrzrk2y65 .navbar {
    height: 77px;
  }
  .cid-rJrzrk2y65 .navbar.opened {
    height: auto;
  }
  .cid-rJrzrk2y65 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rJrzrkWfRF {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-20.jpg");
}
.cid-rJrzrkWfRF .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rJrzrkWfRF .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rJrzrkWfRF .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rJrzrkWfRF .input-wrap {
  background: #fcfcfc;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rJrzrkWfRF .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rJrzrkWfRF .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJrzrkWfRF .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rJrzrkWfRF .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJrzrkWfRF .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rJrzrkWfRF .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rJrzrkWfRF .check-in-input,
.cid-rJrzrkWfRF .check-out-input,
.cid-rJrzrkWfRF .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rJrzrkWfRF .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rJrzrkWfRF .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rJrzrkWfRF .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rJrzrkWfRF .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rJrzrkWfRF .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rJrzrkWfRF .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rJrzrkWfRF .datepicker {
    left: 10% !important;
  }
}
.cid-rJrzrlYvDV {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rJrzrlYvDV .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rJrzrlYvDV .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rJrDq1nvmo {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
  background: linear-gradient(0deg, #ffffff, #ffffff);
}
.cid-rJrDq1nvmo .mbr-section-title {
  color: #444444;
}
.cid-rJrDq1nvmo .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rJrDq1nvmo .mbr-text {
  color: #8d97ad;
}
.cid-rJrDq1nvmo .nav {
  border: none;
}
.cid-rJrDq1nvmo .nav-tabs {
  display: table;
  width: 100%;
}
.cid-rJrDq1nvmo .nav-tabs .nav-item {
  display: table-cell;
}
.cid-rJrDq1nvmo .card-img {
  overflow: hidden;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
}
.cid-rJrDq1nvmo .tab-content {
  margin-top: 3rem;
}
.cid-rJrDq1nvmo .nav-tabs .nav-link {
  display: flex;
  color: #ffffff;
  box-sizing: border-box;
  font-style: normal;
  background: #6f6f6f;
  font-weight: 500;
  padding: 1rem 1rem;
  border-right: 1px solid #dee2e6;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  margin: 0px;
  border-radius: 0px !important;
  border-bottom: 1px solid #dee2e6;
  transition: all .3s;
}
.cid-rJrDq1nvmo .nav-tabs .nav-link:hover {
  background-color: #1862a9;
  color: #ffffff;
}
.cid-rJrDq1nvmo .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #1862a9;
  border-bottom: none;
}
.cid-rJrDq1nvmo .nav-tabs .nav-link span {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-rJrDq1nvmo .nav-item {
    display: table-row !important;
  }
}
.cid-rJrDq1nvmo .mbr-text,
.cid-rJrDq1nvmo .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rKOSJ8Feix {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rKOSJ8Feix .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rKOSJ8Feix .icon2 {
  color: #f9b03e;
}
.cid-rKOSJ8Feix .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rKOSJ8Feix p {
  font-weight: 400;
}
.cid-rKOSJ8Feix .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rKOSJ8Feix .line2 {
  background: #ffffff;
}
.cid-rKOSJ8Feix .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rKOSJ8Feix .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rKOSJ8Feix .card2 {
  background: #ed6533;
}
.cid-rKOSJ8Feix .card-title,
.cid-rKOSJ8Feix .card-ico,
.cid-rKOSJ8Feix .line-wrap {
  text-align: center;
}
.cid-rKOSJ8Feix .mbr-text,
.cid-rKOSJ8Feix .card-link {
  text-align: center;
}
.cid-rPODYYPmRg {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPODYYPmRg svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPODYYPmRg .mbr-text,
.cid-rPODYYPmRg .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPODYYPmRg #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPODYYPmRg #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPODYYPmRg H1 {
  color: #188ef4;
}
.cid-rPODYYPmRg img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPODYYPmRg .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPODYYPmRg .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPODYYPmRg img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPODYYPmRg H3 {
  color: #444444;
}
.cid-rJrzrproRa {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rJrzrproRa .content {
    text-align: center;
  }
  .cid-rJrzrproRa .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJrzrproRa .logo-subtitle {
  color: #8d97ad;
}
.cid-rJrzrproRa .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rJrzrproRa .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rJrzrproRa .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rJrzrproRa .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rJrzrproRa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rJrzrproRa .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rJrzrproRa .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-rJrzrproRa .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rJrzrproRa .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rJrzrproRa .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rJrzrproRa .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rJrzrproRa .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rJrzrproRa .list-item {
  display: flex;
}
.cid-rJrzrproRa .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rJrzrproRa ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rJrzrproRa ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rJrzrproRa ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rJrzrproRa .column-title {
  color: #6f6f6f;
}
.cid-rJrzrproRa .logo-subtitle,
.cid-rJrzrproRa .media-wrap {
  color: #6f6f6f;
}
.cid-rJrzrproRa .copyright > p {
  color: #6f6f6f;
}
.cid-rPWk5PeRWD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWk5PeRWD .nav-item,
.cid-rPWk5PeRWD .nav-link,
.cid-rPWk5PeRWD .navbar-caption {
  font-weight: normal;
}
.cid-rPWk5PeRWD .nav-item:focus,
.cid-rPWk5PeRWD .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPWk5PeRWD .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rPWk5PeRWD .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWk5PeRWD .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rPWk5PeRWD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rPWk5PeRWD .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rPWk5PeRWD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPWk5PeRWD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWk5PeRWD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPWk5PeRWD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPWk5PeRWD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rPWk5PeRWD .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rPWk5PeRWD .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rPWk5PeRWD .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPWk5PeRWD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPWk5PeRWD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rPWk5PeRWD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rPWk5PeRWD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPWk5PeRWD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPWk5PeRWD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rPWk5PeRWD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPWk5PeRWD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPWk5PeRWD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPWk5PeRWD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPWk5PeRWD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPWk5PeRWD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPWk5PeRWD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPWk5PeRWD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rPWk5PeRWD .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rPWk5PeRWD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPWk5PeRWD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rPWk5PeRWD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPWk5PeRWD .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPWk5PeRWD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPWk5PeRWD .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rPWk5PeRWD .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rPWk5PeRWD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPWk5PeRWD .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPWk5PeRWD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPWk5PeRWD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPWk5PeRWD .dropdown-item.active,
.cid-rPWk5PeRWD .dropdown-item:active {
  background-color: transparent;
}
.cid-rPWk5PeRWD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPWk5PeRWD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPWk5PeRWD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rPWk5PeRWD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPWk5PeRWD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPWk5PeRWD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPWk5PeRWD .navbar-buttons {
  text-align: center;
}
.cid-rPWk5PeRWD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPWk5PeRWD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rPWk5PeRWD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPWk5PeRWD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWk5PeRWD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWk5PeRWD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPWk5PeRWD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWk5PeRWD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPWk5PeRWD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPWk5PeRWD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWk5PeRWD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPWk5PeRWD a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWk5PeRWD .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rPWk5PeRWD .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rPWk5PeRWD .soc-item {
  margin: .5rem .3rem;
}
.cid-rPWk5PeRWD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPWk5PeRWD .navbar {
    height: 77px;
  }
  .cid-rPWk5PeRWD .navbar.opened {
    height: auto;
  }
  .cid-rPWk5PeRWD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPWk5PQuHI {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-22.jpg");
}
.cid-rPWk5PQuHI .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rPWk5PQuHI .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rPWk5PQuHI .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rPWk5PQuHI .input-wrap {
  background: #fcfcfc;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rPWk5PQuHI .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rPWk5PQuHI .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rPWk5PQuHI .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rPWk5PQuHI .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rPWk5PQuHI .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rPWk5PQuHI .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rPWk5PQuHI .check-in-input,
.cid-rPWk5PQuHI .check-out-input,
.cid-rPWk5PQuHI .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rPWk5PQuHI .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rPWk5PQuHI .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rPWk5PQuHI .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rPWk5PQuHI .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rPWk5PQuHI .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rPWk5PQuHI .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rPWk5PQuHI .datepicker {
    left: 10% !important;
  }
}
.cid-rPWk5QCtXn {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPWk5QCtXn .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rPWk5QCtXn .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rPWk5THdTT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rPWk5THdTT .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rPWk5THdTT .icon2 {
  color: #f9b03e;
}
.cid-rPWk5THdTT .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rPWk5THdTT p {
  font-weight: 400;
}
.cid-rPWk5THdTT .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rPWk5THdTT .line2 {
  background: #ffffff;
}
.cid-rPWk5THdTT .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rPWk5THdTT .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rPWk5THdTT .card2 {
  background: #ed6533;
}
.cid-rPWk5THdTT .card-title,
.cid-rPWk5THdTT .card-ico,
.cid-rPWk5THdTT .line-wrap {
  text-align: center;
}
.cid-rPWk5THdTT .mbr-text,
.cid-rPWk5THdTT .card-link {
  text-align: center;
}
.cid-rPWk5UtRs5 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPWk5UtRs5 svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPWk5UtRs5 .mbr-text,
.cid-rPWk5UtRs5 .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPWk5UtRs5 #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPWk5UtRs5 #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPWk5UtRs5 H1 {
  color: #188ef4;
}
.cid-rPWk5UtRs5 img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPWk5UtRs5 .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPWk5UtRs5 .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPWk5UtRs5 img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPWk5UtRs5 H3 {
  color: #444444;
}
.cid-rPWk5Vamrm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rPWk5Vamrm .content {
    text-align: center;
  }
  .cid-rPWk5Vamrm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPWk5Vamrm .logo-subtitle {
  color: #8d97ad;
}
.cid-rPWk5Vamrm .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rPWk5Vamrm .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rPWk5Vamrm .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPWk5Vamrm .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rPWk5Vamrm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPWk5Vamrm .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rPWk5Vamrm .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-rPWk5Vamrm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPWk5Vamrm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPWk5Vamrm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPWk5Vamrm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPWk5Vamrm .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPWk5Vamrm .list-item {
  display: flex;
}
.cid-rPWk5Vamrm .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rPWk5Vamrm ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rPWk5Vamrm ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rPWk5Vamrm ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rPWk5Vamrm .column-title {
  color: #6f6f6f;
}
.cid-rPWk5Vamrm .logo-subtitle,
.cid-rPWk5Vamrm .media-wrap {
  color: #6f6f6f;
}
.cid-rPWk5Vamrm .copyright > p {
  color: #6f6f6f;
}
.cid-rPWlNq993V .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWlNq993V .nav-item,
.cid-rPWlNq993V .nav-link,
.cid-rPWlNq993V .navbar-caption {
  font-weight: normal;
}
.cid-rPWlNq993V .nav-item:focus,
.cid-rPWlNq993V .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPWlNq993V .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rPWlNq993V .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWlNq993V .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rPWlNq993V .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rPWlNq993V .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rPWlNq993V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPWlNq993V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWlNq993V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPWlNq993V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPWlNq993V .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rPWlNq993V .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rPWlNq993V .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rPWlNq993V .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPWlNq993V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPWlNq993V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rPWlNq993V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rPWlNq993V .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPWlNq993V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPWlNq993V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rPWlNq993V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPWlNq993V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPWlNq993V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPWlNq993V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPWlNq993V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPWlNq993V .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPWlNq993V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPWlNq993V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rPWlNq993V .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rPWlNq993V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPWlNq993V .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rPWlNq993V .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPWlNq993V .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPWlNq993V .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPWlNq993V .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rPWlNq993V .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rPWlNq993V .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPWlNq993V .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPWlNq993V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPWlNq993V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPWlNq993V .dropdown-item.active,
.cid-rPWlNq993V .dropdown-item:active {
  background-color: transparent;
}
.cid-rPWlNq993V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPWlNq993V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPWlNq993V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rPWlNq993V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPWlNq993V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPWlNq993V ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPWlNq993V .navbar-buttons {
  text-align: center;
}
.cid-rPWlNq993V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPWlNq993V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rPWlNq993V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPWlNq993V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWlNq993V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWlNq993V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPWlNq993V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWlNq993V nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPWlNq993V nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPWlNq993V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWlNq993V .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPWlNq993V a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWlNq993V .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rPWlNq993V .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rPWlNq993V .soc-item {
  margin: .5rem .3rem;
}
.cid-rPWlNq993V .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPWlNq993V .navbar {
    height: 77px;
  }
  .cid-rPWlNq993V .navbar.opened {
    height: auto;
  }
  .cid-rPWlNq993V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPWlNqW6Ew {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-23.jpg");
}
.cid-rPWlNqW6Ew .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rPWlNqW6Ew .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rPWlNqW6Ew .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rPWlNqW6Ew .input-wrap {
  background: #fcfcfc;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rPWlNqW6Ew .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rPWlNqW6Ew .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rPWlNqW6Ew .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rPWlNqW6Ew .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rPWlNqW6Ew .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rPWlNqW6Ew .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rPWlNqW6Ew .check-in-input,
.cid-rPWlNqW6Ew .check-out-input,
.cid-rPWlNqW6Ew .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rPWlNqW6Ew .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rPWlNqW6Ew .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rPWlNqW6Ew .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rPWlNqW6Ew .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rPWlNqW6Ew .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rPWlNqW6Ew .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rPWlNqW6Ew .datepicker {
    left: 10% !important;
  }
}
.cid-rPWlNrQh7N {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPWlNrQh7N .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rPWlNrQh7N .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rPWscPkHPs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #4284df;
}
.cid-rPWscPkHPs h2,
.cid-rPWscPkHPs h3,
.cid-rPWscPkHPs h4,
.cid-rPWscPkHPs p {
  color: #ffffff;
}
.cid-rPWscPkHPs .mbr-overlay {
  z-index: -1;
}
.cid-rPWscPkHPs .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rPWscPkHPs .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rPWscPkHPs .form-control:focus,
.cid-rPWscPkHPs .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-rPWscPkHPs .form-group {
  margin-bottom: 1rem;
}
.cid-rPWscPkHPs input::-webkit-input-placeholder,
.cid-rPWscPkHPs textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-rPWscPkHPs input:-moz-placeholder,
.cid-rPWscPkHPs textarea:-moz-placeholder {
  color: #656565;
}
.cid-rPWscPkHPs .jq-selectbox li,
.cid-rPWscPkHPs .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rPWscPkHPs .jq-selectbox li:hover,
.cid-rPWscPkHPs .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rPWscPkHPs .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rPWscPkHPs .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rPWscPkHPs .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWscPkHPs .mbr-text {
  color: #767676;
}
.cid-rPWscPkHPs .form-block {
  padding: 3rem;
  position: relative;
}
.cid-rPWscPkHPs .form-block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c1616;
  opacity: 0.5;
  z-index: 0;
}
.cid-rPWscPkHPs .form-block .form-wrap {
  position: relative;
  z-index: 1;
}
.cid-rPWscPkHPs a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rPWscPkHPs .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rPWscPkHPs .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rPWscPkHPs textarea.form-control {
  resize: none;
}
@media (min-width: 768px) {
  .cid-rPWscPkHPs .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rPWscPkHPs .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rPWscPkHPs .google-map {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-rPWscPkHPs h2 {
    padding-top: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-rPWscPkHPs .block-content {
    padding: 0;
  }
  .cid-rPWscPkHPs .form-block {
    padding: 1rem;
  }
}
.cid-rPWlNshqU7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rPWlNshqU7 .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rPWlNshqU7 .icon2 {
  color: #f9b03e;
}
.cid-rPWlNshqU7 .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rPWlNshqU7 p {
  font-weight: 400;
}
.cid-rPWlNshqU7 .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rPWlNshqU7 .line2 {
  background: #ffffff;
}
.cid-rPWlNshqU7 .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rPWlNshqU7 .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rPWlNshqU7 .card2 {
  background: #ed6533;
}
.cid-rPWlNshqU7 .card-title,
.cid-rPWlNshqU7 .card-ico,
.cid-rPWlNshqU7 .line-wrap {
  text-align: center;
}
.cid-rPWlNshqU7 .mbr-text,
.cid-rPWlNshqU7 .card-link {
  text-align: center;
}
.cid-rPWlNsSsbT {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPWlNsSsbT svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPWlNsSsbT .mbr-text,
.cid-rPWlNsSsbT .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPWlNsSsbT #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPWlNsSsbT #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPWlNsSsbT H1 {
  color: #188ef4;
}
.cid-rPWlNsSsbT img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPWlNsSsbT .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPWlNsSsbT .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPWlNsSsbT img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPWlNsSsbT H3 {
  color: #444444;
}
.cid-rPWlNtnUE4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rPWlNtnUE4 .content {
    text-align: center;
  }
  .cid-rPWlNtnUE4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPWlNtnUE4 .logo-subtitle {
  color: #8d97ad;
}
.cid-rPWlNtnUE4 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rPWlNtnUE4 .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rPWlNtnUE4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPWlNtnUE4 .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rPWlNtnUE4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPWlNtnUE4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rPWlNtnUE4 .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-rPWlNtnUE4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPWlNtnUE4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPWlNtnUE4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPWlNtnUE4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPWlNtnUE4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPWlNtnUE4 .list-item {
  display: flex;
}
.cid-rPWlNtnUE4 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rPWlNtnUE4 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rPWlNtnUE4 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rPWlNtnUE4 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rPWlNtnUE4 .column-title {
  color: #6f6f6f;
}
.cid-rPWlNtnUE4 .logo-subtitle,
.cid-rPWlNtnUE4 .media-wrap {
  color: #6f6f6f;
}
.cid-rPWlNtnUE4 .copyright > p {
  color: #6f6f6f;
}
.cid-rPWmaRbcqR .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWmaRbcqR .nav-item,
.cid-rPWmaRbcqR .nav-link,
.cid-rPWmaRbcqR .navbar-caption {
  font-weight: normal;
}
.cid-rPWmaRbcqR .nav-item:focus,
.cid-rPWmaRbcqR .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPWmaRbcqR .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rPWmaRbcqR .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWmaRbcqR .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rPWmaRbcqR .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rPWmaRbcqR .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rPWmaRbcqR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPWmaRbcqR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWmaRbcqR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPWmaRbcqR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPWmaRbcqR .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rPWmaRbcqR .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rPWmaRbcqR .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rPWmaRbcqR .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPWmaRbcqR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPWmaRbcqR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rPWmaRbcqR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rPWmaRbcqR .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPWmaRbcqR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPWmaRbcqR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rPWmaRbcqR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPWmaRbcqR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPWmaRbcqR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPWmaRbcqR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPWmaRbcqR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPWmaRbcqR .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPWmaRbcqR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPWmaRbcqR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rPWmaRbcqR .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rPWmaRbcqR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPWmaRbcqR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rPWmaRbcqR .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPWmaRbcqR .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPWmaRbcqR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPWmaRbcqR .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rPWmaRbcqR .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rPWmaRbcqR .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPWmaRbcqR .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPWmaRbcqR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPWmaRbcqR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPWmaRbcqR .dropdown-item.active,
.cid-rPWmaRbcqR .dropdown-item:active {
  background-color: transparent;
}
.cid-rPWmaRbcqR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPWmaRbcqR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPWmaRbcqR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rPWmaRbcqR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPWmaRbcqR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPWmaRbcqR ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPWmaRbcqR .navbar-buttons {
  text-align: center;
}
.cid-rPWmaRbcqR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPWmaRbcqR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rPWmaRbcqR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPWmaRbcqR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWmaRbcqR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWmaRbcqR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPWmaRbcqR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWmaRbcqR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPWmaRbcqR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPWmaRbcqR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWmaRbcqR .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPWmaRbcqR a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWmaRbcqR .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rPWmaRbcqR .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rPWmaRbcqR .soc-item {
  margin: .5rem .3rem;
}
.cid-rPWmaRbcqR .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPWmaRbcqR .navbar {
    height: 77px;
  }
  .cid-rPWmaRbcqR .navbar.opened {
    height: auto;
  }
  .cid-rPWmaRbcqR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPWmaRYF3T {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-25.jpg");
}
.cid-rPWmaRYF3T .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rPWmaRYF3T .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rPWmaRYF3T .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rPWmaRYF3T .input-wrap {
  background: #fcfcfc;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rPWmaRYF3T .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rPWmaRYF3T .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rPWmaRYF3T .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rPWmaRYF3T .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rPWmaRYF3T .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rPWmaRYF3T .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rPWmaRYF3T .check-in-input,
.cid-rPWmaRYF3T .check-out-input,
.cid-rPWmaRYF3T .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rPWmaRYF3T .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rPWmaRYF3T .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rPWmaRYF3T .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rPWmaRYF3T .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rPWmaRYF3T .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rPWmaRYF3T .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rPWmaRYF3T .datepicker {
    left: 10% !important;
  }
}
.cid-rPWmaSXnUd {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPWmaSXnUd .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rPWmaSXnUd .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rPWpJYxWRb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-19.jpg");
}
.cid-rPWpJYxWRb .mbr-overlay {
  background: linear-gradient(90deg, #8d97ad, #444444);
}
.cid-rPWpJYxWRb h2,
.cid-rPWpJYxWRb h3,
.cid-rPWpJYxWRb h4,
.cid-rPWpJYxWRb p {
  color: #ffffff;
}
.cid-rPWpJYxWRb .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rPWpJYxWRb .text-block {
  border-bottom: 1px solid #767676;
}
.cid-rPWpJYxWRb .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWpJYxWRb .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rPWpJYxWRb .form-control:focus,
.cid-rPWpJYxWRb .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-rPWpJYxWRb .form-group {
  margin-bottom: 1rem;
}
.cid-rPWpJYxWRb input::-webkit-input-placeholder,
.cid-rPWpJYxWRb textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-rPWpJYxWRb input:-moz-placeholder,
.cid-rPWpJYxWRb textarea:-moz-placeholder {
  color: #656565;
}
.cid-rPWpJYxWRb .jq-selectbox li,
.cid-rPWpJYxWRb .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rPWpJYxWRb .jq-selectbox li:hover,
.cid-rPWpJYxWRb .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rPWpJYxWRb .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rPWpJYxWRb .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rPWpJYxWRb .mbr-text {
  color: #767676;
}
.cid-rPWpJYxWRb a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rPWpJYxWRb .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rPWpJYxWRb .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rPWpJYxWRb textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-rPWpJYxWRb h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-rPWpJYxWRb .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rPWpJYxWRb .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rPWpJYxWRb .google-map {
    padding-bottom: 2rem;
  }
}
.cid-rPWmaTnVTN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rPWmaTnVTN .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rPWmaTnVTN .icon2 {
  color: #f9b03e;
}
.cid-rPWmaTnVTN .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rPWmaTnVTN p {
  font-weight: 400;
}
.cid-rPWmaTnVTN .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rPWmaTnVTN .line2 {
  background: #ffffff;
}
.cid-rPWmaTnVTN .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rPWmaTnVTN .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rPWmaTnVTN .card2 {
  background: #ed6533;
}
.cid-rPWmaTnVTN .card-title,
.cid-rPWmaTnVTN .card-ico,
.cid-rPWmaTnVTN .line-wrap {
  text-align: center;
}
.cid-rPWmaTnVTN .mbr-text,
.cid-rPWmaTnVTN .card-link {
  text-align: center;
}
.cid-rPWmaTYY5N {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPWmaTYY5N svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPWmaTYY5N .mbr-text,
.cid-rPWmaTYY5N .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPWmaTYY5N #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPWmaTYY5N #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPWmaTYY5N H1 {
  color: #188ef4;
}
.cid-rPWmaTYY5N img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPWmaTYY5N .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPWmaTYY5N .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPWmaTYY5N img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPWmaTYY5N H3 {
  color: #444444;
}
.cid-rPWmaUtW49 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rPWmaUtW49 .content {
    text-align: center;
  }
  .cid-rPWmaUtW49 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPWmaUtW49 .logo-subtitle {
  color: #8d97ad;
}
.cid-rPWmaUtW49 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rPWmaUtW49 .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rPWmaUtW49 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPWmaUtW49 .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rPWmaUtW49 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPWmaUtW49 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rPWmaUtW49 .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-rPWmaUtW49 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPWmaUtW49 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPWmaUtW49 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPWmaUtW49 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPWmaUtW49 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPWmaUtW49 .list-item {
  display: flex;
}
.cid-rPWmaUtW49 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rPWmaUtW49 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rPWmaUtW49 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rPWmaUtW49 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rPWmaUtW49 .column-title {
  color: #6f6f6f;
}
.cid-rPWmaUtW49 .logo-subtitle,
.cid-rPWmaUtW49 .media-wrap {
  color: #6f6f6f;
}
.cid-rPWmaUtW49 .copyright > p {
  color: #6f6f6f;
}
.cid-rPWn1PUX9f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWn1PUX9f .nav-item,
.cid-rPWn1PUX9f .nav-link,
.cid-rPWn1PUX9f .navbar-caption {
  font-weight: normal;
}
.cid-rPWn1PUX9f .nav-item:focus,
.cid-rPWn1PUX9f .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rPWn1PUX9f .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rPWn1PUX9f .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWn1PUX9f .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rPWn1PUX9f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rPWn1PUX9f .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rPWn1PUX9f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPWn1PUX9f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rPWn1PUX9f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPWn1PUX9f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPWn1PUX9f .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
}
.cid-rPWn1PUX9f .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rPWn1PUX9f .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rPWn1PUX9f .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPWn1PUX9f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPWn1PUX9f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rPWn1PUX9f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 2rem);
  }
}
.cid-rPWn1PUX9f .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPWn1PUX9f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPWn1PUX9f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rPWn1PUX9f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPWn1PUX9f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPWn1PUX9f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPWn1PUX9f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPWn1PUX9f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPWn1PUX9f .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPWn1PUX9f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPWn1PUX9f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rPWn1PUX9f .navbar .navbar-logo img {
    height: 2rem !important;
  }
  .cid-rPWn1PUX9f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPWn1PUX9f .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rPWn1PUX9f .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPWn1PUX9f .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPWn1PUX9f .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPWn1PUX9f .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rPWn1PUX9f .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
.cid-rPWn1PUX9f .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPWn1PUX9f .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rPWn1PUX9f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPWn1PUX9f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPWn1PUX9f .dropdown-item.active,
.cid-rPWn1PUX9f .dropdown-item:active {
  background-color: transparent;
}
.cid-rPWn1PUX9f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPWn1PUX9f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPWn1PUX9f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rPWn1PUX9f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPWn1PUX9f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPWn1PUX9f ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPWn1PUX9f .navbar-buttons {
  text-align: center;
}
.cid-rPWn1PUX9f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPWn1PUX9f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #444444;
}
.cid-rPWn1PUX9f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPWn1PUX9f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWn1PUX9f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPWn1PUX9f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPWn1PUX9f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWn1PUX9f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPWn1PUX9f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPWn1PUX9f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPWn1PUX9f .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPWn1PUX9f a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWn1PUX9f .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rPWn1PUX9f .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rPWn1PUX9f .soc-item {
  margin: .5rem .3rem;
}
.cid-rPWn1PUX9f .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPWn1PUX9f .navbar {
    height: 77px;
  }
  .cid-rPWn1PUX9f .navbar.opened {
    height: auto;
  }
  .cid-rPWn1PUX9f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPWn1QJlPW {
  z-index: 1;
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-27.jpg");
}
.cid-rPWn1QJlPW .mbr-arrow {
  background: #232323 !important;
  opacity: .7;
}
.cid-rPWn1QJlPW .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rPWn1QJlPW .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rPWn1QJlPW .input-wrap {
  background: #fcfcfc;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .mbr-section-btn {
  margin: 0;
  width: 100%;
  display: flex;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rPWn1QJlPW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  padding: 10px 15px;
  white-space: pre-wrap;
  line-height: 18px;
  margin: 0 !important;
  font-weight: 300;
  border-radius: 0 !important;
}
.cid-rPWn1QJlPW .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rPWn1QJlPW .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rPWn1QJlPW .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rPWn1QJlPW .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rPWn1QJlPW .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rPWn1QJlPW .check-in-input,
.cid-rPWn1QJlPW .check-out-input,
.cid-rPWn1QJlPW .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rPWn1QJlPW .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rPWn1QJlPW .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rPWn1QJlPW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rPWn1QJlPW .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rPWn1QJlPW .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rPWn1QJlPW .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rPWn1QJlPW .datepicker {
    left: 10% !important;
  }
}
.cid-rPWn1RGvTR {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rPWn1RGvTR .mbr-section-subtitle {
  color: #6f6f6f;
  text-align: center;
}
.cid-rPWn1RGvTR .mbr-section-title {
  text-align: center;
  color: #444444;
}
.cid-rPWnnzO9tv {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #716868;
}
.cid-rPWnnzO9tv .mbr-overlay {
  background: #efefef;
}
.cid-rPWnnzO9tv .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-rPWnnzO9tv .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-rPWnnzO9tv .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rPWnnzO9tv .mbr-text {
  color: #8d97ad;
}
.cid-rPWnnzO9tv .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rPWnnzO9tv .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-rPWnnzO9tv .card-title {
    text-align: center;
  }
  .cid-rPWnnzO9tv p.mbr-text,
  .cid-rPWnnzO9tv p.date {
    text-align: center;
  }
}
.cid-rPWnnY9FFA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #716868;
}
.cid-rPWnnY9FFA .mbr-overlay {
  background: #efefef;
}
.cid-rPWnnY9FFA .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-rPWnnY9FFA .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-rPWnnY9FFA .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rPWnnY9FFA .mbr-text {
  color: #8d97ad;
}
.cid-rPWnnY9FFA .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rPWnnY9FFA .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-rPWnnY9FFA .card-title {
    text-align: center;
  }
  .cid-rPWnnY9FFA p.mbr-text,
  .cid-rPWnnY9FFA p.date {
    text-align: center;
  }
}
.cid-rPWnon0q1d {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #716868;
}
.cid-rPWnon0q1d .mbr-overlay {
  background: #efefef;
}
.cid-rPWnon0q1d .card {
  padding: 1rem 1rem 2rem 1rem;
}
.cid-rPWnon0q1d .card-img {
  padding: 0;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.cid-rPWnon0q1d .card-box {
  border-bottom-left-radius: .25rem;
  border-bottom-right-radius: .25rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rPWnon0q1d .mbr-text {
  color: #8d97ad;
}
.cid-rPWnon0q1d .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rPWnon0q1d .mbr-section-btn {
  margin-left: 0;
}
@media (max-width: 767px) {
  .cid-rPWnon0q1d .card-title {
    text-align: center;
  }
  .cid-rPWnon0q1d p.mbr-text,
  .cid-rPWnon0q1d p.date {
    text-align: center;
  }
}
.cid-rPWn1S7u1E {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #444444;
}
.cid-rPWn1S7u1E .card-icon {
  font-size: 56px;
  color: #7fb448;
  transition: color 0.3s;
}
.cid-rPWn1S7u1E .icon2 {
  color: #f9b03e;
}
.cid-rPWn1S7u1E .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-rPWn1S7u1E p {
  font-weight: 400;
}
.cid-rPWn1S7u1E .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #7fb448;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-rPWn1S7u1E .line2 {
  background: #ffffff;
}
.cid-rPWn1S7u1E .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #255085;
}
.cid-rPWn1S7u1E .card-wrapper:hover .link-ico {
  background-color: #7fb448;
  border-color: #7fb448;
  color: white;
}
.cid-rPWn1S7u1E .card2 {
  background: #ed6533;
}
.cid-rPWn1S7u1E .card-title,
.cid-rPWn1S7u1E .card-ico,
.cid-rPWn1S7u1E .line-wrap {
  text-align: center;
}
.cid-rPWn1S7u1E .mbr-text,
.cid-rPWn1S7u1E .card-link {
  text-align: center;
}
.cid-rPWn1SL3Rp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f2f6ff;
  position: relative;
  overflow: hidden;
}
.cid-rPWn1SL3Rp svg {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.2);
  animation: wave 5s ease-in-out infinite;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
@keyframes wave {
  from {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
  50% {
    transform: rotate(0.2deg) translate(-50%) scale(2.1, 1.3);
  }
  to {
    transform: rotate(-0.2deg) translate(-50%) scale(2, 1.2);
  }
}
.cid-rPWn1SL3Rp .mbr-text,
.cid-rPWn1SL3Rp .mbr-section-btn {
  color: #6f6f6f;
}
.cid-rPWn1SL3Rp #e12_areaS3 {
  fill: #e1e8ff !important;
}
.cid-rPWn1SL3Rp #e19_areaS3 {
  fill: #bfceff !important;
}
.cid-rPWn1SL3Rp H1 {
  color: #188ef4;
}
.cid-rPWn1SL3Rp img {
  width: 70%;
  border-radius: 0px;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0px 0px 0px rgba(152, 196, 107, 0.35);
}
.cid-rPWn1SL3Rp .box {
  width: 95%;
  height: 90%;
  opacity: 0.5;
  background-color: #ffffff;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 0rem;
}
@media (max-width: 1200px) {
  .cid-rPWn1SL3Rp .box {
    top: 2%;
    width: 97%;
    height: 96%;
  }
}
@media (max-width: 576px) {
  .cid-rPWn1SL3Rp img {
    left: 0px;
    width: 100%;
  }
}
.cid-rPWn1SL3Rp H3 {
  color: #444444;
}
.cid-rPWn1Tg9Hm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f4f8fa;
}
@media (max-width: 767px) {
  .cid-rPWn1Tg9Hm .content {
    text-align: center;
  }
  .cid-rPWn1Tg9Hm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rPWn1Tg9Hm .logo-subtitle {
  color: #8d97ad;
}
.cid-rPWn1Tg9Hm .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rPWn1Tg9Hm .media-wrap {
    margin-bottom: 3rem;
  }
}
.cid-rPWn1Tg9Hm .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rPWn1Tg9Hm .media-wrap img {
  height: 3rem;
}
@media (max-width: 767px) {
  .cid-rPWn1Tg9Hm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rPWn1Tg9Hm .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rPWn1Tg9Hm .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-rPWn1Tg9Hm .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rPWn1Tg9Hm .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPWn1Tg9Hm .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPWn1Tg9Hm .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPWn1Tg9Hm .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPWn1Tg9Hm .list-item {
  display: flex;
}
.cid-rPWn1Tg9Hm .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rPWn1Tg9Hm ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rPWn1Tg9Hm ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rPWn1Tg9Hm ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rPWn1Tg9Hm .column-title {
  color: #6f6f6f;
}
.cid-rPWn1Tg9Hm .logo-subtitle,
.cid-rPWn1Tg9Hm .media-wrap {
  color: #6f6f6f;
}
.cid-rPWn1Tg9Hm .copyright > p {
  color: #6f6f6f;
}
