body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 4.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Oswald', 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: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #c19b76 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #e26c5a !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc3a24 !important;
  border-color: #cc3a24 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #906841 !important;
  color: #906841 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #b63420 !important;
  color: #b63420 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e26c5a !important;
  border-color: #e26c5a !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c19b76 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #e26c5a !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #906841 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b63420 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #709faf;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #e26c5a;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c19b76;
  border-color: #c19b76;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c19b76;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9dbce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #c19b76;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c19b76;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c19b76;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c19b76;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c19b76;
  border-bottom-color: #c19b76;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #c19b76 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #333333 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23c19b76' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rzMgHGam4n .nav-item:focus,
.cid-rzMgHGam4n .nav-link:focus {
  outline: none;
}
.cid-rzMgHGam4n a.nav-link:focus {
  color: #ffffff !important;
}
.cid-rzMgHGam4n .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #303a79;
}
.cid-rzMgHGam4n .navbar.opened {
  transition: all .3s;
  background: #303a79 !important;
}
.cid-rzMgHGam4n .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-rzMgHGam4n .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-rzMgHGam4n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-rzMgHGam4n .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-rzMgHGam4n .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rzMgHGam4n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rzMgHGam4n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-rzMgHGam4n .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rzMgHGam4n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rzMgHGam4n .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rzMgHGam4n .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rzMgHGam4n .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rzMgHGam4n .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-rzMgHGam4n .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-rzMgHGam4n .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rzMgHGam4n .navbar.navbar-short {
  background: #303a79 !important;
  min-height: 60px;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rzMgHGam4n .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rzMgHGam4n .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-rzMgHGam4n .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-rzMgHGam4n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rzMgHGam4n .dropdown-item.active,
.cid-rzMgHGam4n .dropdown-item:active {
  background-color: transparent;
}
.cid-rzMgHGam4n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rzMgHGam4n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-rzMgHGam4n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-rzMgHGam4n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rzMgHGam4n ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rzMgHGam4n .navbar-buttons {
  text-align: center;
}
.cid-rzMgHGam4n button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rzMgHGam4n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rzMgHGam4n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rzMgHGam4n .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rzMgHGam4n a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-rzMgHGam4n .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rzMgHGam4n .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rzMgHGam4n .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-rzMgHGam4n .nav-link:hover,
.cid-rzMgHGam4n .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-rzMgHGam4n .dropdown-item:hover {
  color: #878787 !important;
}
.cid-rzMgHGam4n .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-rzMgHGam4n .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-rzMgHGam4n .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-rzMgHGam4n .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-rzMgHGam4n .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-rzMgHGam4n .dropdown-menu {
    top: 100%;
  }
  .cid-rzMgHGam4n .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-rzMgHGam4n .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-rzMgHGam4n .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-rzMgHGam4n .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-rzMgGd484C {
  z-index: 1;
  background-image: url("../../../assets/images/01-1-2000x1126.jpg");
}
.cid-rzMgGd484C .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-rzMgGd484C .mbr-arrow i {
  color: #ffffff !important;
}
.cid-rzMgGd484C .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rzMgGd484C .input-wrap {
  background: #fcfcfc;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input {
  border: none;
  position: absolute;
  background: transparent;
  z-index: 2;
  left: -90px;
  top: 25%;
  height: 50%;
  width: calc(100% + 90px);
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .date-col {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  line-height: 18px;
  margin: 0;
  font-weight: 300;
}
.cid-rzMgGd484C .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-rzMgGd484C .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-rzMgGd484C .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rzMgGd484C .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-rzMgGd484C .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-rzMgGd484C .check-in-input,
.cid-rzMgGd484C .check-out-input,
.cid-rzMgGd484C .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-rzMgGd484C .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-rzMgGd484C .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-rzMgGd484C .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-rzMgGd484C .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-rzMgGd484C .datepicker {
    left: 10% !important;
  }
}
.cid-ul0mc8Qqkb {
  padding-top: 45px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-ul0mc8Qqkb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul0mc8Qqkb .mbr-section-title,
.cid-ul0mc8Qqkb .mbr-section-subtitle,
.cid-ul0mc8Qqkb .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ul0mc8Qqkb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ul0mc8Qqkb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ul0mc8Qqkb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ul0mc8Qqkb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ul0mc8Qqkb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-ul0mc8Qqkb .icon-focus {
  display: none;
}
.cid-ul0mc8Qqkb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ul0mc8Qqkb ul {
  font-size: 0;
}
.cid-ul0mc8Qqkb .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-ul0mc8Qqkb .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-ul0mc8Qqkb .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-ul0mc8Qqkb .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-ul0mc8Qqkb .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-ul0mc8Qqkb .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ul0mc8Qqkb .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-ul0mc8Qqkb .btn:hover {
  background: transparent !important;
}
.cid-ul0mc8Qqkb .btn:hover:before {
  background: transparent !important;
}
.cid-ul0mc8Qqkb .btn:before {
  background-color: transparent !important;
}
.cid-ul0mc8Qqkb .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-ul0ojT6qp7 {
  padding-top: 0px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-ul0ojT6qp7 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul0ojT6qp7 .mbr-section-title,
.cid-ul0ojT6qp7 .mbr-section-subtitle,
.cid-ul0ojT6qp7 .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ul0ojT6qp7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ul0ojT6qp7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ul0ojT6qp7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ul0ojT6qp7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ul0ojT6qp7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-ul0ojT6qp7 .icon-focus {
  display: none;
}
.cid-ul0ojT6qp7 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ul0ojT6qp7 ul {
  font-size: 0;
}
.cid-ul0ojT6qp7 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-ul0ojT6qp7 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-ul0ojT6qp7 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-ul0ojT6qp7 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-ul0ojT6qp7 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-ul0ojT6qp7 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ul0ojT6qp7 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-ul0ojT6qp7 .btn:hover {
  background: transparent !important;
}
.cid-ul0ojT6qp7 .btn:hover:before {
  background: transparent !important;
}
.cid-ul0ojT6qp7 .btn:before {
  background-color: transparent !important;
}
.cid-ul0ojT6qp7 .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-ul39WyfZ48 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ul39WyfZ48 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul39WyfZ48 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-ul39WyfZ48 .title {
    width: 100% !important;
  }
}
.cid-ul3a2oA953 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rzMgJD6sEt {
  background-color: #000000;
}
.cid-rzMgJD6sEt .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rzMgJD6sEt .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rzMgJD6sEt .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-rzMgJD6sEt .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgJD6sEt .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-rzMgJD6sEt .image-element {
    padding-right: 0;
  }
}
.cid-rzMgJD6sEt .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-rzMgJD6sEt .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-rzMgJD6sEt .brown {
  color: #c19b76;
}
.cid-rzMgJD6sEt .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgJD6sEt .paragraphs-wrapper .first-paragraph,
.cid-rzMgJD6sEt .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-rzMgJD6sEt .image-element {
    padding-bottom: 1rem;
  }
  .cid-rzMgJD6sEt .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rzMgJD6sEt .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-rzMgJD6sEt .paragraphs-wrapper .first-paragraph,
  .cid-rzMgJD6sEt .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-rzMgJD6sEt .first-paragraph,
  .cid-rzMgJD6sEt .second-paragraph {
    width: 50%;
  }
  .cid-rzMgJD6sEt .first-paragraph {
    padding-right: .5rem;
  }
  .cid-rzMgJD6sEt .second-paragraph {
    padding-left: .5rem;
  }
  .cid-rzMgJD6sEt .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-rzMgJD6sEt .mbr-section-title,
  .cid-rzMgJD6sEt .mbr-section-btn {
    text-align: left;
  }
}
.cid-rzMgJD6sEt .mbr-text,
.cid-rzMgJD6sEt .mbr-section-btn {
  color: #ffffff;
}
.cid-rzMgL0Khyt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rzMgL0Khyt .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-rzMgL0Khyt .card .card-img img {
  transition: all .5s;
}
.cid-rzMgL0Khyt .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rzMgL0Khyt .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rzMgL0Khyt .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMgL0Khyt .first-card {
  display: block;
}
.cid-rzMgL0Khyt .first-card .card-wrapper {
  height: 100%;
}
.cid-rzMgL0Khyt .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-rzMgL0Khyt .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rzMgL0Khyt .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rzMgL0Khyt .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rzMgL0Khyt .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rzMgL0Khyt .first-row,
.cid-rzMgL0Khyt .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rzMgL0Khyt .first-row .card .card-wrapper,
.cid-rzMgL0Khyt .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img,
.cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img img,
.cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rzMgL0Khyt .first-row,
  .cid-rzMgL0Khyt .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img,
  .cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rzMgL0Khyt .first-row .card .card-wrapper .card-img img,
  .cid-rzMgL0Khyt .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rzMgL0Khyt .first-row .caption,
.cid-rzMgL0Khyt .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-rzMgL0Khyt .first-row .caption .price,
.cid-rzMgL0Khyt .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-rzMgL0Khyt .first-row {
  padding-bottom: 1rem;
}
.cid-rzMgL0Khyt .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rzMgL0Khyt .first-card,
  .cid-rzMgL0Khyt .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-rzMgL0Khyt .first-card {
    padding-bottom: 2rem;
  }
  .cid-rzMgL0Khyt .only-first-row {
    height: 100%;
  }
}
.cid-ul0wDgKVKg .modal-body .close {
  background: #1b1b1b;
}
.cid-ul0wDgKVKg .modal-body .close span {
  font-style: normal;
}
.cid-ul0wDgKVKg .carousel-inner > .active,
.cid-ul0wDgKVKg .carousel-inner > .next,
.cid-ul0wDgKVKg .carousel-inner > .prev {
  display: flex;
}
.cid-ul0wDgKVKg .carousel-control .icon-next,
.cid-ul0wDgKVKg .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-ul0wDgKVKg .carousel-control:hover {
  background: #c19b76;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ul0wDgKVKg .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ul0wDgKVKg .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-ul0wDgKVKg .boxed-slider > div {
  position: relative;
}
.cid-ul0wDgKVKg .container img {
  width: 100%;
}
.cid-ul0wDgKVKg .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-ul0wDgKVKg .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-ul0wDgKVKg .mbr-table-cell {
  padding: 0;
}
.cid-ul0wDgKVKg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-ul0wDgKVKg .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ul0wDgKVKg .mbr-overlay {
  z-index: 1;
}
.cid-ul0wDgKVKg .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-ul0wDgKVKg .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-ul0wDgKVKg .carousel-item.active.right,
.cid-ul0wDgKVKg .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-ul0wDgKVKg .carousel-item.active.left,
.cid-ul0wDgKVKg .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-ul0wDgKVKg .carousel-item.active,
.cid-ul0wDgKVKg .carousel-item.next.left,
.cid-ul0wDgKVKg .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-ul0wDgKVKg .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #c19b76;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators li.active,
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators li::after,
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-ul0wDgKVKg .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-ul0wDgKVKg .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-ul0wDgKVKg .mbr-slider > .container img {
  width: 100%;
}
.cid-ul0wDgKVKg .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-ul0wDgKVKg .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-ul0wDgKVKg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ul0wDgKVKg .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-ul0wDgKVKg .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-ul0wDgKVKg .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-ul0wDgKVKg .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-ul0wDgKVKg .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-ul0wDgKVKg .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-ul0wDgKVKg .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-ul0wDgKVKg .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-ul0wDgKVKg .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-ul0wDgKVKg .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-rzMgTEX4qU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rzMgTEX4qU .wrapper {
  overflow: hidden;
}
.cid-rzMgTEX4qU .wrapper img {
  transition: all .5s;
}
.cid-rzMgTEX4qU .wrapper:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rzMgTEX4qU .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMgTEX4qU .wrapper {
  position: relative;
  padding: 2rem;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 25rem;
}
.cid-rzMgTEX4qU .wrapper .mbr-overlay {
  background: #000000;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}
.cid-rzMgTEX4qU .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rzMgTEX4qU .wrapper .content-block {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-rzMgTEX4qU .first-row-card {
    padding-bottom: 2rem;
  }
}
.cid-ul0h7icfwl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f2;
}
.cid-ul0h7icfwl .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul0h7icfwl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ul0h7icfwl .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ul0h7icfwl .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-ul0h7icfwl .items-wrapper {
  margin: 0 -10px;
}
.cid-ul0h7icfwl .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-ul0h7icfwl .item {
    margin-bottom: 16px;
  }
}
.cid-ul0h7icfwl .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-ul0h7icfwl .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-ul0h7icfwl .item:hover .item-wrapper .item-content .item-img,
.cid-ul0h7icfwl .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-ul0h7icfwl .item:nth-child(2n) .item-wrapper {
  background-color: #ffe2d4;
}
.cid-ul0h7icfwl .item:nth-child(3n) .item-wrapper {
  background-color: #ff8576;
}
.cid-ul0h7icfwl .item:nth-child(4n) .item-wrapper {
  background-color: #eaffbf;
}
.cid-ul0h7icfwl .item:nth-child(6n) .item-wrapper {
  background-color: #d2f2f5;
}
.cid-ul0h7icfwl .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #ffb849;
}
@media (max-width: 992px) {
  .cid-ul0h7icfwl .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-ul0h7icfwl .item .item-wrapper .item-content {
  position: relative;
}
.cid-ul0h7icfwl .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-ul0h7icfwl .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-ul0h7icfwl .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-ul0h7icfwl .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-ul0h7icfwl .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-ul0h7icfwl .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-ul0h7icfwl .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-ul0h7icfwl .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-ul0h7icfwl .mbr-section-title {
  color: #212529;
}
.cid-ul0h7icfwl .panel-title-edit {
  color: #212529;
}
.cid-ul0h7icfwl .panel-text {
  color: #51565c;
}
.cid-ul0z9mq6Pq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ul0z9mq6Pq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul0z9mq6Pq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ul0z9mq6Pq .container {
    padding: 0 22px;
  }
}
.cid-ul0z9mq6Pq .card {
  justify-content: center;
}
.cid-ul0z9mq6Pq .content-wrapper {
  padding-left: 34px;
}
@media (max-width: 992px) {
  .cid-ul0z9mq6Pq .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ul0z9mq6Pq .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ul0z9mq6Pq .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-ul0z9mq6Pq .box {
  padding-right: 84px;
}
@media (max-width: 992px) {
  .cid-ul0z9mq6Pq .box {
    padding: 0;
  }
}
.cid-ul0z9mq6Pq .box .mbr-media {
  position: relative;
  height: 480px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ul0z9mq6Pq .box .mbr-media {
    height: 350px;
  }
}
.cid-ul0z9mq6Pq .box .mbr-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vh;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-ul0z9mq6Pq .box .mbr-media .mbr-iconfont {
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
}
.cid-ul0z9mq6Pq .mbr-media {
  position: relative;
}
.cid-ul0z9mq6Pq .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-ul0z9mq6Pq a:hover {
  background-image: none !important;
}
.cid-ul0z9mq6Pq .icon-wrap {
  right: 40px;
  bottom: 40px;
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  background-color: #00d0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-ul0z9mq6Pq .icon-wrap {
    right: 20px;
    bottom: 20px;
  }
}
.cid-ul0z9mq6Pq .icon-wrap:hover,
.cid-ul0z9mq6Pq .icon-wrap:focus {
  background-color: #000000;
}
.cid-ul0z9mq6Pq .icon-wrap:hover .mbr-iconfont,
.cid-ul0z9mq6Pq .icon-wrap:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-ul0z9mq6Pq .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-ul0z9mq6Pq .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ul0z9mq6Pq .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ul0z9mq6Pq .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ul0z9mq6Pq .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ul0z9mq6Pq .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ul0z9mq6Pq .mbr-section-title {
  color: #ffffff;
}
.cid-ul0z9mq6Pq .mbr-text {
  color: #ffffff;
}
.cid-ul0kvkEmLR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ul0kvkEmLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul0kvkEmLR .col-12 {
  padding: 0;
}
.cid-ul0kvkEmLR .row {
  margin: 0;
}
.cid-ul0kvkEmLR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-ul0kvkEmLR .card-margin {
    margin-top: -1px;
  }
}
.cid-ul0kvkEmLR .card-wrapper {
  min-height: 500px;
  border: 1px solid #c19b76;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-ul0kvkEmLR .card-wrapper {
    padding: 1rem;
  }
}
.cid-ul0kvkEmLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ul0kvkEmLR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-ul0kvkEmLR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-ul0kvkEmLR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-ul0kvkEmLR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-ul0kvkEmLR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-ul0kvkEmLR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ul0kvkEmLR .image-wrapper {
    padding: 1rem;
  }
}
.cid-ul0kvkEmLR .mbr-section-title {
  color: #221b35;
}
.cid-ul0kvkEmLR .mbr-text,
.cid-ul0kvkEmLR .mbr-section-btn {
  color: #221b35;
}
.cid-rzMh4wFu1L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rzMh4wFu1L .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rzMh4wFu1L .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rzMh4wFu1L .title {
    width: 100% !important;
  }
}
.cid-rzMgZGPH0E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzMgZGPH0E .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-rzMgZGPH0E .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-rzMi9iV35M {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-rzMi9iV35M .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-rzMi9iV35M .first-column .mbr-text {
  margin: 0;
}
.cid-rzMi9iV35M .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-rzMi9iV35M .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-rzMi9iV35M .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-rzMi9iV35M .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-rzMi9iV35M .form-group {
  max-width: 55%;
}
.cid-rzMi9iV35M .form-group,
.cid-rzMi9iV35M .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-rzMi9iV35M .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-rzMi9iV35M .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-rzMi9iV35M .first-column,
  .cid-rzMi9iV35M .second-column {
    padding-bottom: 2rem;
  }
  .cid-rzMi9iV35M .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rzMi9iV35M .first-column,
  .cid-rzMi9iV35M .second-column,
  .cid-rzMi9iV35M .third-column {
    text-align: center;
  }
  .cid-rzMi9iV35M .input-group-btn .btn {
    padding: .6rem 1rem !important;
  }
}
.cid-rzMi9GHrgW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ul7XIRCE4M .nav-item:focus,
.cid-ul7XIRCE4M .nav-link:focus {
  outline: none;
}
.cid-ul7XIRCE4M a.nav-link:focus {
  color: #ffffff !important;
}
.cid-ul7XIRCE4M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #303a79;
}
.cid-ul7XIRCE4M .navbar.opened {
  transition: all .3s;
  background: #303a79 !important;
}
.cid-ul7XIRCE4M .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-ul7XIRCE4M .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ul7XIRCE4M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ul7XIRCE4M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ul7XIRCE4M .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ul7XIRCE4M .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-ul7XIRCE4M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ul7XIRCE4M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ul7XIRCE4M .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-ul7XIRCE4M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ul7XIRCE4M .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-ul7XIRCE4M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ul7XIRCE4M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-ul7XIRCE4M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ul7XIRCE4M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ul7XIRCE4M .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-ul7XIRCE4M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ul7XIRCE4M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ul7XIRCE4M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ul7XIRCE4M .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-ul7XIRCE4M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ul7XIRCE4M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ul7XIRCE4M .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-ul7XIRCE4M .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-ul7XIRCE4M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ul7XIRCE4M .navbar.navbar-short {
  background: #303a79 !important;
  min-height: 60px;
}
.cid-ul7XIRCE4M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ul7XIRCE4M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ul7XIRCE4M .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ul7XIRCE4M .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-ul7XIRCE4M .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-ul7XIRCE4M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ul7XIRCE4M .dropdown-item.active,
.cid-ul7XIRCE4M .dropdown-item:active {
  background-color: transparent;
}
.cid-ul7XIRCE4M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ul7XIRCE4M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ul7XIRCE4M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ul7XIRCE4M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-ul7XIRCE4M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-ul7XIRCE4M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ul7XIRCE4M ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ul7XIRCE4M .navbar-buttons {
  text-align: center;
}
.cid-ul7XIRCE4M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ul7XIRCE4M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ul7XIRCE4M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ul7XIRCE4M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ul7XIRCE4M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ul7XIRCE4M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ul7XIRCE4M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ul7XIRCE4M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ul7XIRCE4M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ul7XIRCE4M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ul7XIRCE4M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ul7XIRCE4M a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-ul7XIRCE4M .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ul7XIRCE4M .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-ul7XIRCE4M .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-ul7XIRCE4M .nav-link:hover,
.cid-ul7XIRCE4M .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-ul7XIRCE4M .dropdown-item:hover {
  color: #878787 !important;
}
.cid-ul7XIRCE4M .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-ul7XIRCE4M .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-ul7XIRCE4M .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-ul7XIRCE4M .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-ul7XIRCE4M .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-ul7XIRCE4M .dropdown-menu {
    top: 100%;
  }
  .cid-ul7XIRCE4M .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-ul7XIRCE4M .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-ul7XIRCE4M .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-ul7XIRCE4M .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-ul7XITFAsN {
  z-index: 1;
  background-image: url("../../../assets/images/20240831-111017-2000x1126.jpg");
}
.cid-ul7XITFAsN .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-ul7XITFAsN .mbr-arrow i {
  color: #ffffff !important;
}
.cid-ul7XITFAsN .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ul7XITFAsN .input-wrap {
  background: #fcfcfc;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-ul7XITFAsN .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-ul7XITFAsN .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-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-ul7XITFAsN .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-ul7XITFAsN .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-ul7XITFAsN .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  line-height: 18px;
  margin: 0;
  font-weight: 300;
}
.cid-ul7XITFAsN .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-ul7XITFAsN .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-ul7XITFAsN .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-ul7XITFAsN .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-ul7XITFAsN .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-ul7XITFAsN .check-in-input,
.cid-ul7XITFAsN .check-out-input,
.cid-ul7XITFAsN .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-ul7XITFAsN .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-ul7XITFAsN .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-ul7XITFAsN .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-ul7XITFAsN .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-ul7XITFAsN .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-ul7XITFAsN .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-ul7XITFAsN .datepicker {
    left: 10% !important;
  }
}
.cid-ul7XIVM3DV {
  padding-top: 45px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-ul7XIVM3DV .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul7XIVM3DV .mbr-section-title,
.cid-ul7XIVM3DV .mbr-section-subtitle,
.cid-ul7XIVM3DV .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ul7XIVM3DV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ul7XIVM3DV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ul7XIVM3DV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ul7XIVM3DV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ul7XIVM3DV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-ul7XIVM3DV .icon-focus {
  display: none;
}
.cid-ul7XIVM3DV .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ul7XIVM3DV ul {
  font-size: 0;
}
.cid-ul7XIVM3DV .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-ul7XIVM3DV .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-ul7XIVM3DV .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-ul7XIVM3DV .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-ul7XIVM3DV .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-ul7XIVM3DV .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ul7XIVM3DV .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-ul7XIVM3DV .btn:hover {
  background: transparent !important;
}
.cid-ul7XIVM3DV .btn:hover:before {
  background: transparent !important;
}
.cid-ul7XIVM3DV .btn:before {
  background-color: transparent !important;
}
.cid-ul7XIVM3DV .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-uneqZ30VvP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uneqZ30VvP .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-uneqZ30VvP .card .card-img img {
  transition: all .5s;
}
.cid-uneqZ30VvP .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-uneqZ30VvP .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-uneqZ30VvP .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-uneqZ30VvP .first-card {
  display: block;
}
.cid-uneqZ30VvP .first-card .card-wrapper {
  height: 100%;
}
.cid-uneqZ30VvP .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-uneqZ30VvP .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uneqZ30VvP .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-uneqZ30VvP .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-uneqZ30VvP .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-uneqZ30VvP .first-row,
.cid-uneqZ30VvP .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-uneqZ30VvP .first-row .card .card-wrapper,
.cid-uneqZ30VvP .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-uneqZ30VvP .first-row .card .card-wrapper .card-img,
.cid-uneqZ30VvP .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-uneqZ30VvP .first-row .card .card-wrapper .card-img img,
.cid-uneqZ30VvP .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-uneqZ30VvP .first-row,
  .cid-uneqZ30VvP .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uneqZ30VvP .first-row .card .card-wrapper .card-img,
  .cid-uneqZ30VvP .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uneqZ30VvP .first-row .card .card-wrapper .card-img img,
  .cid-uneqZ30VvP .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-uneqZ30VvP .first-row .caption,
.cid-uneqZ30VvP .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-uneqZ30VvP .first-row .caption .price,
.cid-uneqZ30VvP .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-uneqZ30VvP .first-row {
  padding-bottom: 1rem;
}
.cid-uneqZ30VvP .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uneqZ30VvP .first-card,
  .cid-uneqZ30VvP .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uneqZ30VvP .first-card {
    padding-bottom: 2rem;
  }
  .cid-uneqZ30VvP .only-first-row {
    height: 100%;
  }
}
.cid-uner6qLEfy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-uner6qLEfy .item:focus,
.cid-uner6qLEfy span:focus {
  outline: none;
}
.cid-uner6qLEfy .item-wrapper {
  position: relative;
}
.cid-uner6qLEfy .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uner6qLEfy .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uner6qLEfy .container {
    padding: 0 24px;
  }
}
.cid-uner6qLEfy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
  border-right: 1px solid #72716b;
  padding: 0 32px;
}
.cid-uner6qLEfy .embla__slide:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .cid-uner6qLEfy .embla__slide {
    min-width: 100%;
    max-width: 100%;
    border: none;
    padding: 0 24px;
  }
}
.cid-uner6qLEfy .embla__slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.cid-uner6qLEfy .embla__slide .slide-content:hover .item-wrapper .item-img,
.cid-uner6qLEfy .embla__slide .slide-content:focus .item-wrapper .item-img {
  min-height: 620px;
}
@media (max-width: 767px) {
  .cid-uner6qLEfy .embla__slide .slide-content:hover .item-wrapper .item-img,
  .cid-uner6qLEfy .embla__slide .slide-content:focus .item-wrapper .item-img {
    min-height: 400px;
  }
}
.cid-uner6qLEfy .embla__slide .slide-content:hover .item-wrapper .item-content .item-text,
.cid-uner6qLEfy .embla__slide .slide-content:focus .item-wrapper .item-content .item-text {
  transform: translateY(0);
  height: auto;
  opacity: 1;
}
.cid-uner6qLEfy .embla__slide .slide-content:hover .btn-wrap,
.cid-uner6qLEfy .embla__slide .slide-content:focus .btn-wrap {
  margin-top: 0;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 650px;
  margin-bottom: 32px;
  transition: all 0.3s ease-in-out;
  border-radius: .5rem;
}
@media (max-width: 767px) {
  .cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img {
    min-height: 400px;
    margin-bottom: 24px;
  }
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img img {
  transform: scale(1.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img .list-wrapper {
  display: block;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap {
  background-color: #8aa29e;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 8px;
  width: fit-content;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid #72716b;
  padding-top: 32px;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content .mbr-date {
  margin-bottom: 0;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content .title-wrap {
  display: block;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content .title-wrap:hover .item-title,
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content .title-wrap:focus .item-title {
  color: #e0b548;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-uner6qLEfy .embla__slide .slide-content .item-wrapper .item-content .item-text {
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  opacity: 0;
}
.cid-uner6qLEfy .embla__slide .slide-content .btn-wrap {
  margin-top: -3rem;
  transition: all 0.3s ease-in-out;
}
.cid-uner6qLEfy .embla__slide .slide-content .btn-wrap .mbr-section-btn {
  margin-top: 24px;
  z-index: 1;
}
.cid-uner6qLEfy .embla__slide .slide-content .btn-wrap .mbr-number {
  margin: 16px 0 0 0;
}
.cid-uner6qLEfy .embla__button--next,
.cid-uner6qLEfy .embla__button--prev {
  display: flex;
}
.cid-uner6qLEfy .embla__button {
  bottom: 1rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #333333 !important;
  color: #92bda3;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uner6qLEfy .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uner6qLEfy .embla__button:hover {
  opacity: .85 !important;
  color: #c19b76 !important;
}
.cid-uner6qLEfy .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uner6qLEfy .embla__button.embla__button--next {
  right: 32px;
}
.cid-uner6qLEfy .embla {
  position: relative;
  width: 100%;
  padding: 32px 0;
  border-top: 1px solid #72716b;
  border-bottom: 1px solid #72716b;
}
@media (max-width: 767px) {
  .cid-uner6qLEfy .embla {
    padding: 24px 0;
  }
}
.cid-uner6qLEfy .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uner6qLEfy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uner6qLEfy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uner6qLEfy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uner6qLEfy .list {
  color: #000000;
}
.cid-uner6qLEfy .mbr-date {
  color: #F9F6E0;
}
.cid-uner6qLEfy .item-title {
  color: #F9F6E0;
}
.cid-uner6qLEfy .item-text {
  color: #F9F6E0;
}
.cid-uner6qLEfy .mbr-number {
  color: #E0B548;
}
.cid-uner0VH6gV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f2;
}
.cid-uner0VH6gV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uner0VH6gV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uner0VH6gV .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uner0VH6gV .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uner0VH6gV .items-wrapper {
  margin: 0 -10px;
}
.cid-uner0VH6gV .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uner0VH6gV .item {
    margin-bottom: 16px;
  }
}
.cid-uner0VH6gV .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uner0VH6gV .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uner0VH6gV .item:hover .item-wrapper .item-content .item-img,
.cid-uner0VH6gV .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uner0VH6gV .item:nth-child(2n) .item-wrapper {
  background-color: #ffe2d4;
}
.cid-uner0VH6gV .item:nth-child(3n) .item-wrapper {
  background-color: #ff8576;
}
.cid-uner0VH6gV .item:nth-child(4n) .item-wrapper {
  background-color: #eaffbf;
}
.cid-uner0VH6gV .item:nth-child(6n) .item-wrapper {
  background-color: #d2f2f5;
}
.cid-uner0VH6gV .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #ffb849;
}
@media (max-width: 992px) {
  .cid-uner0VH6gV .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uner0VH6gV .item .item-wrapper .item-content {
  position: relative;
}
.cid-uner0VH6gV .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uner0VH6gV .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-uner0VH6gV .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uner0VH6gV .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uner0VH6gV .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uner0VH6gV .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uner0VH6gV .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uner0VH6gV .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uner0VH6gV .mbr-section-title {
  color: #212529;
}
.cid-uner0VH6gV .panel-title-edit {
  color: #212529;
}
.cid-uner0VH6gV .panel-text {
  color: #51565c;
}
.cid-ul7XJb0Nxu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ul7XJb0Nxu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul7XJb0Nxu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ul7XJb0Nxu .container {
    padding: 0 22px;
  }
}
.cid-ul7XJb0Nxu .card {
  justify-content: center;
}
.cid-ul7XJb0Nxu .content-wrapper {
  padding-left: 34px;
}
@media (max-width: 992px) {
  .cid-ul7XJb0Nxu .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ul7XJb0Nxu .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ul7XJb0Nxu .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-ul7XJb0Nxu .box {
  padding-right: 84px;
}
@media (max-width: 992px) {
  .cid-ul7XJb0Nxu .box {
    padding: 0;
  }
}
.cid-ul7XJb0Nxu .box .mbr-media {
  position: relative;
  height: 480px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ul7XJb0Nxu .box .mbr-media {
    height: 350px;
  }
}
.cid-ul7XJb0Nxu .box .mbr-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vh;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-ul7XJb0Nxu .box .mbr-media .mbr-iconfont {
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
}
.cid-ul7XJb0Nxu .mbr-media {
  position: relative;
}
.cid-ul7XJb0Nxu .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-ul7XJb0Nxu a:hover {
  background-image: none !important;
}
.cid-ul7XJb0Nxu .icon-wrap {
  right: 40px;
  bottom: 40px;
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  background-color: #00d0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-ul7XJb0Nxu .icon-wrap {
    right: 20px;
    bottom: 20px;
  }
}
.cid-ul7XJb0Nxu .icon-wrap:hover,
.cid-ul7XJb0Nxu .icon-wrap:focus {
  background-color: #000000;
}
.cid-ul7XJb0Nxu .icon-wrap:hover .mbr-iconfont,
.cid-ul7XJb0Nxu .icon-wrap:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-ul7XJb0Nxu .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-ul7XJb0Nxu .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ul7XJb0Nxu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ul7XJb0Nxu .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ul7XJb0Nxu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ul7XJb0Nxu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ul7XJb0Nxu .mbr-section-title {
  color: #ffffff;
}
.cid-ul7XJb0Nxu .mbr-text {
  color: #ffffff;
}
.cid-ul7XJcIZfR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ul7XJcIZfR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul7XJcIZfR .col-12 {
  padding: 0;
}
.cid-ul7XJcIZfR .row {
  margin: 0;
}
.cid-ul7XJcIZfR .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-ul7XJcIZfR .card-margin {
    margin-top: -1px;
  }
}
.cid-ul7XJcIZfR .card-wrapper {
  min-height: 500px;
  border: 1px solid #c19b76;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-ul7XJcIZfR .card-wrapper {
    padding: 1rem;
  }
}
.cid-ul7XJcIZfR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ul7XJcIZfR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-ul7XJcIZfR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-ul7XJcIZfR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-ul7XJcIZfR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-ul7XJcIZfR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-ul7XJcIZfR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ul7XJcIZfR .image-wrapper {
    padding: 1rem;
  }
}
.cid-ul7XJcIZfR .mbr-section-title {
  color: #221b35;
}
.cid-ul7XJcIZfR .mbr-text,
.cid-ul7XJcIZfR .mbr-section-btn {
  color: #221b35;
}
.cid-ul7XJdZWKS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ul7XJdZWKS .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul7XJdZWKS .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-ul7XJdZWKS .title {
    width: 100% !important;
  }
}
.cid-ul7XJf6Lis {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ul7XJf6Lis .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-ul7XJf6Lis .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-ul7XJgna9X {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-ul7XJgna9X .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-ul7XJgna9X .first-column .mbr-text {
  margin: 0;
}
.cid-ul7XJgna9X .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-ul7XJgna9X .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-ul7XJgna9X .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-ul7XJgna9X .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-ul7XJgna9X .form-group {
  max-width: 55%;
}
.cid-ul7XJgna9X .form-group,
.cid-ul7XJgna9X .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-ul7XJgna9X .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-ul7XJgna9X .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-ul7XJgna9X .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-ul7XJgna9X .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-ul7XJgna9X .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-ul7XJgna9X .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-ul7XJgna9X .first-column,
  .cid-ul7XJgna9X .second-column {
    padding-bottom: 2rem;
  }
  .cid-ul7XJgna9X .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-ul7XJgna9X .first-column,
  .cid-ul7XJgna9X .second-column,
  .cid-ul7XJgna9X .third-column {
    text-align: center;
  }
  .cid-ul7XJgna9X .input-group-btn .btn {
    padding: .6rem 1rem !important;
  }
}
.cid-ul7XJigYht {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ul88MU5MqD .nav-item:focus,
.cid-ul88MU5MqD .nav-link:focus {
  outline: none;
}
.cid-ul88MU5MqD a.nav-link:focus {
  color: #ffffff !important;
}
.cid-ul88MU5MqD .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #303a79;
}
.cid-ul88MU5MqD .navbar.opened {
  transition: all .3s;
  background: #303a79 !important;
}
.cid-ul88MU5MqD .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-ul88MU5MqD .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ul88MU5MqD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ul88MU5MqD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ul88MU5MqD .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ul88MU5MqD .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-ul88MU5MqD .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ul88MU5MqD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ul88MU5MqD .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-ul88MU5MqD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ul88MU5MqD .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-ul88MU5MqD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ul88MU5MqD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-ul88MU5MqD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ul88MU5MqD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ul88MU5MqD .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-ul88MU5MqD .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ul88MU5MqD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ul88MU5MqD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ul88MU5MqD .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-ul88MU5MqD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ul88MU5MqD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ul88MU5MqD .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-ul88MU5MqD .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-ul88MU5MqD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ul88MU5MqD .navbar.navbar-short {
  background: #303a79 !important;
  min-height: 60px;
}
.cid-ul88MU5MqD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ul88MU5MqD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ul88MU5MqD .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ul88MU5MqD .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-ul88MU5MqD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-ul88MU5MqD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ul88MU5MqD .dropdown-item.active,
.cid-ul88MU5MqD .dropdown-item:active {
  background-color: transparent;
}
.cid-ul88MU5MqD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ul88MU5MqD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ul88MU5MqD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ul88MU5MqD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-ul88MU5MqD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-ul88MU5MqD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ul88MU5MqD ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ul88MU5MqD .navbar-buttons {
  text-align: center;
}
.cid-ul88MU5MqD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ul88MU5MqD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ul88MU5MqD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ul88MU5MqD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ul88MU5MqD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ul88MU5MqD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ul88MU5MqD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ul88MU5MqD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ul88MU5MqD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ul88MU5MqD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ul88MU5MqD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ul88MU5MqD a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-ul88MU5MqD .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ul88MU5MqD .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-ul88MU5MqD .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-ul88MU5MqD .nav-link:hover,
.cid-ul88MU5MqD .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-ul88MU5MqD .dropdown-item:hover {
  color: #878787 !important;
}
.cid-ul88MU5MqD .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-ul88MU5MqD .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-ul88MU5MqD .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-ul88MU5MqD .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-ul88MU5MqD .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-ul88MU5MqD .dropdown-menu {
    top: 100%;
  }
  .cid-ul88MU5MqD .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-ul88MU5MqD .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-ul88MU5MqD .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-ul88MU5MqD .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-ul88MW8l4o {
  z-index: 1;
  background-image: url("../../../assets/images/20240831-111028-2000x1126.jpg");
}
.cid-ul88MW8l4o .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-ul88MW8l4o .mbr-arrow i {
  color: #ffffff !important;
}
.cid-ul88MW8l4o .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ul88MW8l4o .input-wrap {
  background: #fcfcfc;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-ul88MW8l4o .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-ul88MW8l4o .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-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-ul88MW8l4o .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-ul88MW8l4o .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-ul88MW8l4o .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  line-height: 18px;
  margin: 0;
  font-weight: 300;
}
.cid-ul88MW8l4o .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-ul88MW8l4o .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-ul88MW8l4o .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-ul88MW8l4o .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-ul88MW8l4o .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-ul88MW8l4o .check-in-input,
.cid-ul88MW8l4o .check-out-input,
.cid-ul88MW8l4o .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-ul88MW8l4o .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-ul88MW8l4o .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-ul88MW8l4o .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-ul88MW8l4o .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-ul88MW8l4o .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-ul88MW8l4o .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-ul88MW8l4o .datepicker {
    left: 10% !important;
  }
}
.cid-ul88MY1w0Z {
  padding-top: 45px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-ul88MY1w0Z .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul88MY1w0Z .mbr-section-title,
.cid-ul88MY1w0Z .mbr-section-subtitle,
.cid-ul88MY1w0Z .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ul88MY1w0Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ul88MY1w0Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ul88MY1w0Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ul88MY1w0Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ul88MY1w0Z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-ul88MY1w0Z .icon-focus {
  display: none;
}
.cid-ul88MY1w0Z .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ul88MY1w0Z ul {
  font-size: 0;
}
.cid-ul88MY1w0Z .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-ul88MY1w0Z .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-ul88MY1w0Z .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-ul88MY1w0Z .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-ul88MY1w0Z .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-ul88MY1w0Z .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ul88MY1w0Z .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-ul88MY1w0Z .btn:hover {
  background: transparent !important;
}
.cid-ul88MY1w0Z .btn:hover:before {
  background: transparent !important;
}
.cid-ul88MY1w0Z .btn:before {
  background-color: transparent !important;
}
.cid-ul88MY1w0Z .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-unerqj6zvw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-unerqj6zvw .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-unerqj6zvw .card .card-img img {
  transition: all .5s;
}
.cid-unerqj6zvw .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-unerqj6zvw .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-unerqj6zvw .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-unerqj6zvw .first-card {
  display: block;
}
.cid-unerqj6zvw .first-card .card-wrapper {
  height: 100%;
}
.cid-unerqj6zvw .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-unerqj6zvw .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-unerqj6zvw .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-unerqj6zvw .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-unerqj6zvw .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-unerqj6zvw .first-row,
.cid-unerqj6zvw .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-unerqj6zvw .first-row .card .card-wrapper,
.cid-unerqj6zvw .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-unerqj6zvw .first-row .card .card-wrapper .card-img,
.cid-unerqj6zvw .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-unerqj6zvw .first-row .card .card-wrapper .card-img img,
.cid-unerqj6zvw .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-unerqj6zvw .first-row,
  .cid-unerqj6zvw .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-unerqj6zvw .first-row .card .card-wrapper .card-img,
  .cid-unerqj6zvw .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-unerqj6zvw .first-row .card .card-wrapper .card-img img,
  .cid-unerqj6zvw .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-unerqj6zvw .first-row .caption,
.cid-unerqj6zvw .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-unerqj6zvw .first-row .caption .price,
.cid-unerqj6zvw .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-unerqj6zvw .first-row {
  padding-bottom: 1rem;
}
.cid-unerqj6zvw .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-unerqj6zvw .first-card,
  .cid-unerqj6zvw .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-unerqj6zvw .first-card {
    padding-bottom: 2rem;
  }
  .cid-unerqj6zvw .only-first-row {
    height: 100%;
  }
}
.cid-unerrMQ6lQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-2.jpg");
}
.cid-unerrMQ6lQ .item:focus,
.cid-unerrMQ6lQ span:focus {
  outline: none;
}
.cid-unerrMQ6lQ .item-wrapper {
  position: relative;
}
.cid-unerrMQ6lQ .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-unerrMQ6lQ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-unerrMQ6lQ .container {
    padding: 0 24px;
  }
}
.cid-unerrMQ6lQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
  border-right: 1px solid #72716b;
  padding: 0 32px;
}
.cid-unerrMQ6lQ .embla__slide:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .cid-unerrMQ6lQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
    border: none;
    padding: 0 24px;
  }
}
.cid-unerrMQ6lQ .embla__slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.cid-unerrMQ6lQ .embla__slide .slide-content:hover .item-wrapper .item-img,
.cid-unerrMQ6lQ .embla__slide .slide-content:focus .item-wrapper .item-img {
  min-height: 620px;
}
@media (max-width: 767px) {
  .cid-unerrMQ6lQ .embla__slide .slide-content:hover .item-wrapper .item-img,
  .cid-unerrMQ6lQ .embla__slide .slide-content:focus .item-wrapper .item-img {
    min-height: 400px;
  }
}
.cid-unerrMQ6lQ .embla__slide .slide-content:hover .item-wrapper .item-content .item-text,
.cid-unerrMQ6lQ .embla__slide .slide-content:focus .item-wrapper .item-content .item-text {
  transform: translateY(0);
  height: auto;
  opacity: 1;
}
.cid-unerrMQ6lQ .embla__slide .slide-content:hover .btn-wrap,
.cid-unerrMQ6lQ .embla__slide .slide-content:focus .btn-wrap {
  margin-top: 0;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 650px;
  margin-bottom: 32px;
  transition: all 0.3s ease-in-out;
  border-radius: .5rem;
}
@media (max-width: 767px) {
  .cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img {
    min-height: 400px;
    margin-bottom: 24px;
  }
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img img {
  transform: scale(1.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img .list-wrapper {
  display: block;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap {
  background-color: #8aa29e;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 8px;
  width: fit-content;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid #72716b;
  padding-top: 32px;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content .mbr-date {
  margin-bottom: 0;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content .title-wrap {
  display: block;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content .title-wrap:hover .item-title,
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content .title-wrap:focus .item-title {
  color: #e0b548;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .item-wrapper .item-content .item-text {
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  opacity: 0;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .btn-wrap {
  margin-top: -3rem;
  transition: all 0.3s ease-in-out;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .btn-wrap .mbr-section-btn {
  margin-top: 24px;
  z-index: 1;
}
.cid-unerrMQ6lQ .embla__slide .slide-content .btn-wrap .mbr-number {
  margin: 16px 0 0 0;
}
.cid-unerrMQ6lQ .embla__button--next,
.cid-unerrMQ6lQ .embla__button--prev {
  display: flex;
}
.cid-unerrMQ6lQ .embla__button {
  bottom: 1rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #333333 !important;
  color: #92bda3;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-unerrMQ6lQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-unerrMQ6lQ .embla__button:hover {
  opacity: .85 !important;
  color: #c19b76 !important;
}
.cid-unerrMQ6lQ .embla__button.embla__button--prev {
  left: 32px;
}
.cid-unerrMQ6lQ .embla__button.embla__button--next {
  right: 32px;
}
.cid-unerrMQ6lQ .embla {
  position: relative;
  width: 100%;
  padding: 32px 0;
  border-top: 1px solid #72716b;
  border-bottom: 1px solid #72716b;
}
@media (max-width: 767px) {
  .cid-unerrMQ6lQ .embla {
    padding: 24px 0;
  }
}
.cid-unerrMQ6lQ .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-unerrMQ6lQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-unerrMQ6lQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-unerrMQ6lQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-unerrMQ6lQ .list {
  color: #000000;
}
.cid-unerrMQ6lQ .mbr-date {
  color: #F9F6E0;
}
.cid-unerrMQ6lQ .item-title {
  color: #F9F6E0;
}
.cid-unerrMQ6lQ .item-text {
  color: #F9F6E0;
}
.cid-unerrMQ6lQ .mbr-number {
  color: #E0B548;
}
.cid-unersVsOyu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f2;
}
.cid-unersVsOyu .mbr-fallback-image.disabled {
  display: none;
}
.cid-unersVsOyu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unersVsOyu .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-unersVsOyu .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-unersVsOyu .items-wrapper {
  margin: 0 -10px;
}
.cid-unersVsOyu .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-unersVsOyu .item {
    margin-bottom: 16px;
  }
}
.cid-unersVsOyu .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-unersVsOyu .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-unersVsOyu .item:hover .item-wrapper .item-content .item-img,
.cid-unersVsOyu .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-unersVsOyu .item:nth-child(2n) .item-wrapper {
  background-color: #ffe2d4;
}
.cid-unersVsOyu .item:nth-child(3n) .item-wrapper {
  background-color: #ff8576;
}
.cid-unersVsOyu .item:nth-child(4n) .item-wrapper {
  background-color: #eaffbf;
}
.cid-unersVsOyu .item:nth-child(6n) .item-wrapper {
  background-color: #d2f2f5;
}
.cid-unersVsOyu .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #ffb849;
}
@media (max-width: 992px) {
  .cid-unersVsOyu .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-unersVsOyu .item .item-wrapper .item-content {
  position: relative;
}
.cid-unersVsOyu .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-unersVsOyu .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-unersVsOyu .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-unersVsOyu .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-unersVsOyu .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-unersVsOyu .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-unersVsOyu .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-unersVsOyu .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-unersVsOyu .mbr-section-title {
  color: #212529;
}
.cid-unersVsOyu .panel-title-edit {
  color: #212529;
}
.cid-unersVsOyu .panel-text {
  color: #51565c;
}
.cid-ul88N6J2so {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ul88N6J2so .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul88N6J2so .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ul88N6J2so .container {
    padding: 0 22px;
  }
}
.cid-ul88N6J2so .card {
  justify-content: center;
}
.cid-ul88N6J2so .content-wrapper {
  padding-left: 34px;
}
@media (max-width: 992px) {
  .cid-ul88N6J2so .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ul88N6J2so .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ul88N6J2so .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-ul88N6J2so .box {
  padding-right: 84px;
}
@media (max-width: 992px) {
  .cid-ul88N6J2so .box {
    padding: 0;
  }
}
.cid-ul88N6J2so .box .mbr-media {
  position: relative;
  height: 480px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ul88N6J2so .box .mbr-media {
    height: 350px;
  }
}
.cid-ul88N6J2so .box .mbr-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vh;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-ul88N6J2so .box .mbr-media .mbr-iconfont {
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
}
.cid-ul88N6J2so .mbr-media {
  position: relative;
}
.cid-ul88N6J2so .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-ul88N6J2so a:hover {
  background-image: none !important;
}
.cid-ul88N6J2so .icon-wrap {
  right: 40px;
  bottom: 40px;
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  background-color: #00d0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-ul88N6J2so .icon-wrap {
    right: 20px;
    bottom: 20px;
  }
}
.cid-ul88N6J2so .icon-wrap:hover,
.cid-ul88N6J2so .icon-wrap:focus {
  background-color: #000000;
}
.cid-ul88N6J2so .icon-wrap:hover .mbr-iconfont,
.cid-ul88N6J2so .icon-wrap:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-ul88N6J2so .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-ul88N6J2so .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ul88N6J2so .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ul88N6J2so .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ul88N6J2so .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ul88N6J2so .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ul88N6J2so .mbr-section-title {
  color: #ffffff;
}
.cid-ul88N6J2so .mbr-text {
  color: #ffffff;
}
.cid-ul88N8f1YG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ul88N8f1YG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul88N8f1YG .col-12 {
  padding: 0;
}
.cid-ul88N8f1YG .row {
  margin: 0;
}
.cid-ul88N8f1YG .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-ul88N8f1YG .card-margin {
    margin-top: -1px;
  }
}
.cid-ul88N8f1YG .card-wrapper {
  min-height: 500px;
  border: 1px solid #c19b76;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-ul88N8f1YG .card-wrapper {
    padding: 1rem;
  }
}
.cid-ul88N8f1YG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ul88N8f1YG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-ul88N8f1YG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-ul88N8f1YG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-ul88N8f1YG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-ul88N8f1YG .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-ul88N8f1YG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ul88N8f1YG .image-wrapper {
    padding: 1rem;
  }
}
.cid-ul88N8f1YG .mbr-section-title {
  color: #221b35;
}
.cid-ul88N8f1YG .mbr-text,
.cid-ul88N8f1YG .mbr-section-btn {
  color: #221b35;
}
.cid-ul88N9Eg46 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ul88N9Eg46 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul88N9Eg46 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-ul88N9Eg46 .title {
    width: 100% !important;
  }
}
.cid-ul88NaIbOw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ul88NaIbOw .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-ul88NaIbOw .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-ul88NbUy5L {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-ul88NbUy5L .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-ul88NbUy5L .first-column .mbr-text {
  margin: 0;
}
.cid-ul88NbUy5L .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-ul88NbUy5L .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-ul88NbUy5L .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-ul88NbUy5L .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-ul88NbUy5L .form-group {
  max-width: 55%;
}
.cid-ul88NbUy5L .form-group,
.cid-ul88NbUy5L .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-ul88NbUy5L .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-ul88NbUy5L .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-ul88NbUy5L .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-ul88NbUy5L .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-ul88NbUy5L .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-ul88NbUy5L .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-ul88NbUy5L .first-column,
  .cid-ul88NbUy5L .second-column {
    padding-bottom: 2rem;
  }
  .cid-ul88NbUy5L .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-ul88NbUy5L .first-column,
  .cid-ul88NbUy5L .second-column,
  .cid-ul88NbUy5L .third-column {
    text-align: center;
  }
  .cid-ul88NbUy5L .input-group-btn .btn {
    padding: .6rem 1rem !important;
  }
}
.cid-ul88NdPx9U {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ul88VqNnrl .nav-item:focus,
.cid-ul88VqNnrl .nav-link:focus {
  outline: none;
}
.cid-ul88VqNnrl a.nav-link:focus {
  color: #ffffff !important;
}
.cid-ul88VqNnrl .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #303a79;
}
.cid-ul88VqNnrl .navbar.opened {
  transition: all .3s;
  background: #303a79 !important;
}
.cid-ul88VqNnrl .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-ul88VqNnrl .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-ul88VqNnrl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ul88VqNnrl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.6rem);
  }
}
.cid-ul88VqNnrl .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-ul88VqNnrl .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-ul88VqNnrl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ul88VqNnrl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ul88VqNnrl .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-ul88VqNnrl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ul88VqNnrl .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-ul88VqNnrl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ul88VqNnrl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-ul88VqNnrl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ul88VqNnrl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ul88VqNnrl .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-ul88VqNnrl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ul88VqNnrl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ul88VqNnrl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ul88VqNnrl .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-ul88VqNnrl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ul88VqNnrl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ul88VqNnrl .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-ul88VqNnrl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-ul88VqNnrl .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ul88VqNnrl .navbar.navbar-short {
  background: #303a79 !important;
  min-height: 60px;
}
.cid-ul88VqNnrl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ul88VqNnrl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ul88VqNnrl .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ul88VqNnrl .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-ul88VqNnrl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-ul88VqNnrl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ul88VqNnrl .dropdown-item.active,
.cid-ul88VqNnrl .dropdown-item:active {
  background-color: transparent;
}
.cid-ul88VqNnrl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ul88VqNnrl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ul88VqNnrl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ul88VqNnrl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-ul88VqNnrl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-ul88VqNnrl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ul88VqNnrl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ul88VqNnrl .navbar-buttons {
  text-align: center;
}
.cid-ul88VqNnrl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ul88VqNnrl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ul88VqNnrl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ul88VqNnrl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ul88VqNnrl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ul88VqNnrl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ul88VqNnrl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ul88VqNnrl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ul88VqNnrl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ul88VqNnrl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ul88VqNnrl .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ul88VqNnrl a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-ul88VqNnrl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ul88VqNnrl .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-ul88VqNnrl .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-ul88VqNnrl .nav-link:hover,
.cid-ul88VqNnrl .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-ul88VqNnrl .dropdown-item:hover {
  color: #878787 !important;
}
.cid-ul88VqNnrl .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-ul88VqNnrl .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-ul88VqNnrl .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-ul88VqNnrl .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-ul88VqNnrl .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-ul88VqNnrl .dropdown-menu {
    top: 100%;
  }
  .cid-ul88VqNnrl .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-ul88VqNnrl .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-ul88VqNnrl .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-ul88VqNnrl .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-ul88Vs3d3V {
  z-index: 1;
  background-image: url("../../../assets/images/20240831-114127-2000x1126.jpg");
}
.cid-ul88Vs3d3V .mbr-arrow {
  background: #000000 !important;
  opacity: .7;
}
.cid-ul88Vs3d3V .mbr-arrow i {
  color: #ffffff !important;
}
.cid-ul88Vs3d3V .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ul88Vs3d3V .input-wrap {
  background: #fcfcfc;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form {
  width: 100%;
}
.cid-ul88Vs3d3V .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-ul88Vs3d3V .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-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap input.guests-input {
  z-index: 0;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap input::-webkit-input-placeholder {
  color: transparent;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap input::-moz-placeholder {
  color: transparent;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap input:-moz-placeholder {
  color: transparent;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap input:-ms-input-placeholder {
  color: transparent;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap .label {
  z-index: 1;
  color: #000000;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap .date-row {
  display: inline-flex;
  color: #000000;
  z-index: 1;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap .date-row .day,
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap .date-row .guests-count {
  margin-bottom: 0;
  margin-right: 1rem;
}
.cid-ul88Vs3d3V .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-ul88Vs3d3V .booking-datepicker .mbr-form .input-wrap .date-row .date-col span:first-child {
  margin-bottom: 1rem;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .mbr-section-btn {
  width: 100%;
  display: flex;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
  display: flex;
}
.cid-ul88Vs3d3V .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
  height: 100%;
  line-height: 18px;
  margin: 0;
  font-weight: 300;
}
.cid-ul88Vs3d3V .datepicker {
  background-color: #ffffff;
  color: #000000;
}
.cid-ul88Vs3d3V .datepicker .active.day {
  background-color: #2b6477 !important;
  color: #ffffff !important;
}
.cid-ul88Vs3d3V .datepicker:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-ul88Vs3d3V .email input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px 15px;
}
.cid-ul88Vs3d3V .email input::-webkit-input-placeholder {
  font-weight: 200;
}
.cid-ul88Vs3d3V .check-in-input,
.cid-ul88Vs3d3V .check-out-input,
.cid-ul88Vs3d3V .guests .date-col span {
  cursor: pointer;
}
@media (min-width: 768px) {
  .cid-ul88Vs3d3V .booking-datepicker input:not(.guests-input):not([name="email"]) {
    border-right: 1px solid #cccccc !important;
  }
}
@media (max-width: 767px) {
  .cid-ul88Vs3d3V .booking-datepicker .mbr-form .mbr-section-btn {
    justify-content: center;
    padding: 0.5rem 0 0 0;
    margin: 0;
    order: 1;
  }
  .cid-ul88Vs3d3V .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn {
    width: 100%;
  }
  .cid-ul88Vs3d3V .booking-datepicker .mbr-form .mbr-section-btn .input-group-btn .btn {
    width: 100%;
    padding: 1rem;
  }
  .cid-ul88Vs3d3V .input-wrap {
    margin-bottom: 0.5rem;
  }
  .cid-ul88Vs3d3V .email input {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .cid-ul88Vs3d3V .datepicker {
    left: 10% !important;
  }
}
.cid-ul88Vtrfw3 {
  padding-top: 45px;
  padding-bottom: 0px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-ul88Vtrfw3 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul88Vtrfw3 .mbr-section-title,
.cid-ul88Vtrfw3 .mbr-section-subtitle,
.cid-ul88Vtrfw3 .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ul88Vtrfw3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ul88Vtrfw3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ul88Vtrfw3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ul88Vtrfw3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ul88Vtrfw3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-ul88Vtrfw3 .icon-focus {
  display: none;
}
.cid-ul88Vtrfw3 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-ul88Vtrfw3 ul {
  font-size: 0;
}
.cid-ul88Vtrfw3 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-ul88Vtrfw3 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-ul88Vtrfw3 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-ul88Vtrfw3 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-ul88Vtrfw3 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-ul88Vtrfw3 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-ul88Vtrfw3 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-ul88Vtrfw3 .btn:hover {
  background: transparent !important;
}
.cid-ul88Vtrfw3 .btn:hover:before {
  background: transparent !important;
}
.cid-ul88Vtrfw3 .btn:before {
  background-color: transparent !important;
}
.cid-ul88Vtrfw3 .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-ul88VvLIBm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-ul88VvLIBm .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-ul88VvLIBm .card .card-img img {
  transition: all .5s;
}
.cid-ul88VvLIBm .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-ul88VvLIBm .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-ul88VvLIBm .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul88VvLIBm .first-card {
  display: block;
}
.cid-ul88VvLIBm .first-card .card-wrapper {
  height: 100%;
}
.cid-ul88VvLIBm .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-ul88VvLIBm .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ul88VvLIBm .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-ul88VvLIBm .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-ul88VvLIBm .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-ul88VvLIBm .first-row,
.cid-ul88VvLIBm .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-ul88VvLIBm .first-row .card .card-wrapper,
.cid-ul88VvLIBm .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-ul88VvLIBm .first-row .card .card-wrapper .card-img,
.cid-ul88VvLIBm .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-ul88VvLIBm .first-row .card .card-wrapper .card-img img,
.cid-ul88VvLIBm .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-ul88VvLIBm .first-row,
  .cid-ul88VvLIBm .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ul88VvLIBm .first-row .card .card-wrapper .card-img,
  .cid-ul88VvLIBm .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ul88VvLIBm .first-row .card .card-wrapper .card-img img,
  .cid-ul88VvLIBm .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-ul88VvLIBm .first-row .caption,
.cid-ul88VvLIBm .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-ul88VvLIBm .first-row .caption .price,
.cid-ul88VvLIBm .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-ul88VvLIBm .first-row {
  padding-bottom: 1rem;
}
.cid-ul88VvLIBm .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ul88VvLIBm .first-card,
  .cid-ul88VvLIBm .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ul88VvLIBm .first-card {
    padding-bottom: 2rem;
  }
  .cid-ul88VvLIBm .only-first-row {
    height: 100%;
  }
}
.cid-ul88VxEDbE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-ul88VxEDbE .item:focus,
.cid-ul88VxEDbE span:focus {
  outline: none;
}
.cid-ul88VxEDbE .item-wrapper {
  position: relative;
}
.cid-ul88VxEDbE .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ul88VxEDbE .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ul88VxEDbE .container {
    padding: 0 24px;
  }
}
.cid-ul88VxEDbE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
  border-right: 1px solid #72716b;
  padding: 0 32px;
}
.cid-ul88VxEDbE .embla__slide:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .cid-ul88VxEDbE .embla__slide {
    min-width: 100%;
    max-width: 100%;
    border: none;
    padding: 0 24px;
  }
}
.cid-ul88VxEDbE .embla__slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.cid-ul88VxEDbE .embla__slide .slide-content:hover .item-wrapper .item-img,
.cid-ul88VxEDbE .embla__slide .slide-content:focus .item-wrapper .item-img {
  min-height: 620px;
}
@media (max-width: 767px) {
  .cid-ul88VxEDbE .embla__slide .slide-content:hover .item-wrapper .item-img,
  .cid-ul88VxEDbE .embla__slide .slide-content:focus .item-wrapper .item-img {
    min-height: 400px;
  }
}
.cid-ul88VxEDbE .embla__slide .slide-content:hover .item-wrapper .item-content .item-text,
.cid-ul88VxEDbE .embla__slide .slide-content:focus .item-wrapper .item-content .item-text {
  transform: translateY(0);
  height: auto;
  opacity: 1;
}
.cid-ul88VxEDbE .embla__slide .slide-content:hover .btn-wrap,
.cid-ul88VxEDbE .embla__slide .slide-content:focus .btn-wrap {
  margin-top: 0;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 650px;
  margin-bottom: 32px;
  transition: all 0.3s ease-in-out;
  border-radius: .5rem;
}
@media (max-width: 767px) {
  .cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img {
    min-height: 400px;
    margin-bottom: 24px;
  }
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img img {
  transform: scale(1.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img .list-wrapper {
  display: block;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap {
  background-color: #8aa29e;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 8px;
  width: fit-content;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid #72716b;
  padding-top: 32px;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content .mbr-date {
  margin-bottom: 0;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content .title-wrap {
  display: block;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content .title-wrap:hover .item-title,
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content .title-wrap:focus .item-title {
  color: #e0b548;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-ul88VxEDbE .embla__slide .slide-content .item-wrapper .item-content .item-text {
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  opacity: 0;
}
.cid-ul88VxEDbE .embla__slide .slide-content .btn-wrap {
  margin-top: -3rem;
  transition: all 0.3s ease-in-out;
}
.cid-ul88VxEDbE .embla__slide .slide-content .btn-wrap .mbr-section-btn {
  margin-top: 24px;
  z-index: 1;
}
.cid-ul88VxEDbE .embla__slide .slide-content .btn-wrap .mbr-number {
  margin: 16px 0 0 0;
}
.cid-ul88VxEDbE .embla__button--next,
.cid-ul88VxEDbE .embla__button--prev {
  display: flex;
}
.cid-ul88VxEDbE .embla__button {
  bottom: 1rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #333333 !important;
  color: #92bda3;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-ul88VxEDbE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ul88VxEDbE .embla__button:hover {
  opacity: .85 !important;
  color: #c19b76 !important;
}
.cid-ul88VxEDbE .embla__button.embla__button--prev {
  left: 32px;
}
.cid-ul88VxEDbE .embla__button.embla__button--next {
  right: 32px;
}
.cid-ul88VxEDbE .embla {
  position: relative;
  width: 100%;
  padding: 32px 0;
  border-top: 1px solid #72716b;
  border-bottom: 1px solid #72716b;
}
@media (max-width: 767px) {
  .cid-ul88VxEDbE .embla {
    padding: 24px 0;
  }
}
.cid-ul88VxEDbE .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-ul88VxEDbE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ul88VxEDbE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ul88VxEDbE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ul88VxEDbE .list {
  color: #000000;
}
.cid-ul88VxEDbE .mbr-date {
  color: #F9F6E0;
}
.cid-ul88VxEDbE .item-title {
  color: #F9F6E0;
}
.cid-ul88VxEDbE .item-text {
  color: #F9F6E0;
}
.cid-ul88VxEDbE .mbr-number {
  color: #E0B548;
}
.cid-uneqLSOVHS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f2;
}
.cid-uneqLSOVHS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uneqLSOVHS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uneqLSOVHS .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uneqLSOVHS .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-uneqLSOVHS .items-wrapper {
  margin: 0 -10px;
}
.cid-uneqLSOVHS .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uneqLSOVHS .item {
    margin-bottom: 16px;
  }
}
.cid-uneqLSOVHS .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-uneqLSOVHS .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-uneqLSOVHS .item:hover .item-wrapper .item-content .item-img,
.cid-uneqLSOVHS .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-uneqLSOVHS .item:nth-child(2n) .item-wrapper {
  background-color: #ffe2d4;
}
.cid-uneqLSOVHS .item:nth-child(3n) .item-wrapper {
  background-color: #ff8576;
}
.cid-uneqLSOVHS .item:nth-child(4n) .item-wrapper {
  background-color: #eaffbf;
}
.cid-uneqLSOVHS .item:nth-child(6n) .item-wrapper {
  background-color: #d2f2f5;
}
.cid-uneqLSOVHS .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #ffb849;
}
@media (max-width: 992px) {
  .cid-uneqLSOVHS .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-uneqLSOVHS .item .item-wrapper .item-content {
  position: relative;
}
.cid-uneqLSOVHS .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-uneqLSOVHS .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-uneqLSOVHS .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uneqLSOVHS .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uneqLSOVHS .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-uneqLSOVHS .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-uneqLSOVHS .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-uneqLSOVHS .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-uneqLSOVHS .mbr-section-title {
  color: #212529;
}
.cid-uneqLSOVHS .panel-title-edit {
  color: #212529;
}
.cid-uneqLSOVHS .panel-text {
  color: #51565c;
}
.cid-ul88VBhKHR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-ul88VBhKHR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul88VBhKHR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ul88VBhKHR .container {
    padding: 0 22px;
  }
}
.cid-ul88VBhKHR .card {
  justify-content: center;
}
.cid-ul88VBhKHR .content-wrapper {
  padding-left: 34px;
}
@media (max-width: 992px) {
  .cid-ul88VBhKHR .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-ul88VBhKHR .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ul88VBhKHR .content-wrapper .mbr-text {
  margin-bottom: 10px;
}
.cid-ul88VBhKHR .box {
  padding-right: 84px;
}
@media (max-width: 992px) {
  .cid-ul88VBhKHR .box {
    padding: 0;
  }
}
.cid-ul88VBhKHR .box .mbr-media {
  position: relative;
  height: 480px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ul88VBhKHR .box .mbr-media {
    height: 350px;
  }
}
.cid-ul88VBhKHR .box .mbr-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vh;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-ul88VBhKHR .box .mbr-media .mbr-iconfont {
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 4px;
}
.cid-ul88VBhKHR .mbr-media {
  position: relative;
}
.cid-ul88VBhKHR .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-ul88VBhKHR a:hover {
  background-image: none !important;
}
.cid-ul88VBhKHR .icon-wrap {
  right: 40px;
  bottom: 40px;
  position: absolute;
  height: 55px;
  width: 55px;
  border-radius: 100%;
  background-color: #00d0f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-ul88VBhKHR .icon-wrap {
    right: 20px;
    bottom: 20px;
  }
}
.cid-ul88VBhKHR .icon-wrap:hover,
.cid-ul88VBhKHR .icon-wrap:focus {
  background-color: #000000;
}
.cid-ul88VBhKHR .icon-wrap:hover .mbr-iconfont,
.cid-ul88VBhKHR .icon-wrap:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-ul88VBhKHR .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-ul88VBhKHR .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ul88VBhKHR .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ul88VBhKHR .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ul88VBhKHR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ul88VBhKHR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ul88VBhKHR .mbr-section-title {
  color: #ffffff;
}
.cid-ul88VBhKHR .mbr-text {
  color: #ffffff;
}
.cid-ul88VCEXpz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ul88VCEXpz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ul88VCEXpz .col-12 {
  padding: 0;
}
.cid-ul88VCEXpz .row {
  margin: 0;
}
.cid-ul88VCEXpz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-ul88VCEXpz .card-margin {
    margin-top: -1px;
  }
}
.cid-ul88VCEXpz .card-wrapper {
  min-height: 500px;
  border: 1px solid #c19b76;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-ul88VCEXpz .card-wrapper {
    padding: 1rem;
  }
}
.cid-ul88VCEXpz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ul88VCEXpz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-ul88VCEXpz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-ul88VCEXpz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-ul88VCEXpz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-ul88VCEXpz .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-ul88VCEXpz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ul88VCEXpz .image-wrapper {
    padding: 1rem;
  }
}
.cid-ul88VCEXpz .mbr-section-title {
  color: #221b35;
}
.cid-ul88VCEXpz .mbr-text,
.cid-ul88VCEXpz .mbr-section-btn {
  color: #221b35;
}
.cid-ul88VDOY1n {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ul88VDOY1n .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ul88VDOY1n .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-ul88VDOY1n .title {
    width: 100% !important;
  }
}
.cid-ul88VEL6lJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ul88VEL6lJ .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-ul88VEL6lJ .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-ul88VFOMWR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-ul88VFOMWR .mbr-section-subtitle {
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #cccccc;
}
.cid-ul88VFOMWR .first-column .mbr-text {
  margin: 0;
}
.cid-ul88VFOMWR .icons-wrapper ul {
  margin: 0;
  padding: 0;
}
.cid-ul88VFOMWR .icons-wrapper ul li {
  margin-right: 1.25rem;
  display: inline-block;
}
.cid-ul88VFOMWR .icons-wrapper ul li .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-ul88VFOMWR .icons-wrapper ul li .mbr-iconfont:hover {
  color: #878787;
}
.cid-ul88VFOMWR .form-group {
  max-width: 55%;
}
.cid-ul88VFOMWR .form-group,
.cid-ul88VFOMWR .input-group-btn {
  margin: 0;
  padding: 0;
  display: -webkit-flex;
}
.cid-ul88VFOMWR .form-control {
  font-size: .9rem;
  border: none;
  border-radius: 0;
  width: 100%;
  padding: .3rem .5rem;
  background: #000000;
  color: #d8d7d7;
}
.cid-ul88VFOMWR .form-control::-webkit-input-placeholder {
  color: #d8d7d7;
}
.cid-ul88VFOMWR .form-control::-moz-placeholder {
  color: #d8d7d7;
}
.cid-ul88VFOMWR .form-control:-moz-placeholder {
  color: #d8d7d7;
}
.cid-ul88VFOMWR .form-control:-ms-input-placeholder {
  color: #d8d7d7;
}
.cid-ul88VFOMWR .input-group-btn .btn {
  padding: 1rem 2.2rem;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-ul88VFOMWR .first-column,
  .cid-ul88VFOMWR .second-column {
    padding-bottom: 2rem;
  }
  .cid-ul88VFOMWR .mbr-form .row {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-ul88VFOMWR .first-column,
  .cid-ul88VFOMWR .second-column,
  .cid-ul88VFOMWR .third-column {
    text-align: center;
  }
  .cid-ul88VFOMWR .input-group-btn .btn {
    padding: .6rem 1rem !important;
  }
}
.cid-ul88VHzCV4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
