body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Spartan-ExtraLight';
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Spartan-ExtraLight';
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.44rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #c2272d !important;
}
.bg-success {
  background-color: #333333 !important;
}
.bg-info {
  background-color: #f3eee7 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c2272d !important;
  border-color: #c2272d !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #821a1e !important;
  border-color: #821a1e !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #821a1e !important;
  border-color: #821a1e !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #c2272d !important;
  border-color: #c2272d !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #821a1e !important;
  border-color: #821a1e !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #821a1e !important;
  border-color: #821a1e !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #f3eee7 !important;
  border-color: #f3eee7 !important;
  color: #927449 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #927449 !important;
  background-color: #dacab4 !important;
  border-color: #dacab4 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #927449 !important;
  background-color: #dacab4 !important;
  border-color: #dacab4 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #c2272d;
  color: #c2272d !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #c2272d;
  border-color: #c2272d;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c2272d !important;
  border-color: #c2272d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #c2272d;
  color: #c2272d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #c2272d;
  border-color: #c2272d;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c2272d !important;
  border-color: #c2272d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #f3eee7;
  color: #f3eee7 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #927449 !important;
  background-color: #f3eee7;
  border-color: #f3eee7;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #927449 !important;
  background-color: #f3eee7 !important;
  border-color: #f3eee7 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #333333;
  color: #333333 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #c1c1c1;
  color: #c1c1c1 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #444444;
  color: #444444 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #333333;
  color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c2272d !important;
}
.text-secondary {
  color: #c2272d !important;
}
.text-success {
  color: #333333 !important;
}
.text-info {
  color: #f3eee7 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a,
a:hover {
  color: #c2272d;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #981e23 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #981e23 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1a1a1a !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #e2d6c5 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a8a8a8 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #2b2b2b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #1a1a1a !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f3eee7;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.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: #c2272d;
  border-color: #c2272d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e68386;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a6a6a6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.44rem;
}
blockquote {
  border-color: #c2272d;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c2272d;
  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: #c2272d;
  border-bottom-color: #c2272d;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #c2272d !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: #c2272d !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='%23c2272d' %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-sGPJq7xAUv .nav-item:focus,
.cid-sGPJq7xAUv .nav-link:focus {
  outline: none;
}
.cid-sGPJq7xAUv .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGPJq7xAUv .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGPJq7xAUv .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGPJq7xAUv .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGPJq7xAUv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGPJq7xAUv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGPJq7xAUv .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGPJq7xAUv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse.show,
.cid-sGPJq7xAUv .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGPJq7xAUv .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGPJq7xAUv .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGPJq7xAUv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGPJq7xAUv .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-sGPJq7xAUv .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGPJq7xAUv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGPJq7xAUv .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGPJq7xAUv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGPJq7xAUv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGPJq7xAUv .navbar-brand {
  min-height: 61px;
  -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-sGPJq7xAUv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGPJq7xAUv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGPJq7xAUv .dropdown-item.active,
.cid-sGPJq7xAUv .dropdown-item:active {
  background-color: transparent;
}
.cid-sGPJq7xAUv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGPJq7xAUv .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGPJq7xAUv .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGPJq7xAUv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGPJq7xAUv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGPJq7xAUv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGPJq7xAUv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGPJq7xAUv ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGPJq7xAUv .navbar-buttons {
  text-align: inherit;
}
.cid-sGPJq7xAUv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGPJq7xAUv .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGPJq7xAUv .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGPJq7xAUv .icons-menu {
  text-align: inherit;
}
.cid-sGPJq7xAUv .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGPJq7xAUv .nav-link:hover,
.cid-sGPJq7xAUv .dropdown-item:hover,
.cid-sGPJq7xAUv .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGPJq7xAUv .navbar {
    height: 77px;
  }
  .cid-sGPJq7xAUv .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGPJq7xAUv .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGPJq7xAUv .icons-menu,
  .cid-sGPJq7xAUv .navbar-buttons,
  .cid-sGPJq7xAUv .contact-block,
  .cid-sGPJq7xAUv .text-column {
    text-align: center !important;
  }
}
.cid-sGPJq7xAUv .icons-menu,
.cid-sGPJq7xAUv .navbar-buttons,
.cid-sGPJq7xAUv .contact-block,
.cid-sGPJq7xAUv .text-column {
  color: #cccccc;
}
.cid-sGPF7wJOIV {
  overflow: hidden !important;
}
.cid-sGPF7wJOIV .container-fluid {
  padding: 0 3rem;
}
.cid-sGPF7wJOIV .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGPF7wJOIV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGPF7wJOIV h1 {
  margin-bottom: 1rem;
}
.cid-sGPF7wJOIV .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGPF7wJOIV .btn-line {
  margin-top: 3rem;
}
.cid-sGPF7wJOIV p {
  margin-bottom: 0;
}
.cid-sGPF7wJOIV .mbr-text,
.cid-sGPF7wJOIV .mbr-section-btn {
  color: #ffffff;
}
.cid-sGPS6pFFjh {
  background-color: #f3eee7;
}
.cid-sGPS6pFFjh H1 {
  color: #132c70;
}
.cid-sGPS6pFFjh .mbr-text,
.cid-sGPS6pFFjh .mbr-section-btn {
  color: #444444;
}
.cid-sGPS6pFFjh H3 {
  color: #132c70;
}
.cid-sGPS6pFFjh .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-sGPS6pFFjh .mbr-list li {
  margin-bottom: 1rem;
}
.cid-sGPS6pFFjh .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sGPS6pFFjh p {
  margin: 0;
}
.cid-sGPS6pFFjh a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-sGPS6pFFjh .row {
    display: flex;
    flex-direction: column;
  }
  .cid-sGPS6pFFjh .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-sGPS6pFFjh .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-sGPS6pFFjh .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-sGPS6pFFjh .nav-dropdown .link {
  font-weight: 300;
}
.cid-sGPS6pFFjh H2 {
  color: #c2272d;
}
.cid-sGPVcq7zqI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-sGPVcq7zqI {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-sGPVcq7zqI {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.cid-sGPVcq7zqI .f-row {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sGPVcq7zqI .f-row {
    flex-direction: row;
  }
}
.cid-sGPVcq7zqI .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sGPVcq7zqI .f-item {
    flex: 1 1 50%;
  }
}
@media (min-width: 992px) {
  .cid-sGPVcq7zqI .image-wrapper {
    min-height: 750px;
  }
}
.cid-sGPVcq7zqI .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sGPVcq7zqI .text-wrapper {
  width: 100%;
  background-color: #f3eee7;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .cid-sGPVcq7zqI .text-wrapper {
    transform: translate(20%, 6rem);
  }
}
@media (min-width: 1200px) {
  .cid-sGPVcq7zqI .text-wrapper {
    padding: 6rem 3.25rem;
    margin: 1rem;
  }
}
.cid-sGPVcq7zqI .mbr-section-title {
  color: #c2272d;
  text-align: left;
}
.cid-sGPVcq7zqI .mbr-text,
.cid-sGPVcq7zqI .mbr-section-btn {
  color: #ffd8db;
}
.cid-sGPVcq7zqI .z-100 {
  z-index: 100;
}
.cid-sGPVcq7zqI .mbr-text {
  text-align: left;
  color: #444444;
}
.cid-rDJnnaMBRb {
  background-color: #f3eee7;
}
.cid-rDJnnaMBRb .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-rDJnnaMBRb .card .card-img img {
  transition: all .5s;
}
.cid-rDJnnaMBRb .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-rDJnnaMBRb .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rDJnnaMBRb .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rDJnnaMBRb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDJnnaMBRb .first-card {
  display: block;
}
.cid-rDJnnaMBRb .first-card .card-wrapper {
  height: 100%;
}
.cid-rDJnnaMBRb .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rDJnnaMBRb .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rDJnnaMBRb .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rDJnnaMBRb .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rDJnnaMBRb .first-row,
.cid-rDJnnaMBRb .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper,
.cid-rDJnnaMBRb .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img,
.cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img img,
.cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rDJnnaMBRb .first-row,
  .cid-rDJnnaMBRb .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img,
  .cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img img,
  .cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rDJnnaMBRb .first-row .caption,
.cid-rDJnnaMBRb .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-rDJnnaMBRb .first-row .caption .price,
.cid-rDJnnaMBRb .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-rDJnnaMBRb .first-row {
  padding-bottom: 0rem;
}
.cid-rDJnnaMBRb .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rDJnnaMBRb {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-rDJnnaMBRb .first-card,
  .cid-rDJnnaMBRb .first-child {
    padding-bottom: 0rem;
  }
  .cid-rDJnnaMBRb .card-box {
    padding: 0 0rem;
  }
  .cid-rDJnnaMBRb .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJnnaMBRb {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cid-rDJnnaMBRb .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-rDJnnaMBRb .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-rDJnnaMBRb .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-rDJnnaMBRb .first-card {
    padding-bottom: 2rem;
  }
  .cid-rDJnnaMBRb .only-first-row {
    height: 100%;
  }
}
.cid-rDJnnaMBRb p {
  margin-bottom: 0;
}
.cid-rDJnnaMBRb h2 {
  margin-bottom: 1rem;
}
.cid-rDJnnaMBRb .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-rDJnnaMBRb .btn-line {
  margin-top: 3rem;
}
.cid-rDJnnaMBRb .container-fluid {
  max-width: 1300px;
}
.cid-rDJnnaMBRb .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-rDJnnaMBRb .first-card-title,
.cid-rDJnnaMBRb .first-card-info {
  color: #c2272d;
}
.cid-rDJnnaMBRb .first-card-text,
.cid-rDJnnaMBRb .card-btn {
  color: #444444;
}
.cid-teW85xBufn {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-teW85xBufn {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-teW85xBufn h1 {
  color: #132c70;
}
.cid-teW85xBufn h2 {
  color: #132c70;
}
.cid-teW85xBufn a {
  color: #132c70;
}
.cid-teW85xBufn .btn-line::after {
  background-color: #132c70;
}
.cid-teW85xBufn .animated-element {
  color: #efefef;
}
.cid-teW85xBufn .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-teW85xBufn .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-teW85xBufn .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-teW85xBufn .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-teW85xBufn .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-teW85xBufn .container-fluid {
    padding: 0 1rem;
  }
  .cid-teW85xBufn .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-teW85xBufn .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-teW85xBufn .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-teW85xBufn .container-fluid {
    padding: 0 2rem;
  }
  .cid-teW85xBufn .mbr-white {
    padding-left: 3rem;
  }
  .cid-teW85xBufn .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-teW85xBufn .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-teW85xBufn .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-teW85xBufn .container-fluid {
  max-width: 1300px;
}
.cid-teW85xBufn .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-teW85xBufn .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-teW85xBufn .btn-line {
  margin-top: 3rem;
}
.cid-teW85xBufn .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-teW85xBufn h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-teW85xBufn .mbr-text {
  color: #444444;
}
.cid-udSl64UwTI {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pexels-janamparikh-17033857-2000x1333.jpg");
}
@media (max-width: 991px) {
  .cid-udSl64UwTI {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-udSl64UwTI .container-fluid {
  padding: 0 3rem;
}
.cid-udSl64UwTI .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-udSl64UwTI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-udSl64UwTI h1 {
  margin-bottom: 1rem;
}
.cid-udSl64UwTI .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-udSl64UwTI .btn-line {
  margin-top: 3rem;
}
.cid-udSl64UwTI p {
  margin-bottom: 0;
}
.cid-udSl64UwTI .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-udSl64UwTI .mbr-text,
.cid-udSl64UwTI .mbr-section-btn {
  color: #ffffff;
}
.cid-udSlTZJRrD {
  background-color: #ffffff;
}
.cid-udSlTZJRrD .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-udSlTZJRrD .card .card-img img {
  transition: all 0.5s;
}
.cid-udSlTZJRrD .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-udSlTZJRrD .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-udSlTZJRrD .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-udSlTZJRrD .first-card {
  display: block;
}
.cid-udSlTZJRrD .first-card .card-wrapper {
  height: 100%;
}
.cid-udSlTZJRrD .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-udSlTZJRrD .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-udSlTZJRrD .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-udSlTZJRrD .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-udSlTZJRrD .first-row,
.cid-udSlTZJRrD .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-udSlTZJRrD .first-row .card .card-wrapper,
.cid-udSlTZJRrD .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-udSlTZJRrD .first-row .card .card-wrapper .card-img,
.cid-udSlTZJRrD .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-udSlTZJRrD .first-row .card .card-wrapper .card-img img,
.cid-udSlTZJRrD .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-udSlTZJRrD .first-row,
  .cid-udSlTZJRrD .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-udSlTZJRrD .first-row .card .card-wrapper .card-img,
  .cid-udSlTZJRrD .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-udSlTZJRrD .first-row .card .card-wrapper .card-img img,
  .cid-udSlTZJRrD .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-udSlTZJRrD .first-row .caption,
.cid-udSlTZJRrD .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-udSlTZJRrD .first-row .caption .price,
.cid-udSlTZJRrD .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-udSlTZJRrD .first-row {
  padding-bottom: 0rem;
}
.cid-udSlTZJRrD .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-udSlTZJRrD {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-udSlTZJRrD .first-card,
  .cid-udSlTZJRrD .first-child {
    padding-bottom: 0rem;
  }
  .cid-udSlTZJRrD .card-box {
    padding: 0 0rem;
  }
  .cid-udSlTZJRrD .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-udSlTZJRrD {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cid-udSlTZJRrD .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-udSlTZJRrD .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-udSlTZJRrD .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-udSlTZJRrD .first-card {
    padding-bottom: 2rem;
  }
  .cid-udSlTZJRrD .only-first-row {
    height: 100%;
  }
}
.cid-udSlTZJRrD p {
  margin-bottom: 0;
}
.cid-udSlTZJRrD h2 {
  margin-bottom: 1rem;
}
.cid-udSlTZJRrD .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-udSlTZJRrD .btn-line {
  margin-top: 3rem;
}
.cid-udSlTZJRrD .container-fluid {
  max-width: 1300px;
}
.cid-udSlTZJRrD .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-udSlTZJRrD .mbr-fallback-image.disabled {
  display: none;
}
.cid-udSlTZJRrD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udSlTZJRrD .first-card-title,
.cid-udSlTZJRrD .first-card-info {
  color: #82786e;
}
.cid-udSlTZJRrD .first-card-text,
.cid-udSlTZJRrD .card-btn {
  color: #444444;
}
.cid-sGPXsWYX0N {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/gaurav-sehara-guh-a9m57f0-unsplash-2000x1500.jpeg");
}
@media (max-width: 991px) {
  .cid-sGPXsWYX0N {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGPXsWYX0N .container-fluid {
  padding: 0 3rem;
}
.cid-sGPXsWYX0N .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGPXsWYX0N .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGPXsWYX0N h1 {
  margin-bottom: 1rem;
}
.cid-sGPXsWYX0N .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGPXsWYX0N .btn-line {
  margin-top: 3rem;
}
.cid-sGPXsWYX0N p {
  margin-bottom: 0;
}
.cid-sGPXsWYX0N .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGPXsWYX0N .mbr-text,
.cid-sGPXsWYX0N .mbr-section-btn {
  color: #ffffff;
}
.cid-sGQ687hun8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGQ687hun8 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGQ687hun8 .form-row {
  justify-content: flex-end;
}
.cid-sGQ687hun8 .form-control,
.cid-sGQ687hun8 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGQ687hun8 .form-control:hover,
.cid-sGQ687hun8 .field-input:hover,
.cid-sGQ687hun8 .form-control:focus,
.cid-sGQ687hun8 .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGQ687hun8 input::-webkit-input-placeholder,
.cid-sGQ687hun8 textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGQ687hun8 input:-moz-placeholder,
.cid-sGQ687hun8 textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGQ687hun8 .jq-selectbox li,
.cid-sGQ687hun8 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQ687hun8 .jq-selectbox li:hover,
.cid-sGQ687hun8 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQ687hun8 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQ687hun8 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQ687hun8 span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGQ687hun8 textarea {
  min-height: 150px;
}
.cid-sGQ687hun8 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGQ687hun8 h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGQ687hun8 .mbr-text,
.cid-sGQ687hun8 .mbr-section-btn {
  color: #767676;
}
.cid-sGQ687hun8 LABEL {
  color: #c2272d;
}
.cid-sGQ687hun8 H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGQbi5Byjf .nav-item:focus,
.cid-sGQbi5Byjf .nav-link:focus {
  outline: none;
}
.cid-sGQbi5Byjf .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGQbi5Byjf .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGQbi5Byjf .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGQbi5Byjf .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGQbi5Byjf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGQbi5Byjf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGQbi5Byjf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGQbi5Byjf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGQbi5Byjf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGQbi5Byjf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGQbi5Byjf .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGQbi5Byjf .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGQbi5Byjf .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGQbi5Byjf .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGQbi5Byjf .navbar .navbar-collapse.show,
.cid-sGQbi5Byjf .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGQbi5Byjf .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGQbi5Byjf .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGQbi5Byjf .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGQbi5Byjf .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGQbi5Byjf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGQbi5Byjf .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGQbi5Byjf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGQbi5Byjf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGQbi5Byjf .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-sGQbi5Byjf .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGQbi5Byjf .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGQbi5Byjf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGQbi5Byjf .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGQbi5Byjf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGQbi5Byjf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGQbi5Byjf .navbar-brand {
  min-height: 61px;
  -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-sGQbi5Byjf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGQbi5Byjf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGQbi5Byjf .dropdown-item.active,
.cid-sGQbi5Byjf .dropdown-item:active {
  background-color: transparent;
}
.cid-sGQbi5Byjf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGQbi5Byjf .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGQbi5Byjf .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGQbi5Byjf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGQbi5Byjf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGQbi5Byjf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGQbi5Byjf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGQbi5Byjf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGQbi5Byjf .navbar-buttons {
  text-align: inherit;
}
.cid-sGQbi5Byjf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGQbi5Byjf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGQbi5Byjf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGQbi5Byjf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGQbi5Byjf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGQbi5Byjf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGQbi5Byjf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGQbi5Byjf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGQbi5Byjf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGQbi5Byjf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGQbi5Byjf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGQbi5Byjf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGQbi5Byjf .icons-menu {
  text-align: inherit;
}
.cid-sGQbi5Byjf .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGQbi5Byjf .nav-link:hover,
.cid-sGQbi5Byjf .dropdown-item:hover,
.cid-sGQbi5Byjf .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGQbi5Byjf .navbar {
    height: 77px;
  }
  .cid-sGQbi5Byjf .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGQbi5Byjf .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGQbi5Byjf .icons-menu,
  .cid-sGQbi5Byjf .navbar-buttons,
  .cid-sGQbi5Byjf .contact-block,
  .cid-sGQbi5Byjf .text-column {
    text-align: center !important;
  }
}
.cid-sGQbi5Byjf .icons-menu,
.cid-sGQbi5Byjf .navbar-buttons,
.cid-sGQbi5Byjf .contact-block,
.cid-sGQbi5Byjf .text-column {
  color: #cccccc;
}
.cid-sGQbi6k9MV {
  overflow: hidden !important;
  background-image: url("../../../assets/images/view-of-stok-palace-2000x1218.jpg");
}
.cid-sGQbi6k9MV .container-fluid {
  padding: 0 3rem;
}
.cid-sGQbi6k9MV .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGQbi6k9MV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGQbi6k9MV h1 {
  margin-bottom: 1rem;
}
.cid-sGQbi6k9MV .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGQbi6k9MV .btn-line {
  margin-top: 3rem;
}
.cid-sGQbi6k9MV p {
  margin-bottom: 0;
}
.cid-sGQbi6k9MV .mbr-text,
.cid-sGQbi6k9MV .mbr-section-btn {
  color: #ffffff;
}
.cid-sGQd86i3w9 {
  background-color: #f3eee7;
}
.cid-sGQd86i3w9 H1 {
  color: #132c70;
}
.cid-sGQd86i3w9 .mbr-text,
.cid-sGQd86i3w9 .mbr-section-btn {
  color: #444444;
}
.cid-sGQd86i3w9 H3 {
  color: #132c70;
}
.cid-sGQd86i3w9 .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-sGQd86i3w9 .mbr-list li {
  margin-bottom: 1rem;
}
.cid-sGQd86i3w9 .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sGQd86i3w9 p {
  margin: 0;
}
.cid-sGQd86i3w9 a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-sGQd86i3w9 .row {
    display: flex;
    flex-direction: column;
  }
  .cid-sGQd86i3w9 .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-sGQd86i3w9 .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-sGQd86i3w9 .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-sGQd86i3w9 .nav-dropdown .link {
  font-weight: 300;
}
.cid-sGQd86i3w9 H2 {
  color: #c2272d;
}
.cid-sGQjRKpbHF {
  background-color: #ffffff;
}
.cid-sGQjRKpbHF .photo-split img {
  width: 100%;
}
.cid-sGQjRKpbHF .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGQjRKpbHF .counter-container ul li {
  margin-bottom: 0.5rem;
  list-style: ✓;
}
.cid-sGQjRKpbHF .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-sGQjRKpbHF .wrap-block {
  padding-left: 2rem;
}
.cid-sGQjRKpbHF .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sGQjRKpbHF .wrap-block ul li {
  display: inline-block;
}
.cid-sGQjRKpbHF .wrap-block ul li span {
  text-align: center;
}
.cid-sGQjRKpbHF .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sGQjRKpbHF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGQjRKpbHF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGQjRKpbHF .mbr-list,
.cid-sGQjRKpbHF .social-media ul {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sGQjRKpbHF {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sGQjRKpbHF .wrap-block {
    margin: 0.5rem 0;
  }
  .cid-sGQjRKpbHF .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGQjRKpbHF .mbr-section-title,
  .cid-sGQjRKpbHF .mbr-section-subtitle,
  .cid-sGQjRKpbHF .mbr-text {
    text-align: center !important;
  }
  .cid-sGQjRKpbHF .social-list {
    text-align: center !important;
  }
}
@media (min-width: 767px) {
  .cid-sGQjRKpbHF {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .cid-sGQjRKpbHF .wrap-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .cid-sGQjRKpbHF .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGQjRKpbHF .btn-line {
  margin-top: 3rem;
}
.cid-sGQjRKpbHF .container-fluid {
  max-width: 1300px;
}
@media (max-width: 992px) {
  .cid-sGQjRKpbHF .col-lg-8 {
    order: 2;
  }
  .cid-sGQjRKpbHF .col-lg-4 {
    order: 1;
  }
}
.cid-sGQjRKpbHF .mbr-section-title {
  color: #c2272d;
}
.cid-sGQjRKpbHF .mbr-text {
  color: #444444;
}
.cid-sGQkrVVvqY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sGQkrVVvqY .mbr-section-subtitle {
  letter-spacing: 3.27px !important;
  color: #36520e;
  text-align: center;
}
.cid-sGQkrVVvqY .title-text {
  color: #282727;
  text-align: center;
}
.cid-sGQkrVVvqY H5 {
  color: #4c4a4b;
  text-align: center;
}
.cid-sGQkrVVvqY .section-text,
.cid-sGQkrVVvqY .mbr-section-btn {
  text-align: center;
  color: #4c4a4b;
}
.cid-sGQkEkhGkW {
  background-color: #ffffff;
}
.cid-sGQkEkhGkW .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sGQkEkhGkW .photo-split img {
  width: 100%;
}
.cid-sGQkEkhGkW .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGQkEkhGkW .counter-container ul li {
  margin-bottom: 0.5rem;
  list-style: ✓;
}
.cid-sGQkEkhGkW .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-sGQkEkhGkW .wrap-block {
  padding-left: 2rem;
}
.cid-sGQkEkhGkW .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sGQkEkhGkW .wrap-block ul li {
  display: inline-block;
}
.cid-sGQkEkhGkW .wrap-block ul li span {
  text-align: center;
}
.cid-sGQkEkhGkW .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sGQkEkhGkW .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGQkEkhGkW .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGQkEkhGkW .mbr-list,
.cid-sGQkEkhGkW .social-media ul {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sGQkEkhGkW {
    padding-top: 0px;
    padding-bottom: 12px;
  }
  .cid-sGQkEkhGkW .wrap-block {
    margin: 0.5rem 0;
  }
  .cid-sGQkEkhGkW .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGQkEkhGkW .mbr-section-title,
  .cid-sGQkEkhGkW .mbr-section-subtitle,
  .cid-sGQkEkhGkW .mbr-text {
    text-align: center !important;
  }
  .cid-sGQkEkhGkW .social-list {
    text-align: center !important;
  }
}
@media (min-width: 767px) {
  .cid-sGQkEkhGkW {
    padding-top: 0px;
    padding-bottom: 45px;
  }
  .cid-sGQkEkhGkW .wrap-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .cid-sGQkEkhGkW .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGQkEkhGkW .btn-line {
  margin-top: 3rem;
}
.cid-sGQkEkhGkW .container-fluid {
  max-width: 1300px;
}
@media (max-width: 992px) {
  .cid-sGQkEkhGkW .col-lg-8 {
    order: 2;
  }
  .cid-sGQkEkhGkW .col-lg-4 {
    order: 1;
  }
}
.cid-sGQkEkhGkW .mbr-section-title {
  color: #c2272d;
}
.cid-sGQkEkhGkW .mbr-text {
  color: #444444;
}
.cid-sGQbi84man {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-sGQbi84man {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGQbi84man .animated-element {
  color: #efefef;
}
.cid-sGQbi84man .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sGQbi84man .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGQbi84man .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGQbi84man .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGQbi84man .mbr-white {
    padding-left: 5rem;
  }
  .cid-sGQbi84man .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-sGQbi84man .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGQbi84man .container-fluid {
  max-width: 1300px;
}
.cid-sGQbi84man .mbr-section-title {
  margin-bottom: 1rem;
  color: #c2272d;
}
.cid-sGQbi84man .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGQbi84man .btn-line {
  margin-top: 3rem;
}
.cid-sGQbi84man .mbr-section-subtitle,
.cid-sGQbi84man .mbr-section-btn {
  color: #444444;
}
.cid-sGQbi8os4O {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/stok-21-2000x1335.jpg");
}
@media (max-width: 991px) {
  .cid-sGQbi8os4O {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGQbi8os4O .container-fluid {
  padding: 0 3rem;
}
.cid-sGQbi8os4O .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGQbi8os4O .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGQbi8os4O h1 {
  margin-bottom: 1rem;
}
.cid-sGQbi8os4O .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGQbi8os4O .btn-line {
  margin-top: 3rem;
}
.cid-sGQbi8os4O p {
  margin-bottom: 0;
}
.cid-sGQbi8os4O .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGQbi8os4O .mbr-text,
.cid-sGQbi8os4O .mbr-section-btn {
  color: #ffffff;
}
.cid-sGQbi7BD2Z {
  background-color: #f3eee7;
}
.cid-sGQbi7BD2Z .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sGQbi7BD2Z .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sGQbi7BD2Z .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGQbi7BD2Z .first-card {
  display: block;
}
.cid-sGQbi7BD2Z .first-card .card-wrapper {
  height: 100%;
}
.cid-sGQbi7BD2Z .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGQbi7BD2Z .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-sGQbi7BD2Z .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGQbi7BD2Z .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGQbi7BD2Z .first-row,
.cid-sGQbi7BD2Z .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sGQbi7BD2Z .first-row .card .card-wrapper,
.cid-sGQbi7BD2Z .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sGQbi7BD2Z .first-row .card .card-wrapper .card-img,
.cid-sGQbi7BD2Z .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sGQbi7BD2Z .first-row .card .card-wrapper .card-img img,
.cid-sGQbi7BD2Z .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sGQbi7BD2Z .first-row,
  .cid-sGQbi7BD2Z .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGQbi7BD2Z .first-row .card .card-wrapper .card-img,
  .cid-sGQbi7BD2Z .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGQbi7BD2Z .first-row .card .card-wrapper .card-img img,
  .cid-sGQbi7BD2Z .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sGQbi7BD2Z .first-row .caption,
.cid-sGQbi7BD2Z .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-sGQbi7BD2Z .first-row .caption .price,
.cid-sGQbi7BD2Z .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-sGQbi7BD2Z .first-row {
  padding-bottom: 0rem;
}
.cid-sGQbi7BD2Z .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sGQbi7BD2Z {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .cid-sGQbi7BD2Z .first-card,
  .cid-sGQbi7BD2Z .first-child {
    padding-bottom: 0rem;
  }
  .cid-sGQbi7BD2Z .card-box {
    padding: 0 0rem;
  }
  .cid-sGQbi7BD2Z .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGQbi7BD2Z {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .cid-sGQbi7BD2Z .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-sGQbi7BD2Z .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-sGQbi7BD2Z .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-sGQbi7BD2Z .first-card {
    padding-bottom: 2rem;
  }
  .cid-sGQbi7BD2Z .only-first-row {
    height: 100%;
  }
}
.cid-sGQbi7BD2Z p {
  margin-bottom: 0;
}
.cid-sGQbi7BD2Z h2 {
  margin-bottom: 1rem;
}
.cid-sGQbi7BD2Z .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGQbi7BD2Z .btn-line {
  margin-top: 3rem;
}
.cid-sGQbi7BD2Z .container-fluid {
  max-width: 1300px;
}
.cid-sGQbi7BD2Z .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-sGQbi7BD2Z .first-card-title,
.cid-sGQbi7BD2Z .first-card-info {
  color: #c2272d;
}
.cid-sGQbi7BD2Z .first-card-text,
.cid-sGQbi7BD2Z .card-btn {
  color: #444444;
}
.cid-sGQlcSgMkS {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/detail7-1500x807.jpg");
}
@media (max-width: 991px) {
  .cid-sGQlcSgMkS {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGQlcSgMkS .container-fluid {
  padding: 0 3rem;
}
.cid-sGQlcSgMkS .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGQlcSgMkS .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGQlcSgMkS h1 {
  margin-bottom: 1rem;
}
.cid-sGQlcSgMkS .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGQlcSgMkS .btn-line {
  margin-top: 3rem;
}
.cid-sGQlcSgMkS p {
  margin-bottom: 0;
}
.cid-sGQlcSgMkS .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGQlcSgMkS .mbr-text,
.cid-sGQlcSgMkS .mbr-section-btn {
  color: #ffffff;
}
.cid-sGQlLYpOuU {
  background-color: #ffffff;
}
.cid-sGQlLYpOuU .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sGQlLYpOuU .photo-split img {
  width: 100%;
}
.cid-sGQlLYpOuU .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGQlLYpOuU .counter-container ul li {
  margin-bottom: 0.5rem;
  list-style: ✓;
}
.cid-sGQlLYpOuU .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-sGQlLYpOuU .wrap-block {
  padding-left: 2rem;
}
.cid-sGQlLYpOuU .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sGQlLYpOuU .wrap-block ul li {
  display: inline-block;
}
.cid-sGQlLYpOuU .wrap-block ul li span {
  text-align: center;
}
.cid-sGQlLYpOuU .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sGQlLYpOuU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGQlLYpOuU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGQlLYpOuU .mbr-list,
.cid-sGQlLYpOuU .social-media ul {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sGQlLYpOuU {
    padding-top: 20px;
    padding-bottom: 12px;
  }
  .cid-sGQlLYpOuU .wrap-block {
    margin: 0.5rem 0;
  }
  .cid-sGQlLYpOuU .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGQlLYpOuU .mbr-section-title,
  .cid-sGQlLYpOuU .mbr-section-subtitle,
  .cid-sGQlLYpOuU .mbr-text {
    text-align: center !important;
  }
  .cid-sGQlLYpOuU .social-list {
    text-align: center !important;
  }
}
@media (min-width: 767px) {
  .cid-sGQlLYpOuU {
    padding-top: 75px;
    padding-bottom: 45px;
  }
  .cid-sGQlLYpOuU .wrap-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .cid-sGQlLYpOuU .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGQlLYpOuU .btn-line {
  margin-top: 3rem;
}
.cid-sGQlLYpOuU .container-fluid {
  max-width: 1300px;
}
@media (max-width: 992px) {
  .cid-sGQlLYpOuU .col-lg-8 {
    order: 2;
  }
  .cid-sGQlLYpOuU .col-lg-4 {
    order: 1;
  }
}
.cid-sGQlLYpOuU .mbr-section-title {
  color: #c2272d;
}
.cid-sGQlLYpOuU .mbr-text {
  color: #444444;
}
.cid-sGQmwhVCbu {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cid-sGQmwhVCbu .mbr-text,
.cid-sGQmwhVCbu .mbr-section-btn {
  color: #e0ecdc;
}
.cid-sGQmwhVCbu .mbr-section-title {
  color: #d8e3d5;
}
.cid-sGQbi8LcaL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGQbi8LcaL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGQbi8LcaL .form-row {
  justify-content: flex-end;
}
.cid-sGQbi8LcaL .form-control,
.cid-sGQbi8LcaL .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGQbi8LcaL .form-control:hover,
.cid-sGQbi8LcaL .field-input:hover,
.cid-sGQbi8LcaL .form-control:focus,
.cid-sGQbi8LcaL .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGQbi8LcaL input::-webkit-input-placeholder,
.cid-sGQbi8LcaL textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGQbi8LcaL input:-moz-placeholder,
.cid-sGQbi8LcaL textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGQbi8LcaL .jq-selectbox li,
.cid-sGQbi8LcaL .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQbi8LcaL .jq-selectbox li:hover,
.cid-sGQbi8LcaL .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQbi8LcaL .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQbi8LcaL .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQbi8LcaL span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGQbi8LcaL textarea {
  min-height: 150px;
}
.cid-sGQbi8LcaL h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGQbi8LcaL h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGQbi8LcaL .mbr-text,
.cid-sGQbi8LcaL .mbr-section-btn {
  color: #767676;
}
.cid-sGQbi8LcaL LABEL {
  color: #c2272d;
}
.cid-sGQbi8LcaL H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGQqKBz2j0 .nav-item:focus,
.cid-sGQqKBz2j0 .nav-link:focus {
  outline: none;
}
.cid-sGQqKBz2j0 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGQqKBz2j0 .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGQqKBz2j0 .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGQqKBz2j0 .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGQqKBz2j0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGQqKBz2j0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGQqKBz2j0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGQqKBz2j0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGQqKBz2j0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGQqKBz2j0 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGQqKBz2j0 .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGQqKBz2j0 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGQqKBz2j0 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGQqKBz2j0 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGQqKBz2j0 .navbar .navbar-collapse.show,
.cid-sGQqKBz2j0 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGQqKBz2j0 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGQqKBz2j0 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGQqKBz2j0 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGQqKBz2j0 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGQqKBz2j0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGQqKBz2j0 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGQqKBz2j0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGQqKBz2j0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGQqKBz2j0 .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-sGQqKBz2j0 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGQqKBz2j0 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGQqKBz2j0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGQqKBz2j0 .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGQqKBz2j0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGQqKBz2j0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGQqKBz2j0 .navbar-brand {
  min-height: 61px;
  -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-sGQqKBz2j0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGQqKBz2j0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGQqKBz2j0 .dropdown-item.active,
.cid-sGQqKBz2j0 .dropdown-item:active {
  background-color: transparent;
}
.cid-sGQqKBz2j0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGQqKBz2j0 .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGQqKBz2j0 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGQqKBz2j0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGQqKBz2j0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGQqKBz2j0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGQqKBz2j0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGQqKBz2j0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGQqKBz2j0 .navbar-buttons {
  text-align: inherit;
}
.cid-sGQqKBz2j0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGQqKBz2j0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGQqKBz2j0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGQqKBz2j0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGQqKBz2j0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGQqKBz2j0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGQqKBz2j0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGQqKBz2j0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGQqKBz2j0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGQqKBz2j0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGQqKBz2j0 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGQqKBz2j0 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGQqKBz2j0 .icons-menu {
  text-align: inherit;
}
.cid-sGQqKBz2j0 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGQqKBz2j0 .nav-link:hover,
.cid-sGQqKBz2j0 .dropdown-item:hover,
.cid-sGQqKBz2j0 .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGQqKBz2j0 .navbar {
    height: 77px;
  }
  .cid-sGQqKBz2j0 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGQqKBz2j0 .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGQqKBz2j0 .icons-menu,
  .cid-sGQqKBz2j0 .navbar-buttons,
  .cid-sGQqKBz2j0 .contact-block,
  .cid-sGQqKBz2j0 .text-column {
    text-align: center !important;
  }
}
.cid-sGQqKBz2j0 .icons-menu,
.cid-sGQqKBz2j0 .navbar-buttons,
.cid-sGQqKBz2j0 .contact-block,
.cid-sGQqKBz2j0 .text-column {
  color: #cccccc;
}
.cid-sGQqKC2hgG {
  overflow: hidden !important;
  background-image: url("../../../assets/images/queen-s-room-222-2000x1335.jpg");
}
.cid-sGQqKC2hgG .container-fluid {
  padding: 0 3rem;
}
.cid-sGQqKC2hgG .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGQqKC2hgG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGQqKC2hgG h1 {
  margin-bottom: 1rem;
}
.cid-sGQqKC2hgG .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGQqKC2hgG .btn-line {
  margin-top: 3rem;
}
.cid-sGQqKC2hgG p {
  margin-bottom: 0;
}
.cid-sGQqKC2hgG .mbr-text,
.cid-sGQqKC2hgG .mbr-section-btn {
  color: #ffffff;
}
.cid-sGQqKCl2yI {
  background-color: #f3eee7;
}
.cid-sGQqKCl2yI H1 {
  color: #132c70;
}
.cid-sGQqKCl2yI .mbr-text,
.cid-sGQqKCl2yI .mbr-section-btn {
  color: #444444;
}
.cid-sGQqKCl2yI H3 {
  color: #132c70;
}
.cid-sGQqKCl2yI .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-sGQqKCl2yI .mbr-list li {
  margin-bottom: 1rem;
}
.cid-sGQqKCl2yI .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sGQqKCl2yI p {
  margin: 0;
}
.cid-sGQqKCl2yI a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-sGQqKCl2yI .row {
    display: flex;
    flex-direction: column;
  }
  .cid-sGQqKCl2yI .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-sGQqKCl2yI .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-sGQqKCl2yI .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-sGQqKCl2yI .nav-dropdown .link {
  font-weight: 300;
}
.cid-sGQqKCl2yI H2 {
  color: #c2272d;
}
.cid-sGQrY9lT63 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
.cid-sGQrY9lT63 .card .card-img {
  overflow: hidden;
}
.cid-sGQrY9lT63 .card .card-img img {
  transition: all .5s;
}
.cid-sGQrY9lT63 .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sGQrY9lT63 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGQrY9lT63 .card {
  display: block;
  height: 100%;
}
.cid-sGQrY9lT63 .card .card-wrapper {
  height: 100%;
}
.cid-sGQrY9lT63 .card .card-wrapper .card-img {
  border-radius: 0;
}
.cid-sGQrY9lT63 .card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-sGQrY9lT63 .card .card-box .card-title {
  margin: 0;
}
.cid-sGQrY9lT63 .card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGQrY9lT63 .card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-sGQrY9lT63 .card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGQrY9lT63 .card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGQrY9lT63 .card .card-footer {
  background: #ffffff;
  margin-top: 1rem;
  padding: 0;
  padding-top: 1rem;
  display: inline-flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGQrY9lT63 .card .card-footer .icons-list {
  margin: 0;
}
.cid-sGQrY9lT63 .card .card-footer .icons-list li {
  margin-right: 1rem;
}
.cid-sGQrY9lT63 .card .card-footer .icons-list li .mbr-iconfont {
  font-size: 25px;
  color: #767676;
}
.cid-sGQrY9lT63 .card .card-footer .link .link-text {
  display: inline-block;
}
.cid-sGQrY9lT63 .card .card-footer .link .mbr-iconfont {
  font-size: 12px;
}
.cid-sGQrY9lT63 .card-box {
  border-style: solid;
  border-color: #efefef;
  border-width: 0 1px 1px 1px;
}
.cid-sGQrY9lT63 .card-footer {
  border-top: 1px solid #efefef;
}
.cid-sGQrY9lT63 .mbri-arrow-next {
  color: #709faf;
}
@media (max-width: 767px) {
  .cid-sGQrY9lT63 .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGQrY9lT63 .card:not(:last-child) {
    padding-bottom: 2rem;
  }
}
.cid-sGQrY9lT63 .card-title,
.cid-sGQrY9lT63 .card-info {
  text-align: center;
  color: #c2272d;
}
.cid-sGQrY9lT63 .card-text,
.cid-sGQrY9lT63 .card-btn {
  text-align: center;
  color: #444444;
}
.cid-sGQrY9lT63 .link-text {
  color: #e6c8ab;
}
.cid-tgDppCNmAe {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tgDppCNmAe {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tgDppCNmAe h1 {
  color: #132c70;
}
.cid-tgDppCNmAe h2 {
  color: #132c70;
}
.cid-tgDppCNmAe a {
  color: #132c70;
}
.cid-tgDppCNmAe .btn-line::after {
  background-color: #132c70;
}
.cid-tgDppCNmAe .animated-element {
  color: #efefef;
}
.cid-tgDppCNmAe .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tgDppCNmAe .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgDppCNmAe .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tgDppCNmAe .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tgDppCNmAe .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tgDppCNmAe .container-fluid {
    padding: 0 1rem;
  }
  .cid-tgDppCNmAe .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tgDppCNmAe .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tgDppCNmAe .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tgDppCNmAe .container-fluid {
    padding: 0 2rem;
  }
  .cid-tgDppCNmAe .mbr-white {
    padding-left: 3rem;
  }
  .cid-tgDppCNmAe .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tgDppCNmAe .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tgDppCNmAe .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tgDppCNmAe .container-fluid {
  max-width: 1300px;
}
.cid-tgDppCNmAe .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tgDppCNmAe .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tgDppCNmAe .btn-line {
  margin-top: 3rem;
}
.cid-tgDppCNmAe .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tgDppCNmAe h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tgDppCNmAe .mbr-text {
  color: #444444;
}
.cid-tgDpqrQFz5 {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tgDpqrQFz5 {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tgDpqrQFz5 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tgDpqrQFz5 h1 {
  color: #132c70;
}
.cid-tgDpqrQFz5 h2 {
  color: #132c70;
}
.cid-tgDpqrQFz5 a {
  color: #132c70;
}
.cid-tgDpqrQFz5 .btn-line::after {
  background-color: #132c70;
}
.cid-tgDpqrQFz5 .animated-element {
  color: #efefef;
}
.cid-tgDpqrQFz5 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tgDpqrQFz5 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tgDpqrQFz5 .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tgDpqrQFz5 .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tgDpqrQFz5 .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tgDpqrQFz5 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tgDpqrQFz5 .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tgDpqrQFz5 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tgDpqrQFz5 .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tgDpqrQFz5 .container-fluid {
    padding: 0 2rem;
  }
  .cid-tgDpqrQFz5 .mbr-white {
    padding-left: 3rem;
  }
  .cid-tgDpqrQFz5 .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tgDpqrQFz5 .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tgDpqrQFz5 .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tgDpqrQFz5 .container-fluid {
  max-width: 1300px;
}
.cid-tgDpqrQFz5 .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tgDpqrQFz5 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tgDpqrQFz5 .btn-line {
  margin-top: 3rem;
}
.cid-tgDpqrQFz5 .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tgDpqrQFz5 h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tgDpqrQFz5 .mbr-text {
  color: #444444;
}
.cid-sGQqKF6VTQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGQqKF6VTQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGQqKF6VTQ .form-row {
  justify-content: flex-end;
}
.cid-sGQqKF6VTQ .form-control,
.cid-sGQqKF6VTQ .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGQqKF6VTQ .form-control:hover,
.cid-sGQqKF6VTQ .field-input:hover,
.cid-sGQqKF6VTQ .form-control:focus,
.cid-sGQqKF6VTQ .field-input:focus {
  background-color: #f3eee7;
  box-shadow: none;
  outline: none;
}
.cid-sGQqKF6VTQ input::-webkit-input-placeholder,
.cid-sGQqKF6VTQ textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGQqKF6VTQ input:-moz-placeholder,
.cid-sGQqKF6VTQ textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGQqKF6VTQ .jq-selectbox li,
.cid-sGQqKF6VTQ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQqKF6VTQ .jq-selectbox li:hover,
.cid-sGQqKF6VTQ .jq-selectbox li.selected {
  background-color: #f3eee7;
  color: #000000;
}
.cid-sGQqKF6VTQ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQqKF6VTQ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f3eee7;
}
.cid-sGQqKF6VTQ span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGQqKF6VTQ textarea {
  min-height: 150px;
}
.cid-sGQqKF6VTQ h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGQqKF6VTQ h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGQqKF6VTQ .mbr-text,
.cid-sGQqKF6VTQ .mbr-section-btn {
  color: #767676;
}
.cid-sGQqKF6VTQ LABEL {
  color: #c2272d;
}
.cid-sGQqKF6VTQ H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGRWBmsyKL .nav-item:focus,
.cid-sGRWBmsyKL .nav-link:focus {
  outline: none;
}
.cid-sGRWBmsyKL .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGRWBmsyKL .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGRWBmsyKL .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGRWBmsyKL .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGRWBmsyKL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGRWBmsyKL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGRWBmsyKL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGRWBmsyKL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGRWBmsyKL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGRWBmsyKL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGRWBmsyKL .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGRWBmsyKL .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGRWBmsyKL .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGRWBmsyKL .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGRWBmsyKL .navbar .navbar-collapse.show,
.cid-sGRWBmsyKL .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGRWBmsyKL .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGRWBmsyKL .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGRWBmsyKL .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGRWBmsyKL .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGRWBmsyKL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGRWBmsyKL .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGRWBmsyKL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGRWBmsyKL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGRWBmsyKL .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-sGRWBmsyKL .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGRWBmsyKL .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGRWBmsyKL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGRWBmsyKL .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGRWBmsyKL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGRWBmsyKL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGRWBmsyKL .navbar-brand {
  min-height: 61px;
  -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-sGRWBmsyKL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGRWBmsyKL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGRWBmsyKL .dropdown-item.active,
.cid-sGRWBmsyKL .dropdown-item:active {
  background-color: transparent;
}
.cid-sGRWBmsyKL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGRWBmsyKL .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGRWBmsyKL .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGRWBmsyKL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGRWBmsyKL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGRWBmsyKL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGRWBmsyKL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGRWBmsyKL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGRWBmsyKL .navbar-buttons {
  text-align: inherit;
}
.cid-sGRWBmsyKL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGRWBmsyKL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGRWBmsyKL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGRWBmsyKL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGRWBmsyKL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGRWBmsyKL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGRWBmsyKL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGRWBmsyKL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGRWBmsyKL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGRWBmsyKL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGRWBmsyKL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGRWBmsyKL .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGRWBmsyKL .icons-menu {
  text-align: inherit;
}
.cid-sGRWBmsyKL .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGRWBmsyKL .nav-link:hover,
.cid-sGRWBmsyKL .dropdown-item:hover,
.cid-sGRWBmsyKL .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGRWBmsyKL .navbar {
    height: 77px;
  }
  .cid-sGRWBmsyKL .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGRWBmsyKL .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGRWBmsyKL .icons-menu,
  .cid-sGRWBmsyKL .navbar-buttons,
  .cid-sGRWBmsyKL .contact-block,
  .cid-sGRWBmsyKL .text-column {
    text-align: center !important;
  }
}
.cid-sGRWBmsyKL .icons-menu,
.cid-sGRWBmsyKL .navbar-buttons,
.cid-sGRWBmsyKL .contact-block,
.cid-sGRWBmsyKL .text-column {
  color: #cccccc;
}
.cid-sGRWBnbzvl {
  overflow: hidden !important;
  background-image: url("../../../assets/images/stok2-1500x1000.jpg");
}
.cid-sGRWBnbzvl .container-fluid {
  padding: 0 3rem;
}
.cid-sGRWBnbzvl .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGRWBnbzvl .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGRWBnbzvl h1 {
  margin-bottom: 1rem;
}
.cid-sGRWBnbzvl .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGRWBnbzvl .btn-line {
  margin-top: 3rem;
}
.cid-sGRWBnbzvl p {
  margin-bottom: 0;
}
.cid-sGRWBnbzvl .mbr-text,
.cid-sGRWBnbzvl .mbr-section-btn {
  color: #ffffff;
}
.cid-sGRWBnIUj5 {
  background-color: #f3eee7;
}
.cid-sGRWBnIUj5 H1 {
  color: #132c70;
}
.cid-sGRWBnIUj5 .mbr-text,
.cid-sGRWBnIUj5 .mbr-section-btn {
  color: #444444;
}
.cid-sGRWBnIUj5 H3 {
  color: #132c70;
}
.cid-sGRWBnIUj5 .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-sGRWBnIUj5 .mbr-list li {
  margin-bottom: 1rem;
}
.cid-sGRWBnIUj5 .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sGRWBnIUj5 p {
  margin: 0;
}
.cid-sGRWBnIUj5 a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-sGRWBnIUj5 .row {
    display: flex;
    flex-direction: column;
  }
  .cid-sGRWBnIUj5 .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-sGRWBnIUj5 .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-sGRWBnIUj5 .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-sGRWBnIUj5 .nav-dropdown .link {
  font-weight: 300;
}
.cid-sGRWBnIUj5 H2 {
  color: #c2272d;
}
.cid-sGRWBoajek {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-sGRWBoajek {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-sGRWBoajek {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.cid-sGRWBoajek .f-row {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sGRWBoajek .f-row {
    flex-direction: row;
  }
}
.cid-sGRWBoajek .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sGRWBoajek .f-item {
    flex: 1 1 50%;
  }
}
@media (min-width: 992px) {
  .cid-sGRWBoajek .image-wrapper {
    min-height: 750px;
  }
}
.cid-sGRWBoajek .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sGRWBoajek .text-wrapper {
  width: 100%;
  background-color: #f3eee7;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .cid-sGRWBoajek .text-wrapper {
    transform: translate(20%, 6rem);
  }
}
@media (min-width: 1200px) {
  .cid-sGRWBoajek .text-wrapper {
    padding: 6rem 3.25rem;
    margin: 1rem;
  }
}
.cid-sGRWBoajek .mbr-section-title {
  color: #c2272d;
  text-align: left;
}
.cid-sGRWBoajek .mbr-text,
.cid-sGRWBoajek .mbr-section-btn {
  color: #ffd8db;
}
.cid-sGRWBoajek .z-100 {
  z-index: 100;
}
.cid-sGRWBoajek .mbr-text {
  text-align: left;
  color: #444444;
}
.cid-sGRYVHGmgF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGRYVHGmgF {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-sGRYVHGmgF h3 {
  color: #132c70;
  font-size: 28px;
  font-weight: 400;
}
.cid-sGRYVHGmgF img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-sGRYVHGmgF img {
    width: 100%;
  }
  .cid-sGRYVHGmgF .pb-5 {
    padding-bottom: 1rem !important;
  }
  .cid-sGRYVHGmgF .text-padding {
    padding: 0 1rem;
  }
  .cid-sGRYVHGmgF .block-img {
    order: 1;
  }
  .cid-sGRYVHGmgF .block-text {
    order: 0;
  }
}
.cid-sGRYVHGmgF ol {
  padding: 0;
  margin: 0;
}
.cid-sGRYVHGmgF li {
  padding-bottom: 1rem;
  line-height: 1.4;
}
.cid-sGRYVHGmgF .counter-container2 ol {
  counter-reset: start 4;
}
.cid-sGRYVHGmgF .counter-container2 li {
  display: block;
}
.cid-sGRYVHGmgF .counter-container2 li:before {
  content: counter(start) ". ";
  counter-increment: start;
}
.cid-sGRYVHGmgF .counter-container1 ol {
  counter-reset: start 0;
}
.cid-sGRYVHGmgF .counter-container1 li {
  display: block;
}
.cid-sGRYVHGmgF .counter-container1 li:before {
  content: counter(start) ". ";
  counter-increment: start;
}
.cid-sGRYVHGmgF li:before {
  color: #c2272d;
}
.cid-sGRYVHGmgF .container-fluid {
  max-width: 1300px;
}
@media (min-width: 992px) {
  .cid-sGRYVHGmgF .text-padding {
    padding-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGRYVHGmgF .text-padding {
    padding: 0 2rem;
  }
  .cid-sGRYVHGmgF .container-fluid {
    padding: 0;
  }
  .cid-sGRYVHGmgF img {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGRYVHGmgF .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGRYVHGmgF H3 {
  color: #c2272d;
}
.cid-sGRYVHGmgF .counter-container,
.cid-sGRYVHGmgF .mbr-text {
  color: #444444;
}
.cid-sGRWBp5N88 {
  overflow: hidden !important;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sGRWBp5N88 {
    height: auto;
    min-height: auto;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.cid-sGRWBp5N88 .animated-element {
  color: #efefef;
}
.cid-sGRWBp5N88 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sGRWBp5N88 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGRWBp5N88 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGRWBp5N88 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGRWBp5N88 .mbr-white {
    padding-left: 5rem;
  }
  .cid-sGRWBp5N88 .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-sGRWBp5N88 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGRWBp5N88 .container-fluid {
  max-width: 1300px;
}
.cid-sGRWBp5N88 .mbr-section-title {
  margin-bottom: 1rem;
  color: #c2272d;
}
.cid-sGRWBp5N88 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGRWBp5N88 .btn-line {
  margin-top: 3rem;
}
.cid-sGRWBp5N88 .mbr-section-subtitle,
.cid-sGRWBp5N88 .mbr-section-btn {
  color: #444444;
}
.cid-sGRWBpwd93 {
  overflow: hidden !important;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-sGRWBpwd93 {
    height: auto;
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.cid-sGRWBpwd93 .container-fluid {
  padding: 0 3rem;
}
.cid-sGRWBpwd93 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGRWBpwd93 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGRWBpwd93 h1 {
  margin-bottom: 1rem;
}
.cid-sGRWBpwd93 .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGRWBpwd93 .btn-line {
  margin-top: 3rem;
}
.cid-sGRWBpwd93 p {
  margin-bottom: 0;
}
.cid-sGRWBpwd93 .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGRWBpwd93 .mbr-text,
.cid-sGRWBpwd93 .mbr-section-btn {
  color: #444444;
}
.cid-sGS5h2ObwX {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/village2-1600x1200.jpg");
}
@media (max-width: 991px) {
  .cid-sGS5h2ObwX {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-sGS5h2ObwX .container-fluid {
  padding: 0 3rem;
}
.cid-sGS5h2ObwX .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGS5h2ObwX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGS5h2ObwX h1 {
  margin-bottom: 1rem;
}
.cid-sGS5h2ObwX .mbr-section-title {
  font-weight: 300;
  color: #c2272d;
}
.cid-sGS5h2ObwX .btn-line {
  margin-top: 3rem;
}
.cid-sGS5h2ObwX p {
  margin-bottom: 0;
}
.cid-sGS5h2ObwX .mbr-text,
.cid-sGS5h2ObwX .mbr-section-btn {
  color: #444444;
}
.cid-sGS6vat7YR {
  background-color: #f3eee7;
}
.cid-sGS6vat7YR .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-sGS6vat7YR .card .card-img img {
  transition: all .5s;
}
.cid-sGS6vat7YR .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sGS6vat7YR .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sGS6vat7YR .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sGS6vat7YR .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGS6vat7YR .first-card {
  display: block;
}
.cid-sGS6vat7YR .first-card .card-wrapper {
  height: 100%;
}
.cid-sGS6vat7YR .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGS6vat7YR .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-sGS6vat7YR .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGS6vat7YR .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGS6vat7YR .first-row,
.cid-sGS6vat7YR .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sGS6vat7YR .first-row .card .card-wrapper,
.cid-sGS6vat7YR .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sGS6vat7YR .first-row .card .card-wrapper .card-img,
.cid-sGS6vat7YR .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sGS6vat7YR .first-row .card .card-wrapper .card-img img,
.cid-sGS6vat7YR .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sGS6vat7YR .first-row,
  .cid-sGS6vat7YR .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGS6vat7YR .first-row .card .card-wrapper .card-img,
  .cid-sGS6vat7YR .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGS6vat7YR .first-row .card .card-wrapper .card-img img,
  .cid-sGS6vat7YR .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sGS6vat7YR .first-row .caption,
.cid-sGS6vat7YR .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-sGS6vat7YR .first-row .caption .price,
.cid-sGS6vat7YR .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-sGS6vat7YR .first-row {
  padding-bottom: 0rem;
}
.cid-sGS6vat7YR .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sGS6vat7YR {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-sGS6vat7YR .first-card,
  .cid-sGS6vat7YR .first-child {
    padding-bottom: 0rem;
  }
  .cid-sGS6vat7YR .card-box {
    padding: 0 0rem;
  }
  .cid-sGS6vat7YR .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGS6vat7YR {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cid-sGS6vat7YR .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-sGS6vat7YR .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-sGS6vat7YR .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-sGS6vat7YR .first-card {
    padding-bottom: 2rem;
  }
  .cid-sGS6vat7YR .only-first-row {
    height: 100%;
  }
}
.cid-sGS6vat7YR p {
  margin-bottom: 0;
}
.cid-sGS6vat7YR h2 {
  margin-bottom: 1rem;
}
.cid-sGS6vat7YR .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGS6vat7YR .btn-line {
  margin-top: 3rem;
}
.cid-sGS6vat7YR .container-fluid {
  max-width: 1300px;
}
.cid-sGS6vat7YR .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-sGS6vat7YR .first-card-title,
.cid-sGS6vat7YR .first-card-info {
  color: #c2272d;
}
.cid-sGS6vat7YR .first-card-text,
.cid-sGS6vat7YR .card-btn {
  color: #444444;
}
.cid-sGSatytRXa {
  overflow: hidden !important;
  background-image: url("../../../assets/images/unnamed-2000x2667.jpg");
}
.cid-sGSatytRXa .container-fluid {
  padding: 0 3rem;
}
.cid-sGSatytRXa .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGSatytRXa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGSatytRXa h1 {
  margin-bottom: 1rem;
}
.cid-sGSatytRXa .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGSatytRXa .btn-line {
  margin-top: 3rem;
}
.cid-sGSatytRXa p {
  margin-bottom: 0;
}
.cid-sGSatytRXa .mbr-text,
.cid-sGSatytRXa .mbr-section-btn {
  color: #ffffff;
}
.cid-sGRWBpWZY7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGRWBpWZY7 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGRWBpWZY7 .form-row {
  justify-content: flex-end;
}
.cid-sGRWBpWZY7 .form-control,
.cid-sGRWBpWZY7 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGRWBpWZY7 .form-control:hover,
.cid-sGRWBpWZY7 .field-input:hover,
.cid-sGRWBpWZY7 .form-control:focus,
.cid-sGRWBpWZY7 .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGRWBpWZY7 input::-webkit-input-placeholder,
.cid-sGRWBpWZY7 textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGRWBpWZY7 input:-moz-placeholder,
.cid-sGRWBpWZY7 textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGRWBpWZY7 .jq-selectbox li,
.cid-sGRWBpWZY7 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGRWBpWZY7 .jq-selectbox li:hover,
.cid-sGRWBpWZY7 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGRWBpWZY7 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGRWBpWZY7 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGRWBpWZY7 span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGRWBpWZY7 textarea {
  min-height: 150px;
}
.cid-sGRWBpWZY7 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGRWBpWZY7 h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGRWBpWZY7 .mbr-text,
.cid-sGRWBpWZY7 .mbr-section-btn {
  color: #767676;
}
.cid-sGRWBpWZY7 LABEL {
  color: #c2272d;
}
.cid-sGRWBpWZY7 H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGSbp1zCrw .nav-item:focus,
.cid-sGSbp1zCrw .nav-link:focus {
  outline: none;
}
.cid-sGSbp1zCrw .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGSbp1zCrw .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGSbp1zCrw .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGSbp1zCrw .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGSbp1zCrw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGSbp1zCrw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGSbp1zCrw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGSbp1zCrw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGSbp1zCrw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGSbp1zCrw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGSbp1zCrw .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGSbp1zCrw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGSbp1zCrw .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGSbp1zCrw .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGSbp1zCrw .navbar .navbar-collapse.show,
.cid-sGSbp1zCrw .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGSbp1zCrw .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGSbp1zCrw .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGSbp1zCrw .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGSbp1zCrw .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGSbp1zCrw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGSbp1zCrw .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGSbp1zCrw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGSbp1zCrw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGSbp1zCrw .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-sGSbp1zCrw .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGSbp1zCrw .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGSbp1zCrw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGSbp1zCrw .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGSbp1zCrw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGSbp1zCrw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGSbp1zCrw .navbar-brand {
  min-height: 61px;
  -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-sGSbp1zCrw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGSbp1zCrw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGSbp1zCrw .dropdown-item.active,
.cid-sGSbp1zCrw .dropdown-item:active {
  background-color: transparent;
}
.cid-sGSbp1zCrw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGSbp1zCrw .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGSbp1zCrw .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGSbp1zCrw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGSbp1zCrw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGSbp1zCrw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGSbp1zCrw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGSbp1zCrw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGSbp1zCrw .navbar-buttons {
  text-align: inherit;
}
.cid-sGSbp1zCrw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGSbp1zCrw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGSbp1zCrw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGSbp1zCrw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGSbp1zCrw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGSbp1zCrw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGSbp1zCrw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGSbp1zCrw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGSbp1zCrw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGSbp1zCrw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGSbp1zCrw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGSbp1zCrw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGSbp1zCrw .icons-menu {
  text-align: inherit;
}
.cid-sGSbp1zCrw .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGSbp1zCrw .nav-link:hover,
.cid-sGSbp1zCrw .dropdown-item:hover,
.cid-sGSbp1zCrw .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGSbp1zCrw .navbar {
    height: 77px;
  }
  .cid-sGSbp1zCrw .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGSbp1zCrw .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGSbp1zCrw .icons-menu,
  .cid-sGSbp1zCrw .navbar-buttons,
  .cid-sGSbp1zCrw .contact-block,
  .cid-sGSbp1zCrw .text-column {
    text-align: center !important;
  }
}
.cid-sGSbp1zCrw .icons-menu,
.cid-sGSbp1zCrw .navbar-buttons,
.cid-sGSbp1zCrw .contact-block,
.cid-sGSbp1zCrw .text-column {
  color: #cccccc;
}
.cid-sGSbp2bFsO {
  overflow: hidden !important;
  background-image: url("../../../assets/images/ladakh-6051984-1920-1920x1015.jpeg");
}
.cid-sGSbp2bFsO .container-fluid {
  padding: 0 3rem;
}
.cid-sGSbp2bFsO .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGSbp2bFsO .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGSbp2bFsO h1 {
  margin-bottom: 1rem;
}
.cid-sGSbp2bFsO .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGSbp2bFsO .btn-line {
  margin-top: 3rem;
}
.cid-sGSbp2bFsO p {
  margin-bottom: 0;
}
.cid-sGSbp2bFsO .mbr-text,
.cid-sGSbp2bFsO .mbr-section-btn {
  color: #ffffff;
}
.cid-sGSbp2BrT2 {
  background-color: #f3eee7;
}
.cid-sGSbp2BrT2 H1 {
  color: #132c70;
}
.cid-sGSbp2BrT2 .mbr-text,
.cid-sGSbp2BrT2 .mbr-section-btn {
  color: #444444;
}
.cid-sGSbp2BrT2 H3 {
  color: #132c70;
}
.cid-sGSbp2BrT2 .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-sGSbp2BrT2 .mbr-list li {
  margin-bottom: 1rem;
}
.cid-sGSbp2BrT2 .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sGSbp2BrT2 p {
  margin: 0;
}
.cid-sGSbp2BrT2 a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-sGSbp2BrT2 .row {
    display: flex;
    flex-direction: column;
  }
  .cid-sGSbp2BrT2 .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-sGSbp2BrT2 .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-sGSbp2BrT2 .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-sGSbp2BrT2 .nav-dropdown .link {
  font-weight: 300;
}
.cid-sGSbp2BrT2 H2 {
  color: #c2272d;
}
.cid-sGSeRrhdRq {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
.cid-sGSeRrhdRq .mbr-shop {
  display: table;
  width: 100%;
}
.cid-sGSeRrhdRq .mbr-shop .row {
  margin: 0;
}
.cid-sGSeRrhdRq .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-sGSeRrhdRq .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-sGSeRrhdRq .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-sGSeRrhdRq .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-sGSeRrhdRq .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-sGSeRrhdRq .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-sGSeRrhdRq .mbr-shop .hide-modal {
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sGSeRrhdRq .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-sGSeRrhdRq .mbr-shop .filter-by-pu,
.cid-sGSeRrhdRq .mbr-shop .filter-by-pd,
.cid-sGSeRrhdRq .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-sGSeRrhdRq .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-sGSeRrhdRq .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem h4,
.cid-sGSeRrhdRq .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem h5,
.cid-sGSeRrhdRq .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem p,
.cid-sGSeRrhdRq .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-sGSeRrhdRq .mbr-shop .item-button {
  text-align: center;
}
.cid-sGSeRrhdRq .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-sGSeRrhdRq .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-sGSeRrhdRq .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-sGSeRrhdRq .mbr-shop .sidebar-block {
  position: relative;
}
.cid-sGSeRrhdRq .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-sGSeRrhdRq .mbr-shop .onsale {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  line-height: 30px;
  padding: 7.5px 15px;
  background: #fe525b;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item__hided h4,
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item__hided h5,
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-sGSeRrhdRq .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-sGSeRrhdRq .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-sGSeRrhdRq .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-sGSeRrhdRq .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-sGSeRrhdRq .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-sGSeRrhdRq .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-sGSeRrhdRq .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sGSeRrhdRq .mbr-shop .range-controls {
  position: relative;
}
.cid-sGSeRrhdRq .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-sGSeRrhdRq .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-sGSeRrhdRq .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-sGSeRrhdRq .mbr-shop .toggle:hover,
.cid-sGSeRrhdRq .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-sGSeRrhdRq .mbr-shop .min-toggle {
  left: 0;
}
.cid-sGSeRrhdRq .mbr-shop .max-toggle {
  right: 0;
}
.cid-sGSeRrhdRq .mbr-shop .hided-by-price {
  display: none;
}
.cid-sGSeRrhdRq .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-sGSeRrhdRq .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-sGSeRrhdRq .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sGSeRrhdRq .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-sGSeRrhdRq .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-sGSeRrhdRq .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-sGSeRrhdRq .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-sGSeRrhdRq .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-sGSeRrhdRq .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-sGSeRrhdRq .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sGSeRrhdRq .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sGSeRrhdRq .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-sGSeRrhdRq .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-sGSeRrhdRq .mbr-shop .shopItemsModal .onsale {
  border: 1px solid #e7e7e7;
}
.cid-sGSeRrhdRq .mbr-shop .shop-items .onsale,
.cid-sGSeRrhdRq .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-sGSeRrhdRq .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-sGSeRrhdRq .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-sGSeRrhdRq .mbr-shop .price-range {
  display: inline-block;
}
.cid-sGSeRrhdRq .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-sGSeRrhdRq .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-sGSeRrhdRq .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-sGSeRrhdRq .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-sGSeRrhdRq .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-sGSeRrhdRq .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-sGSeRrhdRq .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-sGSeRrhdRq .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-sGSeRrhdRq .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-sGSeRrhdRq .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-sGSeRrhdRq .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-sGSeRrhdRq .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-sGSeRrhdRq .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-sGSeRrhdRq .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-sGSeRrhdRq .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-sGSeRrhdRq .wrapper-shop-items {
    order: 1;
  }
  .cid-sGSeRrhdRq .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-sGSeRrhdRq .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-sGSeRrhdRq .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-sGSeRrhdRq .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-sGSeRrhdRq .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-sGSeRrhdRq .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-sGSeRrhdRq .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-sGSeRrhdRq .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-sGSeRrhdRq .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-sGSeRrhdRq .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-sGSeRrhdRq .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-sGSeRrhdRq .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-sGSeRrhdRq .mbr-gallery-row {
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
}
.cid-sGSeRrhdRq .mbr-gallery-item {
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.cid-sGSeRrhdRq .mbr-gallery-item .sidebar_wraper {
  padding: .5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  color: #232323;
}
.cid-sGSeRrhdRq .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: center !important;
}
.cid-sGSeRrhdRq .mbr-gallery-item .sidebar_wraper .item-title {
  padding-bottom: .5rem;
  text-align: center !important;
  opacity: 0;
  margin-top: -1rem;
}
.cid-sGSeRrhdRq .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: center !important;
  opacity: 0;
  margin-top: -1rem;
}
.cid-sGSeRrhdRq .mbr-gallery-item .sidebar_wraper .mbr-section-btn,
.cid-sGSeRrhdRq .mbr-gallery-item .sidebar_wraper .price-block {
  opacity: 0;
  margin-bottom: -1rem;
}
.cid-sGSeRrhdRq .mbr-gallery-item:hover .style_overlay {
  background: #ffffff;
  opacity: 0.7;
  transition: all .5s;
}
.cid-sGSeRrhdRq .mbr-gallery-item:hover .sidebar_wraper {
  transition: all .5s;
}
.cid-sGSeRrhdRq .mbr-gallery-item:hover .sidebar_wraper .item-title {
  transition: all .5s;
  opacity: 1 ;
  margin-top: 0;
}
.cid-sGSeRrhdRq .mbr-gallery-item:hover .sidebar_wraper .item-subtitle {
  transition: all .5s;
  opacity: 1 ;
  margin-top: 0;
}
.cid-sGSeRrhdRq .mbr-gallery-item:hover .sidebar_wraper .mbr-section-btn,
.cid-sGSeRrhdRq .mbr-gallery-item:hover .sidebar_wraper .price-block {
  transition: all .5s;
  opacity: 1 ;
  margin-bottom: 0;
}
.cid-sGSeRrhdRq .range-controls {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGSeRrhdRq .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-sGSeRrhdRq .card-description {
  color: #444444;
}
.cid-sGSeRrhdRq .item-title {
  color: #444444;
}
.cid-sGSbp32xjC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-sGSbp32xjC {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-sGSbp32xjC {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
}
.cid-sGSbp32xjC .f-row {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sGSbp32xjC .f-row {
    flex-direction: row;
  }
}
.cid-sGSbp32xjC .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sGSbp32xjC .f-item {
    flex: 1 1 50%;
  }
}
@media (min-width: 992px) {
  .cid-sGSbp32xjC .image-wrapper {
    min-height: 750px;
  }
}
.cid-sGSbp32xjC .image-wrapper img {
  min-height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-sGSbp32xjC .text-wrapper {
  width: 100%;
  background-color: #f3eee7;
  padding: 3rem 1.5rem;
}
@media (min-width: 992px) {
  .cid-sGSbp32xjC .text-wrapper {
    transform: translate(20%, 6rem);
  }
}
@media (min-width: 1200px) {
  .cid-sGSbp32xjC .text-wrapper {
    padding: 6rem 3.25rem;
    margin: 1rem;
  }
}
.cid-sGSbp32xjC .mbr-section-title {
  color: #c2272d;
  text-align: left;
}
.cid-sGSbp32xjC .mbr-text,
.cid-sGSbp32xjC .mbr-section-btn {
  color: #ffd8db;
}
.cid-sGSbp32xjC .z-100 {
  z-index: 100;
}
.cid-sGSbp32xjC .mbr-text {
  text-align: left;
  color: #444444;
}
.cid-sGSllGhxli {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sGSllGhxli .mbr-shop {
  display: table;
  width: 100%;
}
.cid-sGSllGhxli .mbr-shop .row {
  padding: 0;
  margin: 0;
}
.cid-sGSllGhxli .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-sGSllGhxli .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-sGSllGhxli .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-sGSllGhxli .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-sGSllGhxli .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-sGSllGhxli .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-sGSllGhxli .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-sGSllGhxli .mbr-shop .hide-modal {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal .close-modal {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal .close-modal:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sGSllGhxli .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-sGSllGhxli .mbr-shop .filter-by-pu,
.cid-sGSllGhxli .mbr-shop .filter-by-pd,
.cid-sGSllGhxli .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-sGSllGhxli .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-sGSllGhxli .galleryItem {
  background: transparent !important;
}
.cid-sGSllGhxli .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-sGSllGhxli .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 15px;
  width: 33.333%;
}
.cid-sGSllGhxli .mbr-shop .galleryItem h4,
.cid-sGSllGhxli .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-sGSllGhxli .mbr-shop .galleryItem h5,
.cid-sGSllGhxli .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-sGSllGhxli .mbr-shop .galleryItem p,
.cid-sGSllGhxli .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-sGSllGhxli .mbr-shop .item-button {
  text-align: center;
}
.cid-sGSllGhxli .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-sGSllGhxli .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-sGSllGhxli .mbr-shop .sidebar {
  margin-bottom: 30px;
  position: relative;
}
.cid-sGSllGhxli .mbr-shop .sidebar-block {
  position: relative;
}
.cid-sGSllGhxli .mbr-shop .sidebar-background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f6f4f1;
  top: -20px;
  right: 3px;
}
.cid-sGSllGhxli .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-sGSllGhxli .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-sGSllGhxli .mbr-shop .onsale {
  position: absolute;
  display: block;
  transition: color 0.3s ease;
  text-align: center;
  z-index: 95;
  top: 30px;
  left: 30px;
  line-height: 17px;
  padding: 5px 15px 5px;
  background: #132c70;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #ffffff;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-item__hided h4,
.cid-sGSllGhxli .mbr-shop .mbr-gallery-item__hided h5,
.cid-sGSllGhxli .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .galleryItem .price-block {
  display: block;
}
.cid-sGSllGhxli .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-sGSllGhxli .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-sGSllGhxli .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-sGSllGhxli .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-sGSllGhxli .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-sGSllGhxli .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-sGSllGhxli .mbr-shop .price-controls input {
  width: 100%;
  background-color: transparent;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sGSllGhxli .mbr-shop .range-controls {
  position: relative;
}
.cid-sGSllGhxli .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-sGSllGhxli .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-sGSllGhxli .mbr-shop .toggle {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -9px;
  width: 7px;
  height: 7px;
  border: 8px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #66458e;
  cursor: pointer;
}
.cid-sGSllGhxli .mbr-shop .toggle:hover,
.cid-sGSllGhxli .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-sGSllGhxli .mbr-shop .min-toggle {
  left: 0;
}
.cid-sGSllGhxli .mbr-shop .max-toggle {
  right: 0;
}
.cid-sGSllGhxli .mbr-shop .hided-by-price {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-sGSllGhxli .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-sGSllGhxli .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sGSllGhxli .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-sGSllGhxli .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 300;
  padding: 10px 0 20px 0;
}
.cid-sGSllGhxli .card-description {
  padding-top: 16px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  color: #444444;
}
.cid-sGSllGhxli .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-sGSllGhxli .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-sGSllGhxli .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-sGSllGhxli .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sGSllGhxli .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sGSllGhxli .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-sGSllGhxli .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
  padding-bottom: 15px;
}
.cid-sGSllGhxli .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
  opacity: 1;
  display: block;
}
.cid-sGSllGhxli .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-sGSllGhxli .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-sGSllGhxli .mbr-shop .price-range {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .price-range-reset {
  display: none;
}
.cid-sGSllGhxli .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-sGSllGhxli .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-sGSllGhxli .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-sGSllGhxli .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-sGSllGhxli .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-sGSllGhxli .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-sGSllGhxli .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-sGSllGhxli .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-sGSllGhxli .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-sGSllGhxli .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sGSllGhxli .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-sGSllGhxli .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-sGSllGhxli .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-sGSllGhxli .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-sGSllGhxli .wrapper-shop-items {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-sGSllGhxli .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-sGSllGhxli .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-sGSllGhxli .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-sGSllGhxli .mbr-shop .sidebar-background:after {
    top: -1%;
  }
  .cid-sGSllGhxli .container-fluid {
    padding: 0 0rem;
  }
}
@media (max-width: 1100px) {
  .cid-sGSllGhxli .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-sGSllGhxli .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-sGSllGhxli .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-sGSllGhxli .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-sGSllGhxli .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-sGSllGhxli .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-sGSllGhxli .oldprice {
  color: #767676;
  padding-left: 0.8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGSllGhxli .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-sGSllGhxli .range-controls {
  display: block !important;
}
.cid-sGSllGhxli .mbr-gallery-item .sidebar_wraper {
  background-color: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sGSllGhxli .sidebar .sidebar_wraper {
  background-color: #f6f4f1;
}
.cid-sGSllGhxli .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-sGSllGhxli .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-sGSllGhxli .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sGSllGhxli .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 300;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
}
.cid-sGSllGhxli .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGSllGhxli .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-sGSllGhxli .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-sGSllGhxli .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-sGSllGhxli .categories {
  padding: 0;
}
.cid-sGSllGhxli .sidebar-title {
  font-weight: bold;
}
.cid-sGSllGhxli .img_wraper {
  transition: 1s;
}
.cid-sGSllGhxli .mbr-gallery-item:hover .sidebar_wraper {
  opacity: 1;
  transform: translateY(-0.3rem);
}
.cid-sGSllGhxli .mbr-gallery-item:hover .img_wraper {
  transform: translateY(-0.5rem);
}
.cid-sGSllGhxli .sidebar_wraper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 1;
  transition: 0.5s;
}
.cid-sGSllGhxli .shop-items .mbr-gallery .mbr-gallery-item > div {
  background: transparent !important;
}
.cid-sGSllGhxli .container-fluid {
  max-width: 1300px;
}
.cid-sGSllGhxli .shop-item-price {
  font-weight: 300;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-sGSllGhxli .sidebar_wraper {
    opacity: 1;
  }
  .cid-sGSllGhxli .btn {
    margin: 0;
    padding: 0.2rem;
  }
}
@media (min-width: 767px) {
  .cid-sGSllGhxli .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 991px) {
  .cid-sGSllGhxli .btn {
    margin: 0;
    padding: 0.5rem 1.4rem;
  }
}
.cid-sGSllGhxli h4 {
  font-weight: 300;
}
.cid-sGSllGhxli .btn {
  font-weight: 300;
  border-width: 1px;
}
.cid-sGSllGhxli .item-title {
  color: #444444;
}
.cid-sGSbp4mgss {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/festivals3-1920x1280.jpg");
}
@media (max-width: 991px) {
  .cid-sGSbp4mgss {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGSbp4mgss .container-fluid {
  padding: 0 3rem;
}
.cid-sGSbp4mgss .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGSbp4mgss .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGSbp4mgss h1 {
  margin-bottom: 1rem;
}
.cid-sGSbp4mgss .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGSbp4mgss .btn-line {
  margin-top: 3rem;
}
.cid-sGSbp4mgss p {
  margin-bottom: 0;
}
.cid-sGSbp4mgss .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGSbp4mgss .mbr-text,
.cid-sGSbp4mgss .mbr-section-btn {
  color: #ffffff;
}
.cid-sGSetiFtDb {
  background-color: #ffffff;
}
.cid-sGSetiFtDb .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-sGSetiFtDb .card .card-img img {
  transition: all 0.5s;
}
.cid-sGSetiFtDb .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sGSetiFtDb .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sGSetiFtDb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGSetiFtDb .first-card {
  display: block;
}
.cid-sGSetiFtDb .first-card .card-wrapper {
  height: 100%;
}
.cid-sGSetiFtDb .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGSetiFtDb .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-sGSetiFtDb .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGSetiFtDb .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGSetiFtDb .first-row,
.cid-sGSetiFtDb .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sGSetiFtDb .first-row .card .card-wrapper,
.cid-sGSetiFtDb .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sGSetiFtDb .first-row .card .card-wrapper .card-img,
.cid-sGSetiFtDb .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sGSetiFtDb .first-row .card .card-wrapper .card-img img,
.cid-sGSetiFtDb .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sGSetiFtDb .first-row,
  .cid-sGSetiFtDb .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGSetiFtDb .first-row .card .card-wrapper .card-img,
  .cid-sGSetiFtDb .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGSetiFtDb .first-row .card .card-wrapper .card-img img,
  .cid-sGSetiFtDb .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sGSetiFtDb .first-row .caption,
.cid-sGSetiFtDb .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-sGSetiFtDb .first-row .caption .price,
.cid-sGSetiFtDb .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-sGSetiFtDb .first-row {
  padding-bottom: 0rem;
}
.cid-sGSetiFtDb .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sGSetiFtDb {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .cid-sGSetiFtDb .first-card,
  .cid-sGSetiFtDb .first-child {
    padding-bottom: 0rem;
  }
  .cid-sGSetiFtDb .card-box {
    padding: 0 0rem;
  }
  .cid-sGSetiFtDb .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGSetiFtDb {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cid-sGSetiFtDb .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-sGSetiFtDb .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-sGSetiFtDb .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-sGSetiFtDb .first-card {
    padding-bottom: 2rem;
  }
  .cid-sGSetiFtDb .only-first-row {
    height: 100%;
  }
}
.cid-sGSetiFtDb p {
  margin-bottom: 0;
}
.cid-sGSetiFtDb h2 {
  margin-bottom: 1rem;
}
.cid-sGSetiFtDb .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGSetiFtDb .btn-line {
  margin-top: 3rem;
}
.cid-sGSetiFtDb .container-fluid {
  max-width: 1300px;
}
.cid-sGSetiFtDb .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-sGSetiFtDb .first-card-text,
.cid-sGSetiFtDb .card-btn {
  color: #444444;
}
.cid-sGSetiFtDb .first-card-title,
.cid-sGSetiFtDb .first-card-info {
  color: #c2272d;
}
.cid-sGSsh3TKbV {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/img81-1-1000x625.jpeg");
}
@media (max-width: 991px) {
  .cid-sGSsh3TKbV {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGSsh3TKbV .container-fluid {
  padding: 0 3rem;
}
.cid-sGSsh3TKbV .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGSsh3TKbV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGSsh3TKbV h1 {
  margin-bottom: 1rem;
}
.cid-sGSsh3TKbV .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGSsh3TKbV .btn-line {
  margin-top: 3rem;
}
.cid-sGSsh3TKbV p {
  margin-bottom: 0;
}
.cid-sGSsh3TKbV .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGSsh3TKbV .mbr-text,
.cid-sGSsh3TKbV .mbr-section-btn {
  color: #ffffff;
}
.cid-sGSbp3W7y9 {
  overflow: hidden !important;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sGSbp3W7y9 {
    height: auto;
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.cid-sGSbp3W7y9 .animated-element {
  color: #efefef;
}
.cid-sGSbp3W7y9 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sGSbp3W7y9 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGSbp3W7y9 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGSbp3W7y9 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGSbp3W7y9 .mbr-white {
    padding-left: 5rem;
  }
  .cid-sGSbp3W7y9 .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-sGSbp3W7y9 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGSbp3W7y9 .container-fluid {
  max-width: 1300px;
}
.cid-sGSbp3W7y9 .mbr-section-title {
  margin-bottom: 1rem;
  color: #c2272d;
}
.cid-sGSbp3W7y9 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGSbp3W7y9 .btn-line {
  margin-top: 3rem;
}
.cid-sGSbp3W7y9 .mbr-section-subtitle,
.cid-sGSbp3W7y9 .mbr-section-btn {
  color: #444444;
}
.cid-sGSbp4KmKl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
.cid-sGSbp4KmKl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGSbp4KmKl .form-row {
  justify-content: flex-end;
}
.cid-sGSbp4KmKl .form-control,
.cid-sGSbp4KmKl .field-input {
  padding: 0.5rem;
  background-color: #f3eee7;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGSbp4KmKl .form-control:hover,
.cid-sGSbp4KmKl .field-input:hover,
.cid-sGSbp4KmKl .form-control:focus,
.cid-sGSbp4KmKl .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGSbp4KmKl input::-webkit-input-placeholder,
.cid-sGSbp4KmKl textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGSbp4KmKl input:-moz-placeholder,
.cid-sGSbp4KmKl textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGSbp4KmKl .jq-selectbox li,
.cid-sGSbp4KmKl .jq-selectbox li {
  background-color: #f3eee7;
  color: #000000;
}
.cid-sGSbp4KmKl .jq-selectbox li:hover,
.cid-sGSbp4KmKl .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGSbp4KmKl .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3eee7;
}
.cid-sGSbp4KmKl .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGSbp4KmKl span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGSbp4KmKl textarea {
  min-height: 150px;
}
.cid-sGSbp4KmKl h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGSbp4KmKl h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGSbp4KmKl .mbr-text,
.cid-sGSbp4KmKl .mbr-section-btn {
  color: #767676;
}
.cid-sGSbp4KmKl LABEL {
  color: #c2272d;
}
.cid-sGSbp4KmKl H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGTc2CrO7Q .nav-item:focus,
.cid-sGTc2CrO7Q .nav-link:focus {
  outline: none;
}
.cid-sGTc2CrO7Q .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGTc2CrO7Q .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGTc2CrO7Q .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGTc2CrO7Q .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGTc2CrO7Q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGTc2CrO7Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGTc2CrO7Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGTc2CrO7Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGTc2CrO7Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGTc2CrO7Q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGTc2CrO7Q .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGTc2CrO7Q .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGTc2CrO7Q .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGTc2CrO7Q .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGTc2CrO7Q .navbar .navbar-collapse.show,
.cid-sGTc2CrO7Q .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGTc2CrO7Q .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGTc2CrO7Q .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGTc2CrO7Q .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGTc2CrO7Q .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGTc2CrO7Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGTc2CrO7Q .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGTc2CrO7Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGTc2CrO7Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGTc2CrO7Q .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-sGTc2CrO7Q .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGTc2CrO7Q .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGTc2CrO7Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGTc2CrO7Q .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGTc2CrO7Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGTc2CrO7Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGTc2CrO7Q .navbar-brand {
  min-height: 61px;
  -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-sGTc2CrO7Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGTc2CrO7Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGTc2CrO7Q .dropdown-item.active,
.cid-sGTc2CrO7Q .dropdown-item:active {
  background-color: transparent;
}
.cid-sGTc2CrO7Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGTc2CrO7Q .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGTc2CrO7Q .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGTc2CrO7Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGTc2CrO7Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGTc2CrO7Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGTc2CrO7Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGTc2CrO7Q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGTc2CrO7Q .navbar-buttons {
  text-align: inherit;
}
.cid-sGTc2CrO7Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGTc2CrO7Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGTc2CrO7Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGTc2CrO7Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGTc2CrO7Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGTc2CrO7Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGTc2CrO7Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGTc2CrO7Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGTc2CrO7Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGTc2CrO7Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGTc2CrO7Q .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGTc2CrO7Q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGTc2CrO7Q .icons-menu {
  text-align: inherit;
}
.cid-sGTc2CrO7Q .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGTc2CrO7Q .nav-link:hover,
.cid-sGTc2CrO7Q .dropdown-item:hover,
.cid-sGTc2CrO7Q .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGTc2CrO7Q .navbar {
    height: 77px;
  }
  .cid-sGTc2CrO7Q .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGTc2CrO7Q .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGTc2CrO7Q .icons-menu,
  .cid-sGTc2CrO7Q .navbar-buttons,
  .cid-sGTc2CrO7Q .contact-block,
  .cid-sGTc2CrO7Q .text-column {
    text-align: center !important;
  }
}
.cid-sGTc2CrO7Q .icons-menu,
.cid-sGTc2CrO7Q .navbar-buttons,
.cid-sGTc2CrO7Q .contact-block,
.cid-sGTc2CrO7Q .text-column {
  color: #cccccc;
}
.cid-sGTc2D4aKQ {
  overflow: hidden !important;
  background-image: url("../../../assets/images/mountains-2691172-1920-1920x1280.jpg");
}
.cid-sGTc2D4aKQ .container-fluid {
  padding: 0 3rem;
}
.cid-sGTc2D4aKQ .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGTc2D4aKQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGTc2D4aKQ h1 {
  margin-bottom: 1rem;
}
.cid-sGTc2D4aKQ .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGTc2D4aKQ .btn-line {
  margin-top: 3rem;
}
.cid-sGTc2D4aKQ p {
  margin-bottom: 0;
}
.cid-sGTc2D4aKQ .mbr-text,
.cid-sGTc2D4aKQ .mbr-section-btn {
  color: #ffffff;
}
.cid-sGTcleo1pL {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sGTcleo1pL .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-sGTcleo1pL .card .card-img img {
  transition: all .5s;
}
.cid-sGTcleo1pL .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sGTcleo1pL .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sGTcleo1pL .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGTcleo1pL .first-card {
  display: block;
}
.cid-sGTcleo1pL .first-card .card-wrapper {
  height: 100%;
}
.cid-sGTcleo1pL .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-sGTcleo1pL .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGTcleo1pL .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-sGTcleo1pL .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGTcleo1pL .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGTcleo1pL .first-row,
.cid-sGTcleo1pL .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sGTcleo1pL .first-row .card .card-wrapper,
.cid-sGTcleo1pL .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sGTcleo1pL .first-row .card .card-wrapper .card-img,
.cid-sGTcleo1pL .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sGTcleo1pL .first-row .card .card-wrapper .card-img img,
.cid-sGTcleo1pL .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sGTcleo1pL .first-row,
  .cid-sGTcleo1pL .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGTcleo1pL .first-row .card .card-wrapper .card-img,
  .cid-sGTcleo1pL .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGTcleo1pL .first-row .card .card-wrapper .card-img img,
  .cid-sGTcleo1pL .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sGTcleo1pL .first-row .caption,
.cid-sGTcleo1pL .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-sGTcleo1pL .first-row .caption .price,
.cid-sGTcleo1pL .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-sGTcleo1pL .first-row {
  padding-bottom: 1rem;
}
.cid-sGTcleo1pL .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sGTcleo1pL .first-card,
  .cid-sGTcleo1pL .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGTcleo1pL .first-card {
    padding-bottom: 2rem;
  }
  .cid-sGTcleo1pL .only-first-row {
    height: 100%;
  }
}
.cid-sGTcleo1pL .main-title {
  color: #c2272d;
}
.cid-sGTdwmP3cN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
.cid-sGTdwmP3cN .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-sGTdwmP3cN .card .card-img img {
  transition: all .5s;
}
.cid-sGTdwmP3cN .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sGTdwmP3cN .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sGTdwmP3cN .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGTdwmP3cN .first-card {
  display: block;
}
.cid-sGTdwmP3cN .first-card .card-wrapper {
  height: 100%;
}
.cid-sGTdwmP3cN .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-sGTdwmP3cN .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGTdwmP3cN .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-sGTdwmP3cN .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGTdwmP3cN .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGTdwmP3cN .first-row,
.cid-sGTdwmP3cN .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sGTdwmP3cN .first-row .card .card-wrapper,
.cid-sGTdwmP3cN .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sGTdwmP3cN .first-row .card .card-wrapper .card-img,
.cid-sGTdwmP3cN .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sGTdwmP3cN .first-row .card .card-wrapper .card-img img,
.cid-sGTdwmP3cN .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sGTdwmP3cN .first-row,
  .cid-sGTdwmP3cN .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGTdwmP3cN .first-row .card .card-wrapper .card-img,
  .cid-sGTdwmP3cN .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGTdwmP3cN .first-row .card .card-wrapper .card-img img,
  .cid-sGTdwmP3cN .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sGTdwmP3cN .first-row .caption,
.cid-sGTdwmP3cN .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-sGTdwmP3cN .first-row .caption .price,
.cid-sGTdwmP3cN .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-sGTdwmP3cN .first-row {
  padding-bottom: 1rem;
}
.cid-sGTdwmP3cN .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sGTdwmP3cN .first-card,
  .cid-sGTdwmP3cN .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGTdwmP3cN .first-card {
    padding-bottom: 2rem;
  }
  .cid-sGTdwmP3cN .only-first-row {
    height: 100%;
  }
}
.cid-sGTdwmP3cN .main-title {
  color: #c2272d;
}
.cid-sGTdwmP3cN .first-card-title,
.cid-sGTdwmP3cN .first-card-info {
  color: #c2272d;
}
.cid-sGTdwmP3cN .first-card-text,
.cid-sGTdwmP3cN .card-btn {
  color: #444444;
}
.cid-sGTgCLkdx2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGTgCLkdx2 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sGTgCLkdx2 h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGTgCLkdx2 .mbr-text,
.cid-sGTgCLkdx2 .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sGTgCLkdx2 H1 {
  text-align: center;
  color: #c2272d;
}
.cid-sGTghA90Dw {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sGTghA90Dw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sGTghA90Dw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGTghA90Dw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGTghA90Dw .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sGTghA90Dw .container {
  padding: 0;
}
.cid-sGTghA90Dw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sGTghA90Dw .icon-focus {
  display: none;
}
.cid-sGTghA90Dw .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-sGTghA90Dw .btn-primary-outline:hover {
  background: transparent!important;
  color: #c2272d !important;
}
.cid-sGTghA90Dw .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-sGTghA90Dw li {
  position: relative;
}
.cid-sGTghA90Dw li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-sGTghA90Dw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sGTghA90Dw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sGTghA90Dw .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-sGTghA90Dw .btn {
  font-family: IBM Plex Sans !important;
}
.cid-sGTghA90Dw .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sGTghA90Dw .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-sGTghA90Dw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-sGTghA90Dw li:not(:last-child):after {
    top: 9px;
  }
  .cid-sGTghA90Dw .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-sGThugBjNW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-sGThugBjNW h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sGThugBjNW h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGThugBjNW .mbr-text,
.cid-sGThugBjNW .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sGThugBjNW H1 {
  text-align: center;
  color: #c2272d;
}
.cid-sGThKmMw6Z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f3eee7;
}
.cid-sGThKmMw6Z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sGThKmMw6Z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGThKmMw6Z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGThKmMw6Z .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sGThKmMw6Z .container {
  padding: 0;
}
.cid-sGThKmMw6Z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sGThKmMw6Z .icon-focus {
  display: none;
}
.cid-sGThKmMw6Z .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-sGThKmMw6Z .btn-primary-outline:hover {
  background: transparent!important;
  color: #c2272d !important;
}
.cid-sGThKmMw6Z .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-sGThKmMw6Z li {
  position: relative;
}
.cid-sGThKmMw6Z li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-sGThKmMw6Z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sGThKmMw6Z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sGThKmMw6Z .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-sGThKmMw6Z .btn {
  font-family: IBM Plex Sans !important;
}
.cid-sGThKmMw6Z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sGThKmMw6Z .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-sGThKmMw6Z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-sGThKmMw6Z li:not(:last-child):after {
    top: 9px;
  }
  .cid-sGThKmMw6Z .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-sGTidJgdOX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGTidJgdOX .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-sGTidJgdOX .card .card-img img {
  transition: all .5s;
}
.cid-sGTidJgdOX .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-sGTidJgdOX .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-sGTidJgdOX .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-sGTidJgdOX .first-card {
  display: block;
}
.cid-sGTidJgdOX .first-card .card-wrapper {
  height: 100%;
}
.cid-sGTidJgdOX .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-sGTidJgdOX .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGTidJgdOX .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-sGTidJgdOX .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-sGTidJgdOX .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-sGTidJgdOX .first-row,
.cid-sGTidJgdOX .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-sGTidJgdOX .first-row .card .card-wrapper,
.cid-sGTidJgdOX .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-sGTidJgdOX .first-row .card .card-wrapper .card-img,
.cid-sGTidJgdOX .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-sGTidJgdOX .first-row .card .card-wrapper .card-img img,
.cid-sGTidJgdOX .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-sGTidJgdOX .first-row,
  .cid-sGTidJgdOX .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGTidJgdOX .first-row .card .card-wrapper .card-img,
  .cid-sGTidJgdOX .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGTidJgdOX .first-row .card .card-wrapper .card-img img,
  .cid-sGTidJgdOX .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-sGTidJgdOX .first-row .caption,
.cid-sGTidJgdOX .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-sGTidJgdOX .first-row .caption .price,
.cid-sGTidJgdOX .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-sGTidJgdOX .first-row {
  padding-bottom: 1rem;
}
.cid-sGTidJgdOX .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-sGTidJgdOX .first-card,
  .cid-sGTidJgdOX .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sGTidJgdOX .first-card {
    padding-bottom: 2rem;
  }
  .cid-sGTidJgdOX .only-first-row {
    height: 100%;
  }
}
.cid-sGTidJgdOX .main-title {
  color: #c2272d;
}
.cid-sGTidJgdOX .first-card-title,
.cid-sGTidJgdOX .first-card-info {
  color: #c2272d;
}
.cid-sGTidJgdOX .first-card-text,
.cid-sGTidJgdOX .card-btn {
  color: #444444;
}
.cid-tgD6DEppY4 {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #f3eee7;
}
.cid-tgD6DEppY4 .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-tgD6DEppY4 .card .card-img img {
  transition: all .5s;
}
.cid-tgD6DEppY4 .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-tgD6DEppY4 .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-tgD6DEppY4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tgD6DEppY4 .first-card {
  display: block;
}
.cid-tgD6DEppY4 .first-card .card-wrapper {
  height: 100%;
}
.cid-tgD6DEppY4 .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-tgD6DEppY4 .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tgD6DEppY4 .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-tgD6DEppY4 .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-tgD6DEppY4 .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-tgD6DEppY4 .first-row,
.cid-tgD6DEppY4 .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-tgD6DEppY4 .first-row .card .card-wrapper,
.cid-tgD6DEppY4 .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-tgD6DEppY4 .first-row .card .card-wrapper .card-img,
.cid-tgD6DEppY4 .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-tgD6DEppY4 .first-row .card .card-wrapper .card-img img,
.cid-tgD6DEppY4 .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-tgD6DEppY4 .first-row,
  .cid-tgD6DEppY4 .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tgD6DEppY4 .first-row .card .card-wrapper .card-img,
  .cid-tgD6DEppY4 .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tgD6DEppY4 .first-row .card .card-wrapper .card-img img,
  .cid-tgD6DEppY4 .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-tgD6DEppY4 .first-row .caption,
.cid-tgD6DEppY4 .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-tgD6DEppY4 .first-row .caption .price,
.cid-tgD6DEppY4 .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-tgD6DEppY4 .first-row {
  padding-bottom: 1rem;
}
.cid-tgD6DEppY4 .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tgD6DEppY4 .first-card,
  .cid-tgD6DEppY4 .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tgD6DEppY4 .first-card {
    padding-bottom: 2rem;
  }
  .cid-tgD6DEppY4 .only-first-row {
    height: 100%;
  }
}
.cid-tgD6DEppY4 .main-title {
  color: #c2272d;
}
.cid-sGTiQ4a5CX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGTiQ4a5CX h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sGTiQ4a5CX h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGTiQ4a5CX .mbr-text,
.cid-sGTiQ4a5CX .mbr-section-btn {
  color: #767676;
  text-align: center;
}
.cid-sGTiQ4a5CX H1 {
  text-align: center;
  color: #c2272d;
}
.cid-sGTiQVFk7z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sGTiQVFk7z .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sGTiQVFk7z .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGTiQVFk7z .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sGTiQVFk7z .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sGTiQVFk7z .container {
  padding: 0;
}
.cid-sGTiQVFk7z .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sGTiQVFk7z .icon-focus {
  display: none;
}
.cid-sGTiQVFk7z .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-sGTiQVFk7z .btn-primary-outline:hover {
  background: transparent!important;
  color: #c2272d !important;
}
.cid-sGTiQVFk7z .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-sGTiQVFk7z li {
  position: relative;
}
.cid-sGTiQVFk7z li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-sGTiQVFk7z .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sGTiQVFk7z .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sGTiQVFk7z .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-sGTiQVFk7z .btn {
  font-family: IBM Plex Sans !important;
}
.cid-sGTiQVFk7z .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-sGTiQVFk7z .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-sGTiQVFk7z .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-sGTiQVFk7z li:not(:last-child):after {
    top: 9px;
  }
  .cid-sGTiQVFk7z .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-sGTc2FhWIO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGTc2FhWIO .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGTc2FhWIO .form-row {
  justify-content: flex-end;
}
.cid-sGTc2FhWIO .form-control,
.cid-sGTc2FhWIO .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGTc2FhWIO .form-control:hover,
.cid-sGTc2FhWIO .field-input:hover,
.cid-sGTc2FhWIO .form-control:focus,
.cid-sGTc2FhWIO .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGTc2FhWIO input::-webkit-input-placeholder,
.cid-sGTc2FhWIO textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGTc2FhWIO input:-moz-placeholder,
.cid-sGTc2FhWIO textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGTc2FhWIO .jq-selectbox li,
.cid-sGTc2FhWIO .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGTc2FhWIO .jq-selectbox li:hover,
.cid-sGTc2FhWIO .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGTc2FhWIO .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGTc2FhWIO .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGTc2FhWIO span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGTc2FhWIO textarea {
  min-height: 150px;
}
.cid-sGTc2FhWIO h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGTc2FhWIO h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGTc2FhWIO .mbr-text,
.cid-sGTc2FhWIO .mbr-section-btn {
  color: #767676;
}
.cid-sGTc2FhWIO LABEL {
  color: #c2272d;
}
.cid-sGTc2FhWIO H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGTsduUXUp .nav-item:focus,
.cid-sGTsduUXUp .nav-link:focus {
  outline: none;
}
.cid-sGTsduUXUp .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGTsduUXUp .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGTsduUXUp .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGTsduUXUp .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGTsduUXUp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGTsduUXUp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGTsduUXUp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGTsduUXUp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGTsduUXUp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGTsduUXUp .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGTsduUXUp .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGTsduUXUp .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGTsduUXUp .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGTsduUXUp .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGTsduUXUp .navbar .navbar-collapse.show,
.cid-sGTsduUXUp .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGTsduUXUp .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGTsduUXUp .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGTsduUXUp .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGTsduUXUp .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGTsduUXUp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGTsduUXUp .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGTsduUXUp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGTsduUXUp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGTsduUXUp .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-sGTsduUXUp .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGTsduUXUp .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGTsduUXUp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGTsduUXUp .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGTsduUXUp .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGTsduUXUp .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGTsduUXUp .navbar-brand {
  min-height: 61px;
  -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-sGTsduUXUp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGTsduUXUp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGTsduUXUp .dropdown-item.active,
.cid-sGTsduUXUp .dropdown-item:active {
  background-color: transparent;
}
.cid-sGTsduUXUp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGTsduUXUp .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGTsduUXUp .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGTsduUXUp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGTsduUXUp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGTsduUXUp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGTsduUXUp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGTsduUXUp ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGTsduUXUp .navbar-buttons {
  text-align: inherit;
}
.cid-sGTsduUXUp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGTsduUXUp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGTsduUXUp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGTsduUXUp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGTsduUXUp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGTsduUXUp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGTsduUXUp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGTsduUXUp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGTsduUXUp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGTsduUXUp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGTsduUXUp .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGTsduUXUp .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGTsduUXUp .icons-menu {
  text-align: inherit;
}
.cid-sGTsduUXUp .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGTsduUXUp .nav-link:hover,
.cid-sGTsduUXUp .dropdown-item:hover,
.cid-sGTsduUXUp .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGTsduUXUp .navbar {
    height: 77px;
  }
  .cid-sGTsduUXUp .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGTsduUXUp .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGTsduUXUp .icons-menu,
  .cid-sGTsduUXUp .navbar-buttons,
  .cid-sGTsduUXUp .contact-block,
  .cid-sGTsduUXUp .text-column {
    text-align: center !important;
  }
}
.cid-sGTsduUXUp .icons-menu,
.cid-sGTsduUXUp .navbar-buttons,
.cid-sGTsduUXUp .contact-block,
.cid-sGTsduUXUp .text-column {
  color: #cccccc;
}
.cid-sGTsdvKitr {
  overflow: hidden !important;
  background-image: url("../../../assets/images/stok-43-1365x2048.jpg");
}
.cid-sGTsdvKitr .container-fluid {
  padding: 0 3rem;
}
.cid-sGTsdvKitr .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGTsdvKitr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGTsdvKitr h1 {
  margin-bottom: 1rem;
}
.cid-sGTsdvKitr .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGTsdvKitr .btn-line {
  margin-top: 3rem;
}
.cid-sGTsdvKitr p {
  margin-bottom: 0;
}
.cid-sGTsdvKitr .mbr-text,
.cid-sGTsdvKitr .mbr-section-btn {
  color: #ffffff;
}
.cid-sGTwbtfesl {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #f3eee7;
}
.cid-sGTwbtfesl .btn {
  border: 1px solid #efefef;
}
.cid-sGTwbtfesl .row {
  align-items: center;
}
.cid-sGTwbtfesl .mbr-iconfont {
  color: #5b6c8f;
}
@media (max-width: 767px) {
  .cid-sGTwbtfesl .row {
    text-align: center;
  }
  .cid-sGTwbtfesl .social-row {
    justify-content: center;
  }
}
.cid-sGTwbtfesl .list {
  list-style: none;
  padding-left: 0;
  color: #5b6c8f;
}
@media (max-width: 991px) {
  .cid-sGTwbtfesl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sGTwbtfesl .list {
    margin-bottom: 0rem;
  }
}
.cid-sGTwbtfesl .google-map {
  height: 34rem;
  position: relative;
}
.cid-sGTwbtfesl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sGTwbtfesl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sGTwbtfesl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sGTwbtfesl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sGTwbtfesl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sGTwbtfesl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0rem;
  height: 2rem;
  width: 2rem;
}
.cid-sGTwbtfesl .mbr-section-subtitle {
  color: #c2272d;
}
.cid-sGTwbtfesl .mbr-text {
  color: #333333;
}
.cid-sGTwbtfesl .phone {
  color: #c2272d;
}
.cid-sGTxRFdy16 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sGTxRFdy16 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGTxRFdy16 .form-control,
.cid-sGTxRFdy16 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #333333;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGTxRFdy16 .form-control::-webkit-input-placeholder,
.cid-sGTxRFdy16 .field-input::-webkit-input-placeholder,
.cid-sGTxRFdy16 .form-control::-webkit-input-placeholder,
.cid-sGTxRFdy16 .field-input::-webkit-input-placeholder {
  color: #333333;
}
.cid-sGTxRFdy16 .form-control:-moz-placeholder,
.cid-sGTxRFdy16 .field-input:-moz-placeholder,
.cid-sGTxRFdy16 .form-control:-moz-placeholder,
.cid-sGTxRFdy16 .field-input:-moz-placeholder {
  color: #333333;
}
.cid-sGTxRFdy16 .form-control:hover,
.cid-sGTxRFdy16 .field-input:hover,
.cid-sGTxRFdy16 .form-control:focus,
.cid-sGTxRFdy16 .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sGTxRFdy16 .form-control:hover::-webkit-input-placeholder,
.cid-sGTxRFdy16 .field-input:hover::-webkit-input-placeholder,
.cid-sGTxRFdy16 .form-control:focus::-webkit-input-placeholder,
.cid-sGTxRFdy16 .field-input:focus::-webkit-input-placeholder,
.cid-sGTxRFdy16 .form-control:hover::-webkit-input-placeholder,
.cid-sGTxRFdy16 .field-input:hover::-webkit-input-placeholder,
.cid-sGTxRFdy16 .form-control:focus::-webkit-input-placeholder,
.cid-sGTxRFdy16 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sGTxRFdy16 .form-control:hover:-moz-placeholder,
.cid-sGTxRFdy16 .field-input:hover:-moz-placeholder,
.cid-sGTxRFdy16 .form-control:focus:-moz-placeholder,
.cid-sGTxRFdy16 .field-input:focus:-moz-placeholder,
.cid-sGTxRFdy16 .form-control:hover:-moz-placeholder,
.cid-sGTxRFdy16 .field-input:hover:-moz-placeholder,
.cid-sGTxRFdy16 .form-control:focus:-moz-placeholder,
.cid-sGTxRFdy16 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sGTxRFdy16 .jq-number__spin:hover,
.cid-sGTxRFdy16 .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGTxRFdy16 .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #333333;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGTxRFdy16 .jq-selectbox li,
.cid-sGTxRFdy16 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGTxRFdy16 .jq-selectbox li:hover,
.cid-sGTxRFdy16 .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sGTxRFdy16 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sGTxRFdy16 .jq-number__spin.minus:hover:after,
.cid-sGTxRFdy16 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sGTxRFdy16 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sGTxRFdy16 .jq-number__spin.minus:after,
.cid-sGTxRFdy16 .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-sGTxRFdy16 input::-webkit-clear-button {
  display: none;
}
.cid-sGTxRFdy16 input::-webkit-inner-spin-button {
  display: none;
}
.cid-sGTxRFdy16 input::-webkit-outer-spin-button {
  display: none;
}
.cid-sGTxRFdy16 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sGTxRFdy16 H4 {
  color: #c2272d;
}
.cid-sGTxRFdy16 LABEL {
  color: #c2272d;
}
.cid-sGTsdBCXlw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
.cid-sGTsdBCXlw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGTsdBCXlw .form-row {
  justify-content: flex-end;
}
.cid-sGTsdBCXlw .form-control,
.cid-sGTsdBCXlw .field-input {
  padding: 0.5rem;
  background-color: #f3eee7;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGTsdBCXlw .form-control:hover,
.cid-sGTsdBCXlw .field-input:hover,
.cid-sGTsdBCXlw .form-control:focus,
.cid-sGTsdBCXlw .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGTsdBCXlw input::-webkit-input-placeholder,
.cid-sGTsdBCXlw textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGTsdBCXlw input:-moz-placeholder,
.cid-sGTsdBCXlw textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGTsdBCXlw .jq-selectbox li,
.cid-sGTsdBCXlw .jq-selectbox li {
  background-color: #f3eee7;
  color: #000000;
}
.cid-sGTsdBCXlw .jq-selectbox li:hover,
.cid-sGTsdBCXlw .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGTsdBCXlw .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3eee7;
}
.cid-sGTsdBCXlw .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGTsdBCXlw span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGTsdBCXlw textarea {
  min-height: 150px;
}
.cid-sGTsdBCXlw h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGTsdBCXlw h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGTsdBCXlw .mbr-text,
.cid-sGTsdBCXlw .mbr-section-btn {
  color: #767676;
}
.cid-sGTsdBCXlw LABEL {
  color: #c2272d;
}
.cid-sGTsdBCXlw H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGQvsSuNG8 .nav-item:focus,
.cid-sGQvsSuNG8 .nav-link:focus {
  outline: none;
}
.cid-sGQvsSuNG8 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGQvsSuNG8 .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGQvsSuNG8 .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGQvsSuNG8 .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGQvsSuNG8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGQvsSuNG8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGQvsSuNG8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGQvsSuNG8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGQvsSuNG8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGQvsSuNG8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGQvsSuNG8 .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGQvsSuNG8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGQvsSuNG8 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGQvsSuNG8 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGQvsSuNG8 .navbar .navbar-collapse.show,
.cid-sGQvsSuNG8 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGQvsSuNG8 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGQvsSuNG8 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGQvsSuNG8 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGQvsSuNG8 .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGQvsSuNG8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGQvsSuNG8 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGQvsSuNG8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGQvsSuNG8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGQvsSuNG8 .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-sGQvsSuNG8 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGQvsSuNG8 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGQvsSuNG8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGQvsSuNG8 .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGQvsSuNG8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGQvsSuNG8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGQvsSuNG8 .navbar-brand {
  min-height: 61px;
  -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-sGQvsSuNG8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGQvsSuNG8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGQvsSuNG8 .dropdown-item.active,
.cid-sGQvsSuNG8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sGQvsSuNG8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGQvsSuNG8 .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGQvsSuNG8 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGQvsSuNG8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGQvsSuNG8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGQvsSuNG8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGQvsSuNG8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGQvsSuNG8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGQvsSuNG8 .navbar-buttons {
  text-align: inherit;
}
.cid-sGQvsSuNG8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGQvsSuNG8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGQvsSuNG8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGQvsSuNG8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGQvsSuNG8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGQvsSuNG8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGQvsSuNG8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGQvsSuNG8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGQvsSuNG8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGQvsSuNG8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGQvsSuNG8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGQvsSuNG8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGQvsSuNG8 .icons-menu {
  text-align: inherit;
}
.cid-sGQvsSuNG8 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGQvsSuNG8 .nav-link:hover,
.cid-sGQvsSuNG8 .dropdown-item:hover,
.cid-sGQvsSuNG8 .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGQvsSuNG8 .navbar {
    height: 77px;
  }
  .cid-sGQvsSuNG8 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGQvsSuNG8 .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGQvsSuNG8 .icons-menu,
  .cid-sGQvsSuNG8 .navbar-buttons,
  .cid-sGQvsSuNG8 .contact-block,
  .cid-sGQvsSuNG8 .text-column {
    text-align: center !important;
  }
}
.cid-sGQvsSuNG8 .icons-menu,
.cid-sGQvsSuNG8 .navbar-buttons,
.cid-sGQvsSuNG8 .contact-block,
.cid-sGQvsSuNG8 .text-column {
  color: #cccccc;
}
.cid-sGQvsTeAtI {
  overflow: hidden !important;
  background-image: url("../../../assets/images/heritage-chulli-bagh-villa-2000x1333.jpg");
}
.cid-sGQvsTeAtI .container-fluid {
  padding: 0 3rem;
}
.cid-sGQvsTeAtI .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGQvsTeAtI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGQvsTeAtI h1 {
  margin-bottom: 1rem;
}
.cid-sGQvsTeAtI .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-sGQvsTeAtI .btn-line {
  margin-top: 3rem;
}
.cid-sGQvsTeAtI p {
  margin-bottom: 0;
}
.cid-sGQvsTeAtI .mbr-text,
.cid-sGQvsTeAtI .mbr-section-btn {
  color: #ffffff;
}
.cid-sGQvsTKwYH {
  background-color: #f3eee7;
}
.cid-sGQvsTKwYH H1 {
  color: #132c70;
}
.cid-sGQvsTKwYH .mbr-text,
.cid-sGQvsTKwYH .mbr-section-btn {
  color: #444444;
}
.cid-sGQvsTKwYH H3 {
  color: #132c70;
}
.cid-sGQvsTKwYH .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-sGQvsTKwYH .mbr-list li {
  margin-bottom: 1rem;
}
.cid-sGQvsTKwYH .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-sGQvsTKwYH p {
  margin: 0;
}
.cid-sGQvsTKwYH a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-sGQvsTKwYH .row {
    display: flex;
    flex-direction: column;
  }
  .cid-sGQvsTKwYH .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-sGQvsTKwYH .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-sGQvsTKwYH .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-sGQvsTKwYH .nav-dropdown .link {
  font-weight: 300;
}
.cid-sGQvsTKwYH H2 {
  color: #c2272d;
}
.cid-sGQvsV0pu6 {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sGQvsV0pu6 {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.cid-sGQvsV0pu6 .animated-element {
  color: #efefef;
}
.cid-sGQvsV0pu6 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-sGQvsV0pu6 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-sGQvsV0pu6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sGQvsV0pu6 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sGQvsV0pu6 .mbr-white {
    padding-left: 5rem;
  }
  .cid-sGQvsV0pu6 .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-sGQvsV0pu6 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-sGQvsV0pu6 .container-fluid {
  max-width: 1300px;
}
.cid-sGQvsV0pu6 .mbr-section-title {
  margin-bottom: 1rem;
  color: #c2272d;
}
.cid-sGQvsV0pu6 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-sGQvsV0pu6 .btn-line {
  margin-top: 3rem;
}
.cid-sGQvsV0pu6 .mbr-section-subtitle,
.cid-sGQvsV0pu6 .mbr-section-btn {
  color: #444444;
}
.cid-sGQwtvPK87 {
  overflow: hidden !important;
  background-image: url("../../../assets/images/chulli-bagh-room-13-2000x1335.jpg");
}
.cid-sGQwtvPK87 .container-fluid {
  padding: 0 3rem;
}
.cid-sGQwtvPK87 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGQwtvPK87 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sGQwtvPK87 h1 {
  margin-bottom: 1rem;
}
.cid-sGQwtvPK87 .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-sGQwtvPK87 .btn-line {
  margin-top: 3rem;
}
.cid-sGQwtvPK87 p {
  margin-bottom: 0;
}
.cid-sGQwtvPK87 .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-sGQwtvPK87 .mbr-text,
.cid-sGQwtvPK87 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sGQvsVJPnJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sGQvsVJPnJ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sGQvsVJPnJ .form-row {
  justify-content: flex-end;
}
.cid-sGQvsVJPnJ .form-control,
.cid-sGQvsVJPnJ .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  border-bottom: 1px solid;
  border-color: #1c1c1c;
  color: #000000 !important;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGQvsVJPnJ .form-control:hover,
.cid-sGQvsVJPnJ .field-input:hover,
.cid-sGQvsVJPnJ .form-control:focus,
.cid-sGQvsVJPnJ .field-input:focus {
  background-color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sGQvsVJPnJ input::-webkit-input-placeholder,
.cid-sGQvsVJPnJ textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-sGQvsVJPnJ input:-moz-placeholder,
.cid-sGQvsVJPnJ textarea:-moz-placeholder {
  color: #767676;
}
.cid-sGQvsVJPnJ .jq-selectbox li,
.cid-sGQvsVJPnJ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQvsVJPnJ .jq-selectbox li:hover,
.cid-sGQvsVJPnJ .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGQvsVJPnJ .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQvsVJPnJ .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGQvsVJPnJ span.value.form-control {
  padding: 1rem;
  border-bottom: none;
}
.cid-sGQvsVJPnJ textarea {
  min-height: 150px;
}
.cid-sGQvsVJPnJ h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: 0rem;
}
.cid-sGQvsVJPnJ h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #232323;
  margin-left: 10px;
}
.cid-sGQvsVJPnJ .mbr-text,
.cid-sGQvsVJPnJ .mbr-section-btn {
  color: #767676;
}
.cid-sGQvsVJPnJ LABEL {
  color: #c2272d;
}
.cid-sGQvsVJPnJ H1 {
  color: #c2272d;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-t3qZfHFySA .nav-item:focus,
.cid-t3qZfHFySA .nav-link:focus {
  outline: none;
}
.cid-t3qZfHFySA .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-t3qZfHFySA .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-t3qZfHFySA .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-t3qZfHFySA .book-now-header {
    margin-right: -120px;
  }
}
.cid-t3qZfHFySA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t3qZfHFySA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3qZfHFySA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t3qZfHFySA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t3qZfHFySA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3qZfHFySA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-t3qZfHFySA .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-t3qZfHFySA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t3qZfHFySA .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-t3qZfHFySA .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-t3qZfHFySA .navbar .navbar-collapse.show,
.cid-t3qZfHFySA .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-t3qZfHFySA .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-t3qZfHFySA .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-t3qZfHFySA .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-t3qZfHFySA .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-t3qZfHFySA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t3qZfHFySA .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-t3qZfHFySA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3qZfHFySA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3qZfHFySA .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-t3qZfHFySA .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-t3qZfHFySA .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-t3qZfHFySA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t3qZfHFySA .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-t3qZfHFySA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t3qZfHFySA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t3qZfHFySA .navbar-brand {
  min-height: 61px;
  -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-t3qZfHFySA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3qZfHFySA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3qZfHFySA .dropdown-item.active,
.cid-t3qZfHFySA .dropdown-item:active {
  background-color: transparent;
}
.cid-t3qZfHFySA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3qZfHFySA .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-t3qZfHFySA .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-t3qZfHFySA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-t3qZfHFySA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-t3qZfHFySA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3qZfHFySA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3qZfHFySA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t3qZfHFySA .navbar-buttons {
  text-align: inherit;
}
.cid-t3qZfHFySA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t3qZfHFySA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-t3qZfHFySA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t3qZfHFySA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t3qZfHFySA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t3qZfHFySA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t3qZfHFySA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3qZfHFySA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t3qZfHFySA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t3qZfHFySA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t3qZfHFySA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t3qZfHFySA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t3qZfHFySA .icons-menu {
  text-align: inherit;
}
.cid-t3qZfHFySA .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-t3qZfHFySA .nav-link:hover,
.cid-t3qZfHFySA .dropdown-item:hover,
.cid-t3qZfHFySA .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t3qZfHFySA .navbar {
    height: 77px;
  }
  .cid-t3qZfHFySA .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-t3qZfHFySA .navbar-collapse .img-column {
    display: none;
  }
  .cid-t3qZfHFySA .icons-menu,
  .cid-t3qZfHFySA .navbar-buttons,
  .cid-t3qZfHFySA .contact-block,
  .cid-t3qZfHFySA .text-column {
    text-align: center !important;
  }
}
.cid-t3qZfHFySA .icons-menu,
.cid-t3qZfHFySA .navbar-buttons,
.cid-t3qZfHFySA .contact-block,
.cid-t3qZfHFySA .text-column {
  color: #cccccc;
}
.cid-t3qZfJHnJG {
  overflow: hidden !important;
  background-image: url("../../../assets/images/ladakh-6051984-1920-1920x1015.jpeg");
}
.cid-t3qZfJHnJG .container-fluid {
  padding: 0 3rem;
}
.cid-t3qZfJHnJG .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-t3qZfJHnJG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t3qZfJHnJG h1 {
  margin-bottom: 1rem;
}
.cid-t3qZfJHnJG .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}
.cid-t3qZfJHnJG .btn-line {
  margin-top: 3rem;
}
.cid-t3qZfJHnJG p {
  margin-bottom: 0;
}
.cid-t3qZfJHnJG .mbr-text,
.cid-t3qZfJHnJG .mbr-section-btn {
  color: #ffffff;
}
.cid-t3rfCUXgrH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t3rfCUXgrH .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t3rfCUXgrH .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t3rfCUXgrH .title {
    width: 100% !important;
  }
}
.cid-t3rfCUXgrH .mbr-text,
.cid-t3rfCUXgrH .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t3rfCUXgrH .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t3rfCbUhxR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t3rfCbUhxR .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t3rfCbUhxR .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t3rfCbUhxR .title {
    width: 100% !important;
  }
}
.cid-t3rfCbUhxR .mbr-text,
.cid-t3rfCbUhxR .mbr-section-btn DIV {
  text-align: left;
}
.cid-t3rfCbUhxR .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t3rfCbUhxR .mbr-text,
.cid-t3rfCbUhxR .mbr-section-btn {
  color: #444444;
}
.cid-t3qZfSSf7i {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-t3qZfSSf7i .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-t3qZfSSf7i .row {
  border-bottom: 1px solid #808080;
}
.cid-t3qZfSSf7i H2 {
  color: #e7272d;
}
.cid-t3qZfSSf7i .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-t3qZfSSf7i .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-t3qZfSSf7i .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-t3qZfSSf7i .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-t3qZfSSf7i .col-lg-12 {
  overflow: hidden;
}
.cid-t3qZfSSf7i H4 {
  color: #fff4e2;
}
.cid-t3qZfSSf7i .mbr-text,
.cid-t3qZfSSf7i .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t3qZfSSf7i .logo-wrap:before {
    content: none;
  }
  .cid-t3qZfSSf7i .logo-wrap:after {
    content: none;
  }
}
.cid-t3qZfSSf7i H3 {
  color: #e6c8ab;
}
.cid-t3qZfUi797 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t3qZfUi797 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-t3qZfUi797 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t3qZfUi797 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-t3qZfUi797 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-t3qZfUi797 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-t3qZfUi797 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-t3qZfUi797 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-t3qZfUi797 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-t3qZfUi797 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-t3qZfUi797 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-t4FIg6exWx .nav-item:focus,
.cid-t4FIg6exWx .nav-link:focus {
  outline: none;
}
.cid-t4FIg6exWx .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-t4FIg6exWx .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-t4FIg6exWx .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-t4FIg6exWx .book-now-header {
    margin-right: -120px;
  }
}
.cid-t4FIg6exWx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t4FIg6exWx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4FIg6exWx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t4FIg6exWx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t4FIg6exWx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4FIg6exWx .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-t4FIg6exWx .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-t4FIg6exWx .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t4FIg6exWx .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-t4FIg6exWx .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-t4FIg6exWx .navbar .navbar-collapse.show,
.cid-t4FIg6exWx .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-t4FIg6exWx .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-t4FIg6exWx .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-t4FIg6exWx .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-t4FIg6exWx .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-t4FIg6exWx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t4FIg6exWx .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-t4FIg6exWx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4FIg6exWx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4FIg6exWx .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-t4FIg6exWx .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-t4FIg6exWx .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-t4FIg6exWx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t4FIg6exWx .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-t4FIg6exWx .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t4FIg6exWx .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t4FIg6exWx .navbar-brand {
  min-height: 61px;
  -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-t4FIg6exWx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4FIg6exWx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4FIg6exWx .dropdown-item.active,
.cid-t4FIg6exWx .dropdown-item:active {
  background-color: transparent;
}
.cid-t4FIg6exWx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4FIg6exWx .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-t4FIg6exWx .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-t4FIg6exWx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-t4FIg6exWx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-t4FIg6exWx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4FIg6exWx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4FIg6exWx ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4FIg6exWx .navbar-buttons {
  text-align: inherit;
}
.cid-t4FIg6exWx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4FIg6exWx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-t4FIg6exWx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4FIg6exWx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4FIg6exWx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4FIg6exWx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4FIg6exWx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4FIg6exWx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4FIg6exWx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4FIg6exWx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4FIg6exWx .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t4FIg6exWx .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t4FIg6exWx .icons-menu {
  text-align: inherit;
}
.cid-t4FIg6exWx .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-t4FIg6exWx .nav-link:hover,
.cid-t4FIg6exWx .dropdown-item:hover,
.cid-t4FIg6exWx .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4FIg6exWx .navbar {
    height: 77px;
  }
  .cid-t4FIg6exWx .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-t4FIg6exWx .navbar-collapse .img-column {
    display: none;
  }
  .cid-t4FIg6exWx .icons-menu,
  .cid-t4FIg6exWx .navbar-buttons,
  .cid-t4FIg6exWx .contact-block,
  .cid-t4FIg6exWx .text-column {
    text-align: center !important;
  }
}
.cid-t4FIg6exWx .icons-menu,
.cid-t4FIg6exWx .navbar-buttons,
.cid-t4FIg6exWx .contact-block,
.cid-t4FIg6exWx .text-column {
  color: #cccccc;
}
.cid-t4FIg6S5XR {
  overflow: hidden !important;
  background-image: url("../../../assets/images/ladakh-6051984-1920-1920x1015.jpeg");
}
.cid-t4FIg6S5XR .container-fluid {
  padding: 0 3rem;
}
.cid-t4FIg6S5XR .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-t4FIg6S5XR .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t4FIg6S5XR h1 {
  margin-bottom: 1rem;
}
.cid-t4FIg6S5XR .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}
.cid-t4FIg6S5XR .btn-line {
  margin-top: 3rem;
}
.cid-t4FIg6S5XR p {
  margin-bottom: 0;
}
.cid-t4FIg6S5XR .mbr-text,
.cid-t4FIg6S5XR .mbr-section-btn {
  color: #ffffff;
}
.cid-t4FIg7fExQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FIg7fExQ .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FIg7fExQ .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FIg7fExQ .title {
    width: 100% !important;
  }
}
.cid-t4FIg7fExQ .mbr-text,
.cid-t4FIg7fExQ .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FIg7fExQ .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FJLWdnVL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FJLWdnVL .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FJLWdnVL .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FJLWdnVL .title {
    width: 100% !important;
  }
}
.cid-t4FJLWdnVL .mbr-text,
.cid-t4FJLWdnVL .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FJLWdnVL .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FJMvvwRO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FJMvvwRO .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FJMvvwRO .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FJMvvwRO .title {
    width: 100% !important;
  }
}
.cid-t4FJMvvwRO .mbr-text,
.cid-t4FJMvvwRO .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FJMvvwRO .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FJNoirZr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FJNoirZr .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FJNoirZr .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FJNoirZr .title {
    width: 100% !important;
  }
}
.cid-t4FJNoirZr .mbr-text,
.cid-t4FJNoirZr .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FJNoirZr .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FM16NUL3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FM16NUL3 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FM16NUL3 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FM16NUL3 .title {
    width: 100% !important;
  }
}
.cid-t4FM16NUL3 .mbr-text,
.cid-t4FM16NUL3 .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FM16NUL3 .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FM5Q4DVV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FM5Q4DVV .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FM5Q4DVV .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FM5Q4DVV .title {
    width: 100% !important;
  }
}
.cid-t4FM5Q4DVV .mbr-text,
.cid-t4FM5Q4DVV .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FM5Q4DVV .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FM6hQKzS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FM6hQKzS .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FM6hQKzS .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FM6hQKzS .title {
    width: 100% !important;
  }
}
.cid-t4FM6hQKzS .mbr-text,
.cid-t4FM6hQKzS .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FM6hQKzS .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FMzPn6vP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FMzPn6vP .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FMzPn6vP .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FMzPn6vP .title {
    width: 100% !important;
  }
}
.cid-t4FMzPn6vP .mbr-text,
.cid-t4FMzPn6vP .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FMzPn6vP .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FMAkkq00 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FMAkkq00 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FMAkkq00 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FMAkkq00 .title {
    width: 100% !important;
  }
}
.cid-t4FMAkkq00 .mbr-text,
.cid-t4FMAkkq00 .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FMAkkq00 .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FMAJqrpN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FMAJqrpN .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FMAJqrpN .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FMAJqrpN .title {
    width: 100% !important;
  }
}
.cid-t4FMAJqrpN .mbr-text,
.cid-t4FMAJqrpN .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FMAJqrpN .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FNc11EKt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FNc11EKt .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FNc11EKt .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FNc11EKt .title {
    width: 100% !important;
  }
}
.cid-t4FNc11EKt .mbr-text,
.cid-t4FNc11EKt .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FNc11EKt .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FNcqYsZE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FNcqYsZE .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FNcqYsZE .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FNcqYsZE .title {
    width: 100% !important;
  }
}
.cid-t4FNcqYsZE .mbr-text,
.cid-t4FNcqYsZE .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FNcqYsZE .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FNcVF5tf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FNcVF5tf .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FNcVF5tf .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FNcVF5tf .title {
    width: 100% !important;
  }
}
.cid-t4FNcVF5tf .mbr-text,
.cid-t4FNcVF5tf .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FNcVF5tf .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FIg7tzet {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FIg7tzet .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FIg7tzet .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FIg7tzet .title {
    width: 100% !important;
  }
}
.cid-t4FIg7tzet .mbr-text,
.cid-t4FIg7tzet .mbr-section-btn DIV {
  text-align: left;
}
.cid-t4FIg7tzet .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FIg7tzet .mbr-text,
.cid-t4FIg7tzet .mbr-section-btn {
  color: #444444;
}
.cid-t4FNSaCHSa {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f3eee7;
}
.cid-t4FNSaCHSa .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FNSaCHSa .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FNSaCHSa .title {
    width: 100% !important;
  }
}
.cid-t4FNSaCHSa .mbr-text,
.cid-t4FNSaCHSa .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FNSaCHSa .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FIg7JXZz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-t4FIg7JXZz .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-t4FIg7JXZz .row {
  border-bottom: 1px solid #808080;
}
.cid-t4FIg7JXZz H2 {
  color: #e7272d;
}
.cid-t4FIg7JXZz .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-t4FIg7JXZz .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-t4FIg7JXZz .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-t4FIg7JXZz .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-t4FIg7JXZz .col-lg-12 {
  overflow: hidden;
}
.cid-t4FIg7JXZz H4 {
  color: #fff4e2;
}
.cid-t4FIg7JXZz .mbr-text,
.cid-t4FIg7JXZz .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t4FIg7JXZz .logo-wrap:before {
    content: none;
  }
  .cid-t4FIg7JXZz .logo-wrap:after {
    content: none;
  }
}
.cid-t4FIg7JXZz H3 {
  color: #e6c8ab;
}
.cid-t4FIg83Q4L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4FIg83Q4L .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-t4FIg83Q4L .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t4FIg83Q4L .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-t4FIg83Q4L .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-t4FIg83Q4L .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-t4FIg83Q4L .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-t4FIg83Q4L .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-t4FIg83Q4L .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-t4FIg83Q4L .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-t4FIg83Q4L .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-t4FRoqUpFJ .nav-item:focus,
.cid-t4FRoqUpFJ .nav-link:focus {
  outline: none;
}
.cid-t4FRoqUpFJ .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-t4FRoqUpFJ .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-t4FRoqUpFJ .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-t4FRoqUpFJ .book-now-header {
    margin-right: -120px;
  }
}
.cid-t4FRoqUpFJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t4FRoqUpFJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4FRoqUpFJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t4FRoqUpFJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t4FRoqUpFJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4FRoqUpFJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-t4FRoqUpFJ .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-t4FRoqUpFJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t4FRoqUpFJ .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-t4FRoqUpFJ .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-t4FRoqUpFJ .navbar .navbar-collapse.show,
.cid-t4FRoqUpFJ .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-t4FRoqUpFJ .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-t4FRoqUpFJ .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-t4FRoqUpFJ .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-t4FRoqUpFJ .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-t4FRoqUpFJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-t4FRoqUpFJ .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-t4FRoqUpFJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4FRoqUpFJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4FRoqUpFJ .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-t4FRoqUpFJ .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-t4FRoqUpFJ .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-t4FRoqUpFJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-t4FRoqUpFJ .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-t4FRoqUpFJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t4FRoqUpFJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t4FRoqUpFJ .navbar-brand {
  min-height: 61px;
  -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-t4FRoqUpFJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4FRoqUpFJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4FRoqUpFJ .dropdown-item.active,
.cid-t4FRoqUpFJ .dropdown-item:active {
  background-color: transparent;
}
.cid-t4FRoqUpFJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4FRoqUpFJ .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-t4FRoqUpFJ .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-t4FRoqUpFJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-t4FRoqUpFJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-t4FRoqUpFJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4FRoqUpFJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4FRoqUpFJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4FRoqUpFJ .navbar-buttons {
  text-align: inherit;
}
.cid-t4FRoqUpFJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4FRoqUpFJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-t4FRoqUpFJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4FRoqUpFJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4FRoqUpFJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4FRoqUpFJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4FRoqUpFJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4FRoqUpFJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4FRoqUpFJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4FRoqUpFJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4FRoqUpFJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t4FRoqUpFJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t4FRoqUpFJ .icons-menu {
  text-align: inherit;
}
.cid-t4FRoqUpFJ .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-t4FRoqUpFJ .nav-link:hover,
.cid-t4FRoqUpFJ .dropdown-item:hover,
.cid-t4FRoqUpFJ .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4FRoqUpFJ .navbar {
    height: 77px;
  }
  .cid-t4FRoqUpFJ .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-t4FRoqUpFJ .navbar-collapse .img-column {
    display: none;
  }
  .cid-t4FRoqUpFJ .icons-menu,
  .cid-t4FRoqUpFJ .navbar-buttons,
  .cid-t4FRoqUpFJ .contact-block,
  .cid-t4FRoqUpFJ .text-column {
    text-align: center !important;
  }
}
.cid-t4FRoqUpFJ .icons-menu,
.cid-t4FRoqUpFJ .navbar-buttons,
.cid-t4FRoqUpFJ .contact-block,
.cid-t4FRoqUpFJ .text-column {
  color: #cccccc;
}
.cid-t4FRorxcPk {
  overflow: hidden !important;
  background-image: url("../../../assets/images/ladakh-6051984-1920-1920x1015.jpeg");
}
.cid-t4FRorxcPk .container-fluid {
  padding: 0 3rem;
}
.cid-t4FRorxcPk .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-t4FRorxcPk .container-fluid {
    padding: 0 1rem;
  }
}
.cid-t4FRorxcPk h1 {
  margin-bottom: 1rem;
}
.cid-t4FRorxcPk .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}
.cid-t4FRorxcPk .btn-line {
  margin-top: 3rem;
}
.cid-t4FRorxcPk p {
  margin-bottom: 0;
}
.cid-t4FRorxcPk .mbr-text,
.cid-t4FRorxcPk .mbr-section-btn {
  color: #ffffff;
}
.cid-t4FRos6dCS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-t4FRos6dCS .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-t4FRos6dCS .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-t4FRos6dCS .title {
    width: 100% !important;
  }
}
.cid-t4FRos6dCS .mbr-text,
.cid-t4FRos6dCS .mbr-section-btn {
  text-align: left;
  color: #444444;
}
.cid-t4FRos6dCS .mbr-section-title {
  text-align: left;
  color: #c2272d;
}
.cid-t4FRosLaMR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-t4FRosLaMR .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-t4FRosLaMR .row {
  border-bottom: 1px solid #808080;
}
.cid-t4FRosLaMR H2 {
  color: #e7272d;
}
.cid-t4FRosLaMR .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-t4FRosLaMR .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-t4FRosLaMR .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-t4FRosLaMR .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-t4FRosLaMR .col-lg-12 {
  overflow: hidden;
}
.cid-t4FRosLaMR H4 {
  color: #fff4e2;
}
.cid-t4FRosLaMR .mbr-text,
.cid-t4FRosLaMR .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-t4FRosLaMR .logo-wrap:before {
    content: none;
  }
  .cid-t4FRosLaMR .logo-wrap:after {
    content: none;
  }
}
.cid-t4FRosLaMR H3 {
  color: #e6c8ab;
}
.cid-t4FRot7U8K {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-t4FRot7U8K .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-t4FRot7U8K .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-t4FRot7U8K .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-t4FRot7U8K .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-t4FRot7U8K .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-t4FRot7U8K .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-t4FRot7U8K .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-t4FRot7U8K .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-t4FRot7U8K .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-t4FRot7U8K .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-teVZgFOEcI .nav-item:focus,
.cid-teVZgFOEcI .nav-link:focus {
  outline: none;
}
.cid-teVZgFOEcI .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-teVZgFOEcI .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-teVZgFOEcI .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-teVZgFOEcI .book-now-header {
    margin-right: -120px;
  }
}
.cid-teVZgFOEcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-teVZgFOEcI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teVZgFOEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-teVZgFOEcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-teVZgFOEcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-teVZgFOEcI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-teVZgFOEcI .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-teVZgFOEcI .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-teVZgFOEcI .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-teVZgFOEcI .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-teVZgFOEcI .navbar .navbar-collapse.show,
.cid-teVZgFOEcI .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-teVZgFOEcI .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-teVZgFOEcI .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-teVZgFOEcI .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-teVZgFOEcI .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-teVZgFOEcI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-teVZgFOEcI .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-teVZgFOEcI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-teVZgFOEcI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-teVZgFOEcI .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-teVZgFOEcI .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-teVZgFOEcI .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-teVZgFOEcI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-teVZgFOEcI .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-teVZgFOEcI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-teVZgFOEcI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-teVZgFOEcI .navbar-brand {
  min-height: 61px;
  -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-teVZgFOEcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-teVZgFOEcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-teVZgFOEcI .dropdown-item.active,
.cid-teVZgFOEcI .dropdown-item:active {
  background-color: transparent;
}
.cid-teVZgFOEcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-teVZgFOEcI .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-teVZgFOEcI .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-teVZgFOEcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-teVZgFOEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-teVZgFOEcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-teVZgFOEcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teVZgFOEcI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-teVZgFOEcI .navbar-buttons {
  text-align: inherit;
}
.cid-teVZgFOEcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-teVZgFOEcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-teVZgFOEcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teVZgFOEcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teVZgFOEcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teVZgFOEcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teVZgFOEcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teVZgFOEcI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teVZgFOEcI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teVZgFOEcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teVZgFOEcI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-teVZgFOEcI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-teVZgFOEcI .icons-menu {
  text-align: inherit;
}
.cid-teVZgFOEcI .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-teVZgFOEcI .nav-link:hover,
.cid-teVZgFOEcI .dropdown-item:hover,
.cid-teVZgFOEcI .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-teVZgFOEcI .navbar {
    height: 77px;
  }
  .cid-teVZgFOEcI .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-teVZgFOEcI .navbar-collapse .img-column {
    display: none;
  }
  .cid-teVZgFOEcI .icons-menu,
  .cid-teVZgFOEcI .navbar-buttons,
  .cid-teVZgFOEcI .contact-block,
  .cid-teVZgFOEcI .text-column {
    text-align: center !important;
  }
}
.cid-teVZgFOEcI .icons-menu,
.cid-teVZgFOEcI .navbar-buttons,
.cid-teVZgFOEcI .contact-block,
.cid-teVZgFOEcI .text-column {
  color: #cccccc;
}
.cid-teVZgGhVl0 {
  overflow: hidden !important;
  background-image: url("../../../assets/images/picture1-2000x1755.jpg");
}
.cid-teVZgGhVl0 .container-fluid {
  padding: 0 3rem;
}
.cid-teVZgGhVl0 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-teVZgGhVl0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-teVZgGhVl0 h1 {
  margin-bottom: 1rem;
}
.cid-teVZgGhVl0 .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-teVZgGhVl0 .btn-line {
  margin-top: 3rem;
}
.cid-teVZgGhVl0 p {
  margin-bottom: 0;
}
.cid-teVZgGhVl0 .mbr-text,
.cid-teVZgGhVl0 .mbr-section-btn {
  color: #ffffff;
}
.cid-teVZgGyGWf {
  background-color: #f3eee7;
}
.cid-teVZgGyGWf H1 {
  color: #132c70;
}
.cid-teVZgGyGWf .mbr-text,
.cid-teVZgGyGWf .mbr-section-btn {
  color: #444444;
}
.cid-teVZgGyGWf H3 {
  color: #132c70;
}
.cid-teVZgGyGWf .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-teVZgGyGWf .mbr-list li {
  margin-bottom: 1rem;
}
.cid-teVZgGyGWf .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-teVZgGyGWf p {
  margin: 0;
}
.cid-teVZgGyGWf a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-teVZgGyGWf .row {
    display: flex;
    flex-direction: column;
  }
  .cid-teVZgGyGWf .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-teVZgGyGWf .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-teVZgGyGWf .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-teVZgGyGWf .nav-dropdown .link {
  font-weight: 300;
}
.cid-teVZgGyGWf H2 {
  color: #c2272d;
}
.cid-tgDQgLXcPi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-tgDQgLXcPi .card-img {
  background-color: #fff;
  overflow: hidden;
}
.cid-tgDQgLXcPi .card-box {
  padding: 0rem;
  padding-top: 2rem;
}
.cid-tgDQgLXcPi h4 {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-tgDQgLXcPi h3 {
  margin-bottom: 0;
  letter-spacing: 1px;
}
.cid-tgDQgLXcPi p {
  text-align: left;
}
.cid-tgDQgLXcPi img {
  transition: all 0.3s;
}
.cid-tgDQgLXcPi .mbr-text {
  color: #1c1c1c;
  text-align: right;
}
.cid-tgDQgLXcPi .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tgDQgLXcPi .card-wrapper:hover h4 {
  background-size: 100% 100%;
}
.cid-tgDQgLXcPi .card-wrapper:hover img {
  filter: blur(2px);
}
.cid-tgDQgLXcPi .card {
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .cid-tgDQgLXcPi .card-columns {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .cid-tgDQgLXcPi .card-columns {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .cid-tgDQgLXcPi .card-columns {
    column-gap: 4rem;
  }
}
.cid-tgDQgLXcPi .card-title {
  color: #82786e;
  text-align: center;
}
.cid-tgDQgLXcPi .card-title DIV {
  text-align: center;
}
.cid-tfStAQ1QDs {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tfStAQ1QDs {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tfStAQ1QDs h1 {
  color: #132c70;
}
.cid-tfStAQ1QDs h2 {
  color: #132c70;
}
.cid-tfStAQ1QDs a {
  color: #132c70;
}
.cid-tfStAQ1QDs .btn-line::after {
  background-color: #132c70;
}
.cid-tfStAQ1QDs .animated-element {
  color: #efefef;
}
.cid-tfStAQ1QDs .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tfStAQ1QDs .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tfStAQ1QDs .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tfStAQ1QDs .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tfStAQ1QDs .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tfStAQ1QDs .container-fluid {
    padding: 0 1rem;
  }
  .cid-tfStAQ1QDs .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tfStAQ1QDs .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tfStAQ1QDs .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tfStAQ1QDs .container-fluid {
    padding: 0 2rem;
  }
  .cid-tfStAQ1QDs .mbr-white {
    padding-left: 3rem;
  }
  .cid-tfStAQ1QDs .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tfStAQ1QDs .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tfStAQ1QDs .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tfStAQ1QDs .container-fluid {
  max-width: 1300px;
}
.cid-tfStAQ1QDs .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tfStAQ1QDs .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tfStAQ1QDs .btn-line {
  margin-top: 3rem;
}
.cid-tfStAQ1QDs .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tfStAQ1QDs h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tfStAQ1QDs .mbr-text {
  color: #444444;
}
.cid-tgDUjiydST {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f3eee7;
}
.cid-tgDUjiydST .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tgDUjiydST .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tgDUjiydST .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tgDUjiydST .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tgDUjiydST .container {
  padding: 0;
}
.cid-tgDUjiydST .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tgDUjiydST .icon-focus {
  display: none;
}
.cid-tgDUjiydST .btn-primary-outline {
  border: none!important;
  color: gray!important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent!important;
  font-weight: 400;
}
.cid-tgDUjiydST .btn-primary-outline:hover {
  background: transparent!important;
  color: #c2272d !important;
}
.cid-tgDUjiydST .btn-primary-outline:active {
  background: transparent!important;
  color: black !important;
}
.cid-tgDUjiydST li {
  position: relative;
}
.cid-tgDUjiydST li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-tgDUjiydST .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tgDUjiydST .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tgDUjiydST .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-tgDUjiydST .btn {
  font-family: IBM Plex Sans !important;
}
.cid-tgDUjiydST .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-tgDUjiydST .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-tgDUjiydST .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-tgDUjiydST li:not(:last-child):after {
    top: 9px;
  }
  .cid-tgDUjiydST .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0!important;
  }
}
.cid-teVZgH7h7L {
  overflow: hidden !important;
  background-image: url("../../../assets/images/db8a4022-2000x1333.jpg");
}
.cid-teVZgH7h7L .container-fluid {
  padding: 0 3rem;
}
.cid-teVZgH7h7L .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-teVZgH7h7L .container-fluid {
    padding: 0 1rem;
  }
}
.cid-teVZgH7h7L h1 {
  margin-bottom: 1rem;
}
.cid-teVZgH7h7L .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-teVZgH7h7L .btn-line {
  margin-top: 3rem;
}
.cid-teVZgH7h7L p {
  margin-bottom: 0;
}
.cid-teVZgH7h7L .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-teVZgH7h7L .mbr-text,
.cid-teVZgH7h7L .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-udSnRf0fEv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udSnRf0fEv .card-wrapper {
  background: #fffbf6;
  padding: 10% 25%;
  margin: auto;
}
.cid-udSnRf0fEv .sign {
  width: 200px;
  padding-top: 16px;
  display: inline;
}
.cid-udSnRf0fEv .row {
  justify-content: center;
  align-items: center;
}
.cid-udSnRf0fEv .mbr-section-title {
  padding: 0;
  padding-bottom: 12px;
  margin: 0;
  color: #0c5b47;
}
.cid-udSnRf0fEv .mbr-text,
.cid-udSnRf0fEv .right-side {
  color: #1b745e;
}
.cid-udSnRf0fEv .container {
  max-width: 1100px;
}
.cid-udSnRf0fEv .padd {
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .cid-udSnRf0fEv .card-wrapper {
    padding: 10% 10%;
  }
}
.cid-udSnRf0fEv .picture {
  border-radius: 50%;
}
.cid-udSnRf0fEv .pic {
  padding-bottom: 32px;
}
.cid-udSnRf0fEv .desc {
  padding-bottom: 20px;
  color: #444444;
}
.cid-udSnRf0fEv .btn {
  margin-top: 25px;
}
.cid-udSnRf0fEv .row {
  flex-direction: row-reverse;
}
.cid-udSnRf0fEv .padd {
  padding-right: 0px;
  padding-left: 50px;
}
@media (max-width: 960px) {
  .cid-udSnRf0fEv .card-wrapper {
    max-width: 420px;
  }
  .cid-udSnRf0fEv .left-side {
    padding-top: 50px;
  }
  .cid-udSnRf0fEv .padd {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.cid-udSnRf0fEv input,
.cid-udSnRf0fEv textarea {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  border-bottom: 1px solid #0c5b47!important;
}
.cid-udSnRf0fEv .form-control {
  font-style: italic;
  color: #1b745e !important;
  font-family: crimson text,serif;
}
.cid-udSnRf0fEv .f {
  font-size: 42px;
}
.cid-udSnRf0fEv LABEL {
  color: #c2272d;
}
.cid-udSnRf0fEv .art {
  color: #c2272d;
}
.cid-udSnRf0fEv .text,
.cid-udSnRf0fEv .si {
  color: #444444;
}
.cid-teVZgHNEDg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-teVZgHNEDg .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-teVZgHNEDg .row {
  border-bottom: 1px solid #808080;
}
.cid-teVZgHNEDg H2 {
  color: #e7272d;
}
.cid-teVZgHNEDg .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-teVZgHNEDg .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-teVZgHNEDg .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-teVZgHNEDg .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-teVZgHNEDg .col-lg-12 {
  overflow: hidden;
}
.cid-teVZgHNEDg H4 {
  color: #fff4e2;
}
.cid-teVZgHNEDg .mbr-text,
.cid-teVZgHNEDg .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-teVZgHNEDg .logo-wrap:before {
    content: none;
  }
  .cid-teVZgHNEDg .logo-wrap:after {
    content: none;
  }
}
.cid-teVZgHNEDg H3 {
  color: #e6c8ab;
}
.cid-teVZgI6Nx6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-teVZgI6Nx6 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-teVZgI6Nx6 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-teVZgI6Nx6 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-teVZgI6Nx6 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-teVZgI6Nx6 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-teVZgI6Nx6 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-teVZgI6Nx6 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-teVZgI6Nx6 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-teVZgI6Nx6 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-teVZgI6Nx6 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-sGPJq7xAUv .nav-item:focus,
.cid-sGPJq7xAUv .nav-link:focus {
  outline: none;
}
.cid-sGPJq7xAUv .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-sGPJq7xAUv .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-sGPJq7xAUv .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-sGPJq7xAUv .book-now-header {
    margin-right: -120px;
  }
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGPJq7xAUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGPJq7xAUv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGPJq7xAUv .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-sGPJq7xAUv .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-sGPJq7xAUv .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse.show,
.cid-sGPJq7xAUv .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-sGPJq7xAUv .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-sGPJq7xAUv .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-sGPJq7xAUv .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-sGPJq7xAUv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGPJq7xAUv .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-sGPJq7xAUv .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-sGPJq7xAUv .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-sGPJq7xAUv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sGPJq7xAUv .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-sGPJq7xAUv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGPJq7xAUv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGPJq7xAUv .navbar-brand {
  min-height: 61px;
  -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-sGPJq7xAUv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGPJq7xAUv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGPJq7xAUv .dropdown-item.active,
.cid-sGPJq7xAUv .dropdown-item:active {
  background-color: transparent;
}
.cid-sGPJq7xAUv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGPJq7xAUv .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-sGPJq7xAUv .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-sGPJq7xAUv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-sGPJq7xAUv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-sGPJq7xAUv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGPJq7xAUv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGPJq7xAUv ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGPJq7xAUv .navbar-buttons {
  text-align: inherit;
}
.cid-sGPJq7xAUv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGPJq7xAUv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGPJq7xAUv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGPJq7xAUv .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGPJq7xAUv .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGPJq7xAUv .icons-menu {
  text-align: inherit;
}
.cid-sGPJq7xAUv .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-sGPJq7xAUv .nav-link:hover,
.cid-sGPJq7xAUv .dropdown-item:hover,
.cid-sGPJq7xAUv .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGPJq7xAUv .navbar {
    height: 77px;
  }
  .cid-sGPJq7xAUv .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-sGPJq7xAUv .navbar-collapse .img-column {
    display: none;
  }
  .cid-sGPJq7xAUv .icons-menu,
  .cid-sGPJq7xAUv .navbar-buttons,
  .cid-sGPJq7xAUv .contact-block,
  .cid-sGPJq7xAUv .text-column {
    text-align: center !important;
  }
}
.cid-sGPJq7xAUv .icons-menu,
.cid-sGPJq7xAUv .navbar-buttons,
.cid-sGPJq7xAUv .contact-block,
.cid-sGPJq7xAUv .text-column {
  color: #cccccc;
}
.cid-tFUAfAawLy {
  overflow: hidden !important;
  background-image: url("../../../assets/images/view-of-stok-palace-1080x658.jpeg");
}
.cid-tFUAfAawLy .container-fluid {
  padding: 0 3rem;
}
.cid-tFUAfAawLy .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tFUAfAawLy .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tFUAfAawLy h1 {
  margin-bottom: 1rem;
}
.cid-tFUAfAawLy .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-tFUAfAawLy .btn-line {
  margin-top: 3rem;
}
.cid-tFUAfAawLy p {
  margin-bottom: 0;
}
.cid-tFUAfAawLy .mbr-text,
.cid-tFUAfAawLy .mbr-section-btn {
  color: #ffffff;
}
.cid-tFUBVNxpu3 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tFUBVNxpu3 .mbr-text {
  text-align: center;
  color: #151515;
}
.cid-tFUBVNxpu3 .mbr-section-subtitle {
  text-align: center;
}
.cid-tFUBVNxpu3 .mbr-section-title {
  text-align: center;
  color: #c2272d;
}
.cid-tFUAiTR9F0 {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUAiTR9F0 {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUAiTR9F0 h1 {
  color: #132c70;
}
.cid-tFUAiTR9F0 h2 {
  color: #132c70;
}
.cid-tFUAiTR9F0 a {
  color: #132c70;
}
.cid-tFUAiTR9F0 .btn-line::after {
  background-color: #132c70;
}
.cid-tFUAiTR9F0 .animated-element {
  color: #efefef;
}
.cid-tFUAiTR9F0 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUAiTR9F0 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUAiTR9F0 .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUAiTR9F0 .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUAiTR9F0 .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUAiTR9F0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUAiTR9F0 .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUAiTR9F0 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUAiTR9F0 .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUAiTR9F0 .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUAiTR9F0 .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUAiTR9F0 .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUAiTR9F0 .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUAiTR9F0 .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUAiTR9F0 .container-fluid {
  max-width: 1300px;
}
.cid-tFUAiTR9F0 .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUAiTR9F0 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUAiTR9F0 .btn-line {
  margin-top: 3rem;
}
.cid-tFUAiTR9F0 .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUAiTR9F0 h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUAiTR9F0 .mbr-text {
  color: #444444;
}
.cid-tFUAjuBd6m {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUAjuBd6m {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUAjuBd6m .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUAjuBd6m h1 {
  color: #132c70;
}
.cid-tFUAjuBd6m h2 {
  color: #132c70;
}
.cid-tFUAjuBd6m a {
  color: #132c70;
}
.cid-tFUAjuBd6m .btn-line::after {
  background-color: #132c70;
}
.cid-tFUAjuBd6m .animated-element {
  color: #efefef;
}
.cid-tFUAjuBd6m .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUAjuBd6m .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUAjuBd6m .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUAjuBd6m .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUAjuBd6m .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUAjuBd6m .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUAjuBd6m .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUAjuBd6m .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUAjuBd6m .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUAjuBd6m .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUAjuBd6m .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUAjuBd6m .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUAjuBd6m .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUAjuBd6m .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUAjuBd6m .container-fluid {
  max-width: 1300px;
}
.cid-tFUAjuBd6m .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUAjuBd6m .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUAjuBd6m .btn-line {
  margin-top: 3rem;
}
.cid-tFUAjuBd6m .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUAjuBd6m h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUAjuBd6m .mbr-text {
  color: #444444;
}
.cid-tFUAk6IykT {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUAk6IykT {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUAk6IykT h1 {
  color: #132c70;
}
.cid-tFUAk6IykT h2 {
  color: #132c70;
}
.cid-tFUAk6IykT a {
  color: #132c70;
}
.cid-tFUAk6IykT .btn-line::after {
  background-color: #132c70;
}
.cid-tFUAk6IykT .animated-element {
  color: #efefef;
}
.cid-tFUAk6IykT .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUAk6IykT .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUAk6IykT .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUAk6IykT .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUAk6IykT .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUAk6IykT .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUAk6IykT .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUAk6IykT .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUAk6IykT .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUAk6IykT .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUAk6IykT .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUAk6IykT .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUAk6IykT .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUAk6IykT .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUAk6IykT .container-fluid {
  max-width: 1300px;
}
.cid-tFUAk6IykT .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUAk6IykT .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUAk6IykT .btn-line {
  margin-top: 3rem;
}
.cid-tFUAk6IykT .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUAk6IykT h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUAk6IykT .mbr-text {
  color: #444444;
}
.cid-tFUAkx7DWN {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUAkx7DWN {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUAkx7DWN .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUAkx7DWN h1 {
  color: #132c70;
}
.cid-tFUAkx7DWN h2 {
  color: #132c70;
}
.cid-tFUAkx7DWN a {
  color: #132c70;
}
.cid-tFUAkx7DWN .btn-line::after {
  background-color: #132c70;
}
.cid-tFUAkx7DWN .animated-element {
  color: #efefef;
}
.cid-tFUAkx7DWN .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUAkx7DWN .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUAkx7DWN .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUAkx7DWN .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUAkx7DWN .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUAkx7DWN .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUAkx7DWN .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUAkx7DWN .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUAkx7DWN .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUAkx7DWN .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUAkx7DWN .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUAkx7DWN .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUAkx7DWN .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUAkx7DWN .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUAkx7DWN .container-fluid {
  max-width: 1300px;
}
.cid-tFUAkx7DWN .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUAkx7DWN .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUAkx7DWN .btn-line {
  margin-top: 3rem;
}
.cid-tFUAkx7DWN .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUAkx7DWN h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUAkx7DWN .mbr-text {
  color: #444444;
}
.cid-tFUTxgjVOy {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUTxgjVOy {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUTxgjVOy h1 {
  color: #132c70;
}
.cid-tFUTxgjVOy h2 {
  color: #132c70;
}
.cid-tFUTxgjVOy a {
  color: #132c70;
}
.cid-tFUTxgjVOy .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTxgjVOy .animated-element {
  color: #efefef;
}
.cid-tFUTxgjVOy .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTxgjVOy .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTxgjVOy .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTxgjVOy .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTxgjVOy .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTxgjVOy .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTxgjVOy .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTxgjVOy .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTxgjVOy .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTxgjVOy .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTxgjVOy .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTxgjVOy .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTxgjVOy .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTxgjVOy .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTxgjVOy .container-fluid {
  max-width: 1300px;
}
.cid-tFUTxgjVOy .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTxgjVOy .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTxgjVOy .btn-line {
  margin-top: 3rem;
}
.cid-tFUTxgjVOy .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTxgjVOy h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTxgjVOy .mbr-text {
  color: #444444;
}
.cid-tFUTyjrI8C {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUTyjrI8C {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUTyjrI8C .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUTyjrI8C h1 {
  color: #132c70;
}
.cid-tFUTyjrI8C h2 {
  color: #132c70;
}
.cid-tFUTyjrI8C a {
  color: #132c70;
}
.cid-tFUTyjrI8C .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTyjrI8C .animated-element {
  color: #efefef;
}
.cid-tFUTyjrI8C .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTyjrI8C .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTyjrI8C .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTyjrI8C .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTyjrI8C .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTyjrI8C .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTyjrI8C .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTyjrI8C .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTyjrI8C .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTyjrI8C .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTyjrI8C .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTyjrI8C .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTyjrI8C .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTyjrI8C .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTyjrI8C .container-fluid {
  max-width: 1300px;
}
.cid-tFUTyjrI8C .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTyjrI8C .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTyjrI8C .btn-line {
  margin-top: 3rem;
}
.cid-tFUTyjrI8C .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTyjrI8C h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTyjrI8C .mbr-text {
  color: #444444;
}
.cid-tFUTz50QWb {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUTz50QWb {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUTz50QWb h1 {
  color: #132c70;
}
.cid-tFUTz50QWb h2 {
  color: #132c70;
}
.cid-tFUTz50QWb a {
  color: #132c70;
}
.cid-tFUTz50QWb .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTz50QWb .animated-element {
  color: #efefef;
}
.cid-tFUTz50QWb .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTz50QWb .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTz50QWb .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTz50QWb .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTz50QWb .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTz50QWb .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTz50QWb .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTz50QWb .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTz50QWb .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTz50QWb .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTz50QWb .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTz50QWb .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTz50QWb .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTz50QWb .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTz50QWb .container-fluid {
  max-width: 1300px;
}
.cid-tFUTz50QWb .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTz50QWb .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTz50QWb .btn-line {
  margin-top: 3rem;
}
.cid-tFUTz50QWb .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTz50QWb h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTz50QWb .mbr-text {
  color: #444444;
}
.cid-tFUTzWlOP5 {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUTzWlOP5 {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUTzWlOP5 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUTzWlOP5 h1 {
  color: #132c70;
}
.cid-tFUTzWlOP5 h2 {
  color: #132c70;
}
.cid-tFUTzWlOP5 a {
  color: #132c70;
}
.cid-tFUTzWlOP5 .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTzWlOP5 .animated-element {
  color: #efefef;
}
.cid-tFUTzWlOP5 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTzWlOP5 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTzWlOP5 .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTzWlOP5 .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTzWlOP5 .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTzWlOP5 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTzWlOP5 .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTzWlOP5 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTzWlOP5 .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTzWlOP5 .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTzWlOP5 .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTzWlOP5 .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTzWlOP5 .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTzWlOP5 .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTzWlOP5 .container-fluid {
  max-width: 1300px;
}
.cid-tFUTzWlOP5 .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTzWlOP5 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTzWlOP5 .btn-line {
  margin-top: 3rem;
}
.cid-tFUTzWlOP5 .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTzWlOP5 h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTzWlOP5 .mbr-text {
  color: #444444;
}
.cid-tFUTAEOxAq {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUTAEOxAq {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUTAEOxAq h1 {
  color: #132c70;
}
.cid-tFUTAEOxAq h2 {
  color: #132c70;
}
.cid-tFUTAEOxAq a {
  color: #132c70;
}
.cid-tFUTAEOxAq .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTAEOxAq .animated-element {
  color: #efefef;
}
.cid-tFUTAEOxAq .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTAEOxAq .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTAEOxAq .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTAEOxAq .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTAEOxAq .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTAEOxAq .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTAEOxAq .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTAEOxAq .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTAEOxAq .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTAEOxAq .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTAEOxAq .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTAEOxAq .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTAEOxAq .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTAEOxAq .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTAEOxAq .container-fluid {
  max-width: 1300px;
}
.cid-tFUTAEOxAq .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTAEOxAq .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTAEOxAq .btn-line {
  margin-top: 3rem;
}
.cid-tFUTAEOxAq .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTAEOxAq h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTAEOxAq .mbr-text {
  color: #444444;
}
.cid-tFUTBjxfRc {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUTBjxfRc {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUTBjxfRc .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUTBjxfRc h1 {
  color: #132c70;
}
.cid-tFUTBjxfRc h2 {
  color: #132c70;
}
.cid-tFUTBjxfRc a {
  color: #132c70;
}
.cid-tFUTBjxfRc .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTBjxfRc .animated-element {
  color: #efefef;
}
.cid-tFUTBjxfRc .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTBjxfRc .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTBjxfRc .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTBjxfRc .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTBjxfRc .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTBjxfRc .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTBjxfRc .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTBjxfRc .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTBjxfRc .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTBjxfRc .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTBjxfRc .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTBjxfRc .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTBjxfRc .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTBjxfRc .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTBjxfRc .container-fluid {
  max-width: 1300px;
}
.cid-tFUTBjxfRc .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTBjxfRc .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTBjxfRc .btn-line {
  margin-top: 3rem;
}
.cid-tFUTBjxfRc .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTBjxfRc h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTBjxfRc .mbr-text {
  color: #444444;
}
.cid-tFUTCmRSCI {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUTCmRSCI {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUTCmRSCI h1 {
  color: #132c70;
}
.cid-tFUTCmRSCI h2 {
  color: #132c70;
}
.cid-tFUTCmRSCI a {
  color: #132c70;
}
.cid-tFUTCmRSCI .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTCmRSCI .animated-element {
  color: #efefef;
}
.cid-tFUTCmRSCI .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTCmRSCI .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTCmRSCI .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTCmRSCI .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTCmRSCI .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTCmRSCI .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTCmRSCI .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTCmRSCI .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTCmRSCI .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTCmRSCI .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTCmRSCI .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTCmRSCI .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTCmRSCI .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTCmRSCI .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTCmRSCI .container-fluid {
  max-width: 1300px;
}
.cid-tFUTCmRSCI .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTCmRSCI .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTCmRSCI .btn-line {
  margin-top: 3rem;
}
.cid-tFUTCmRSCI .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTCmRSCI h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTCmRSCI .mbr-text {
  color: #444444;
}
.cid-tFUTDh0WnN {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUTDh0WnN {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUTDh0WnN .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUTDh0WnN h1 {
  color: #132c70;
}
.cid-tFUTDh0WnN h2 {
  color: #132c70;
}
.cid-tFUTDh0WnN a {
  color: #132c70;
}
.cid-tFUTDh0WnN .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTDh0WnN .animated-element {
  color: #efefef;
}
.cid-tFUTDh0WnN .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTDh0WnN .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTDh0WnN .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTDh0WnN .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTDh0WnN .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTDh0WnN .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTDh0WnN .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTDh0WnN .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTDh0WnN .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTDh0WnN .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTDh0WnN .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTDh0WnN .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTDh0WnN .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTDh0WnN .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTDh0WnN .container-fluid {
  max-width: 1300px;
}
.cid-tFUTDh0WnN .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTDh0WnN .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTDh0WnN .btn-line {
  margin-top: 3rem;
}
.cid-tFUTDh0WnN .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTDh0WnN h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTDh0WnN .mbr-text {
  color: #444444;
}
.cid-tFUTEmsCEL {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tFUTEmsCEL {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tFUTEmsCEL h1 {
  color: #132c70;
}
.cid-tFUTEmsCEL h2 {
  color: #132c70;
}
.cid-tFUTEmsCEL a {
  color: #132c70;
}
.cid-tFUTEmsCEL .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTEmsCEL .animated-element {
  color: #efefef;
}
.cid-tFUTEmsCEL .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTEmsCEL .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTEmsCEL .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTEmsCEL .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTEmsCEL .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTEmsCEL .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTEmsCEL .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTEmsCEL .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTEmsCEL .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTEmsCEL .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTEmsCEL .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTEmsCEL .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTEmsCEL .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTEmsCEL .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTEmsCEL .container-fluid {
  max-width: 1300px;
}
.cid-tFUTEmsCEL .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTEmsCEL .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTEmsCEL .btn-line {
  margin-top: 3rem;
}
.cid-tFUTEmsCEL .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTEmsCEL h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTEmsCEL .mbr-text {
  color: #444444;
}
.cid-tFUTF3gTHY {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tFUTF3gTHY {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tFUTF3gTHY .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tFUTF3gTHY h1 {
  color: #132c70;
}
.cid-tFUTF3gTHY h2 {
  color: #132c70;
}
.cid-tFUTF3gTHY a {
  color: #132c70;
}
.cid-tFUTF3gTHY .btn-line::after {
  background-color: #132c70;
}
.cid-tFUTF3gTHY .animated-element {
  color: #efefef;
}
.cid-tFUTF3gTHY .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tFUTF3gTHY .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tFUTF3gTHY .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tFUTF3gTHY .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tFUTF3gTHY .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tFUTF3gTHY .container-fluid {
    padding: 0 1rem;
  }
  .cid-tFUTF3gTHY .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tFUTF3gTHY .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tFUTF3gTHY .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tFUTF3gTHY .container-fluid {
    padding: 0 2rem;
  }
  .cid-tFUTF3gTHY .mbr-white {
    padding-left: 3rem;
  }
  .cid-tFUTF3gTHY .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tFUTF3gTHY .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tFUTF3gTHY .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tFUTF3gTHY .container-fluid {
  max-width: 1300px;
}
.cid-tFUTF3gTHY .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tFUTF3gTHY .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tFUTF3gTHY .btn-line {
  margin-top: 3rem;
}
.cid-tFUTF3gTHY .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tFUTF3gTHY h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tFUTF3gTHY .mbr-text {
  color: #444444;
}
.cid-sGU6DY8tDV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sGU6DY8tDV .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-sGU6DY8tDV .row {
  border-bottom: 1px solid #808080;
}
.cid-sGU6DY8tDV H2 {
  color: #e7272d;
}
.cid-sGU6DY8tDV .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-sGU6DY8tDV .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-sGU6DY8tDV .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-sGU6DY8tDV .col-lg-12 {
  overflow: hidden;
}
.cid-sGU6DY8tDV H4 {
  color: #fff4e2;
}
.cid-sGU6DY8tDV .mbr-text,
.cid-sGU6DY8tDV .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGU6DY8tDV .logo-wrap:before {
    content: none;
  }
  .cid-sGU6DY8tDV .logo-wrap:after {
    content: none;
  }
}
.cid-sGU6DY8tDV H3 {
  color: #e6c8ab;
}
.cid-sGU6dIeD31 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sGU6dIeD31 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-sGU6dIeD31 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGU6dIeD31 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sGU6dIeD31 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-sGU6dIeD31 .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-sGU6dIeD31 .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-sGU6dIeD31 .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-sGU6dIeD31 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-sGU6dIeD31 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-sGU6dIeD31 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-tU92BteCux .nav-item:focus,
.cid-tU92BteCux .nav-link:focus {
  outline: none;
}
.cid-tU92BteCux .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-tU92BteCux .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-tU92BteCux .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-tU92BteCux .book-now-header {
    margin-right: -120px;
  }
}
.cid-tU92BteCux .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tU92BteCux .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tU92BteCux .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tU92BteCux .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tU92BteCux .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tU92BteCux .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-tU92BteCux .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-tU92BteCux .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tU92BteCux .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tU92BteCux .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tU92BteCux .navbar .navbar-collapse.show,
.cid-tU92BteCux .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tU92BteCux .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tU92BteCux .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tU92BteCux .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tU92BteCux .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-tU92BteCux .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tU92BteCux .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tU92BteCux .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tU92BteCux .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tU92BteCux .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-tU92BteCux .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tU92BteCux .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tU92BteCux .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tU92BteCux .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-tU92BteCux .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tU92BteCux .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tU92BteCux .navbar-brand {
  min-height: 61px;
  -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-tU92BteCux .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tU92BteCux .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tU92BteCux .dropdown-item.active,
.cid-tU92BteCux .dropdown-item:active {
  background-color: transparent;
}
.cid-tU92BteCux .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tU92BteCux .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-tU92BteCux .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tU92BteCux .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tU92BteCux .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-tU92BteCux .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tU92BteCux .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tU92BteCux ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tU92BteCux .navbar-buttons {
  text-align: inherit;
}
.cid-tU92BteCux button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tU92BteCux button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-tU92BteCux button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tU92BteCux button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tU92BteCux button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tU92BteCux button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tU92BteCux nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tU92BteCux nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tU92BteCux nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tU92BteCux nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tU92BteCux .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tU92BteCux .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tU92BteCux .icons-menu {
  text-align: inherit;
}
.cid-tU92BteCux .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tU92BteCux .nav-link:hover,
.cid-tU92BteCux .dropdown-item:hover,
.cid-tU92BteCux .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tU92BteCux .navbar {
    height: 77px;
  }
  .cid-tU92BteCux .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tU92BteCux .navbar-collapse .img-column {
    display: none;
  }
  .cid-tU92BteCux .icons-menu,
  .cid-tU92BteCux .navbar-buttons,
  .cid-tU92BteCux .contact-block,
  .cid-tU92BteCux .text-column {
    text-align: center !important;
  }
}
.cid-tU92BteCux .icons-menu,
.cid-tU92BteCux .navbar-buttons,
.cid-tU92BteCux .contact-block,
.cid-tU92BteCux .text-column {
  color: #cccccc;
}
.cid-tU92BwegsZ {
  overflow: hidden !important;
  background-image: url("../../../assets/images/festivals3-1920x1280.jpg");
}
.cid-tU92BwegsZ .container-fluid {
  padding: 0 3rem;
}
.cid-tU92BwegsZ .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-tU92BwegsZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tU92BwegsZ h1 {
  margin-bottom: 1rem;
}
.cid-tU92BwegsZ .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-tU92BwegsZ .btn-line {
  margin-top: 3rem;
}
.cid-tU92BwegsZ p {
  margin-bottom: 0;
}
.cid-tU92BwegsZ .mbr-text,
.cid-tU92BwegsZ .mbr-section-btn {
  color: #ffffff;
}
.cid-tU92By8rID {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tU92By8rID .mbr-text {
  text-align: center;
  color: #151515;
}
.cid-tU92By8rID .mbr-section-subtitle {
  text-align: center;
}
.cid-tU92By8rID .mbr-section-title {
  text-align: center;
  color: #c2272d;
}
.cid-tUflRvzKHg {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tUflRvzKHg {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tUflRvzKHg .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tUflRvzKHg h1 {
  color: #132c70;
}
.cid-tUflRvzKHg h2 {
  color: #132c70;
}
.cid-tUflRvzKHg a {
  color: #132c70;
}
.cid-tUflRvzKHg .btn-line::after {
  background-color: #132c70;
}
.cid-tUflRvzKHg .animated-element {
  color: #efefef;
}
.cid-tUflRvzKHg .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tUflRvzKHg .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tUflRvzKHg .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tUflRvzKHg .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tUflRvzKHg .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tUflRvzKHg .container-fluid {
    padding: 0 1rem;
  }
  .cid-tUflRvzKHg .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tUflRvzKHg .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tUflRvzKHg .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tUflRvzKHg .container-fluid {
    padding: 0 2rem;
  }
  .cid-tUflRvzKHg .mbr-white {
    padding-left: 3rem;
  }
  .cid-tUflRvzKHg .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tUflRvzKHg .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tUflRvzKHg .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tUflRvzKHg .container-fluid {
  max-width: 1300px;
}
.cid-tUflRvzKHg .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tUflRvzKHg .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tUflRvzKHg .btn-line {
  margin-top: 3rem;
}
.cid-tUflRvzKHg .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tUflRvzKHg h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tUflRvzKHg .mbr-text {
  color: #444444;
}
.cid-tU92BzG6mB {
  overflow: hidden !important;
  padding-top: 49px;
  padding-bottom: 49px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tU92BzG6mB {
    height: auto;
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
.cid-tU92BzG6mB h1 {
  color: #132c70;
}
.cid-tU92BzG6mB h2 {
  color: #132c70;
}
.cid-tU92BzG6mB a {
  color: #132c70;
}
.cid-tU92BzG6mB .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BzG6mB .animated-element {
  color: #efefef;
}
.cid-tU92BzG6mB .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BzG6mB .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BzG6mB .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BzG6mB .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BzG6mB .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BzG6mB .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BzG6mB .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BzG6mB .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BzG6mB .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BzG6mB .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BzG6mB .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BzG6mB .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BzG6mB .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BzG6mB .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BzG6mB .container-fluid {
  max-width: 1300px;
}
.cid-tU92BzG6mB .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BzG6mB .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BzG6mB .btn-line {
  margin-top: 3rem;
}
.cid-tU92BzG6mB .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BzG6mB h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BzG6mB .mbr-text {
  color: #444444;
}
.cid-tU92BBy6cl {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tU92BBy6cl {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU92BBy6cl .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tU92BBy6cl h1 {
  color: #132c70;
}
.cid-tU92BBy6cl h2 {
  color: #132c70;
}
.cid-tU92BBy6cl a {
  color: #132c70;
}
.cid-tU92BBy6cl .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BBy6cl .animated-element {
  color: #efefef;
}
.cid-tU92BBy6cl .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BBy6cl .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BBy6cl .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BBy6cl .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BBy6cl .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BBy6cl .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BBy6cl .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BBy6cl .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BBy6cl .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BBy6cl .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BBy6cl .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BBy6cl .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BBy6cl .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BBy6cl .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BBy6cl .container-fluid {
  max-width: 1300px;
}
.cid-tU92BBy6cl .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BBy6cl .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BBy6cl .btn-line {
  margin-top: 3rem;
}
.cid-tU92BBy6cl .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BBy6cl h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BBy6cl .mbr-text {
  color: #444444;
}
.cid-tU92BCTcCX {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tU92BCTcCX {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU92BCTcCX h1 {
  color: #132c70;
}
.cid-tU92BCTcCX h2 {
  color: #132c70;
}
.cid-tU92BCTcCX a {
  color: #132c70;
}
.cid-tU92BCTcCX .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BCTcCX .animated-element {
  color: #efefef;
}
.cid-tU92BCTcCX .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BCTcCX .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BCTcCX .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BCTcCX .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BCTcCX .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BCTcCX .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BCTcCX .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BCTcCX .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BCTcCX .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BCTcCX .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BCTcCX .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BCTcCX .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BCTcCX .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BCTcCX .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BCTcCX .container-fluid {
  max-width: 1300px;
}
.cid-tU92BCTcCX .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BCTcCX .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BCTcCX .btn-line {
  margin-top: 3rem;
}
.cid-tU92BCTcCX .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BCTcCX h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BCTcCX .mbr-text {
  color: #444444;
}
.cid-tU92BDK6Ax {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tU92BDK6Ax {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU92BDK6Ax .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tU92BDK6Ax h1 {
  color: #132c70;
}
.cid-tU92BDK6Ax h2 {
  color: #132c70;
}
.cid-tU92BDK6Ax a {
  color: #132c70;
}
.cid-tU92BDK6Ax .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BDK6Ax .animated-element {
  color: #efefef;
}
.cid-tU92BDK6Ax .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BDK6Ax .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BDK6Ax .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BDK6Ax .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BDK6Ax .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BDK6Ax .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BDK6Ax .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BDK6Ax .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BDK6Ax .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BDK6Ax .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BDK6Ax .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BDK6Ax .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BDK6Ax .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BDK6Ax .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BDK6Ax .container-fluid {
  max-width: 1300px;
}
.cid-tU92BDK6Ax .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BDK6Ax .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BDK6Ax .btn-line {
  margin-top: 3rem;
}
.cid-tU92BDK6Ax .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BDK6Ax h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BDK6Ax .mbr-text {
  color: #444444;
}
.cid-tU92BEVVIv {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tU92BEVVIv {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU92BEVVIv h1 {
  color: #132c70;
}
.cid-tU92BEVVIv h2 {
  color: #132c70;
}
.cid-tU92BEVVIv a {
  color: #132c70;
}
.cid-tU92BEVVIv .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BEVVIv .animated-element {
  color: #efefef;
}
.cid-tU92BEVVIv .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BEVVIv .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BEVVIv .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BEVVIv .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BEVVIv .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BEVVIv .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BEVVIv .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BEVVIv .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BEVVIv .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BEVVIv .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BEVVIv .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BEVVIv .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BEVVIv .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BEVVIv .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BEVVIv .container-fluid {
  max-width: 1300px;
}
.cid-tU92BEVVIv .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BEVVIv .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BEVVIv .btn-line {
  margin-top: 3rem;
}
.cid-tU92BEVVIv .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BEVVIv h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BEVVIv .mbr-text {
  color: #444444;
}
.cid-tU92BG9lFU {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tU92BG9lFU {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU92BG9lFU .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tU92BG9lFU h1 {
  color: #132c70;
}
.cid-tU92BG9lFU h2 {
  color: #132c70;
}
.cid-tU92BG9lFU a {
  color: #132c70;
}
.cid-tU92BG9lFU .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BG9lFU .animated-element {
  color: #efefef;
}
.cid-tU92BG9lFU .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BG9lFU .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BG9lFU .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BG9lFU .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BG9lFU .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BG9lFU .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BG9lFU .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BG9lFU .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BG9lFU .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BG9lFU .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BG9lFU .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BG9lFU .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BG9lFU .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BG9lFU .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BG9lFU .container-fluid {
  max-width: 1300px;
}
.cid-tU92BG9lFU .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BG9lFU .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BG9lFU .btn-line {
  margin-top: 3rem;
}
.cid-tU92BG9lFU .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BG9lFU h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BG9lFU .mbr-text {
  color: #444444;
}
.cid-tU92BH4NLT {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tU92BH4NLT {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU92BH4NLT h1 {
  color: #132c70;
}
.cid-tU92BH4NLT h2 {
  color: #132c70;
}
.cid-tU92BH4NLT a {
  color: #132c70;
}
.cid-tU92BH4NLT .btn-line::after {
  background-color: #132c70;
}
.cid-tU92BH4NLT .animated-element {
  color: #efefef;
}
.cid-tU92BH4NLT .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU92BH4NLT .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU92BH4NLT .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU92BH4NLT .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU92BH4NLT .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU92BH4NLT .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU92BH4NLT .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU92BH4NLT .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU92BH4NLT .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU92BH4NLT .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU92BH4NLT .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU92BH4NLT .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU92BH4NLT .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU92BH4NLT .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU92BH4NLT .container-fluid {
  max-width: 1300px;
}
.cid-tU92BH4NLT .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU92BH4NLT .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU92BH4NLT .btn-line {
  margin-top: 3rem;
}
.cid-tU92BH4NLT .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU92BH4NLT h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU92BH4NLT .mbr-text {
  color: #444444;
}
.cid-tU9h69iMyh {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-tU9h69iMyh {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU9h69iMyh .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tU9h69iMyh h1 {
  color: #132c70;
}
.cid-tU9h69iMyh h2 {
  color: #132c70;
}
.cid-tU9h69iMyh a {
  color: #132c70;
}
.cid-tU9h69iMyh .btn-line::after {
  background-color: #132c70;
}
.cid-tU9h69iMyh .animated-element {
  color: #efefef;
}
.cid-tU9h69iMyh .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU9h69iMyh .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU9h69iMyh .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU9h69iMyh .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU9h69iMyh .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU9h69iMyh .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU9h69iMyh .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU9h69iMyh .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU9h69iMyh .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU9h69iMyh .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU9h69iMyh .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU9h69iMyh .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU9h69iMyh .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU9h69iMyh .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU9h69iMyh .container-fluid {
  max-width: 1300px;
}
.cid-tU9h69iMyh .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU9h69iMyh .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU9h69iMyh .btn-line {
  margin-top: 3rem;
}
.cid-tU9h69iMyh .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU9h69iMyh h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU9h69iMyh .mbr-text {
  color: #444444;
}
.cid-tU9hQYfcuk {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tU9hQYfcuk {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-tU9hQYfcuk h1 {
  color: #132c70;
}
.cid-tU9hQYfcuk h2 {
  color: #132c70;
}
.cid-tU9hQYfcuk a {
  color: #132c70;
}
.cid-tU9hQYfcuk .btn-line::after {
  background-color: #132c70;
}
.cid-tU9hQYfcuk .animated-element {
  color: #efefef;
}
.cid-tU9hQYfcuk .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tU9hQYfcuk .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tU9hQYfcuk .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-tU9hQYfcuk .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-tU9hQYfcuk .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-tU9hQYfcuk .container-fluid {
    padding: 0 1rem;
  }
  .cid-tU9hQYfcuk .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-tU9hQYfcuk .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tU9hQYfcuk .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-tU9hQYfcuk .container-fluid {
    padding: 0 2rem;
  }
  .cid-tU9hQYfcuk .mbr-white {
    padding-left: 3rem;
  }
  .cid-tU9hQYfcuk .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tU9hQYfcuk .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-tU9hQYfcuk .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-tU9hQYfcuk .container-fluid {
  max-width: 1300px;
}
.cid-tU9hQYfcuk .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-tU9hQYfcuk .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tU9hQYfcuk .btn-line {
  margin-top: 3rem;
}
.cid-tU9hQYfcuk .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-tU9hQYfcuk h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-tU9hQYfcuk .mbr-text {
  color: #444444;
}
.cid-tU92BPvRlK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tU92BPvRlK .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-tU92BPvRlK .row {
  border-bottom: 1px solid #808080;
}
.cid-tU92BPvRlK H2 {
  color: #e7272d;
}
.cid-tU92BPvRlK .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-tU92BPvRlK .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-tU92BPvRlK .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tU92BPvRlK .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-tU92BPvRlK .col-lg-12 {
  overflow: hidden;
}
.cid-tU92BPvRlK H4 {
  color: #fff4e2;
}
.cid-tU92BPvRlK .mbr-text,
.cid-tU92BPvRlK .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tU92BPvRlK .logo-wrap:before {
    content: none;
  }
  .cid-tU92BPvRlK .logo-wrap:after {
    content: none;
  }
}
.cid-tU92BPvRlK H3 {
  color: #e6c8ab;
}
.cid-tU92BQIsFh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tU92BQIsFh .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-tU92BQIsFh .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tU92BQIsFh .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tU92BQIsFh .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-tU92BQIsFh .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-tU92BQIsFh .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-tU92BQIsFh .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-tU92BQIsFh .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-tU92BQIsFh .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-tU92BQIsFh .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-udS4ySHgWB .nav-item:focus,
.cid-udS4ySHgWB .nav-link:focus {
  outline: none;
}
.cid-udS4ySHgWB .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-udS4ySHgWB .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-udS4ySHgWB .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-udS4ySHgWB .book-now-header {
    margin-right: -120px;
  }
}
.cid-udS4ySHgWB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udS4ySHgWB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udS4ySHgWB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-udS4ySHgWB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udS4ySHgWB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udS4ySHgWB .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-udS4ySHgWB .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-udS4ySHgWB .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-udS4ySHgWB .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-udS4ySHgWB .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-udS4ySHgWB .navbar .navbar-collapse.show,
.cid-udS4ySHgWB .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-udS4ySHgWB .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-udS4ySHgWB .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-udS4ySHgWB .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-udS4ySHgWB .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-udS4ySHgWB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-udS4ySHgWB .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-udS4ySHgWB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udS4ySHgWB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udS4ySHgWB .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-udS4ySHgWB .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-udS4ySHgWB .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-udS4ySHgWB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-udS4ySHgWB .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-udS4ySHgWB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-udS4ySHgWB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-udS4ySHgWB .navbar-brand {
  min-height: 61px;
  -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-udS4ySHgWB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udS4ySHgWB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udS4ySHgWB .dropdown-item.active,
.cid-udS4ySHgWB .dropdown-item:active {
  background-color: transparent;
}
.cid-udS4ySHgWB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udS4ySHgWB .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-udS4ySHgWB .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-udS4ySHgWB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-udS4ySHgWB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-udS4ySHgWB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udS4ySHgWB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udS4ySHgWB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-udS4ySHgWB .navbar-buttons {
  text-align: inherit;
}
.cid-udS4ySHgWB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-udS4ySHgWB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-udS4ySHgWB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-udS4ySHgWB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-udS4ySHgWB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-udS4ySHgWB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-udS4ySHgWB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-udS4ySHgWB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-udS4ySHgWB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-udS4ySHgWB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-udS4ySHgWB .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-udS4ySHgWB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-udS4ySHgWB .icons-menu {
  text-align: inherit;
}
.cid-udS4ySHgWB .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-udS4ySHgWB .nav-link:hover,
.cid-udS4ySHgWB .dropdown-item:hover,
.cid-udS4ySHgWB .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udS4ySHgWB .navbar {
    height: 77px;
  }
  .cid-udS4ySHgWB .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-udS4ySHgWB .navbar-collapse .img-column {
    display: none;
  }
  .cid-udS4ySHgWB .icons-menu,
  .cid-udS4ySHgWB .navbar-buttons,
  .cid-udS4ySHgWB .contact-block,
  .cid-udS4ySHgWB .text-column {
    text-align: center !important;
  }
}
.cid-udS4ySHgWB .icons-menu,
.cid-udS4ySHgWB .navbar-buttons,
.cid-udS4ySHgWB .contact-block,
.cid-udS4ySHgWB .text-column {
  color: #cccccc;
}
.cid-udS4yUGRSc {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/pexels-janamparikh-17033857-2000x1333.jpg");
}
@media (max-width: 991px) {
  .cid-udS4yUGRSc {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-udS4yUGRSc .container-fluid {
  padding: 0 3rem;
}
.cid-udS4yUGRSc .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-udS4yUGRSc .container-fluid {
    padding: 0 1rem;
  }
}
.cid-udS4yUGRSc h1 {
  margin-bottom: 1rem;
}
.cid-udS4yUGRSc .mbr-section-title {
  font-weight: 300;
  color: #ffffff;
}
.cid-udS4yUGRSc .btn-line {
  margin-top: 3rem;
}
.cid-udS4yUGRSc p {
  margin-bottom: 0;
}
.cid-udS4yUGRSc .mbr-text,
.cid-udS4yUGRSc .mbr-section-btn {
  color: #ffffff;
}
.cid-udSiM94xZE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f3eee7;
}
.cid-udSiM94xZE .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
.cid-udSiM94xZE .item:focus,
.cid-udSiM94xZE span:focus {
  outline: none;
}
.cid-udSiM94xZE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-udSiM94xZE .item {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-bottom: 30px;
  }
}
.cid-udSiM94xZE .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .cid-udSiM94xZE .item-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
}
.cid-udSiM94xZE .item-content {
  padding: 0 1rem;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-udSiM94xZE .mbr-section-btn {
  margin-top: auto !important;
  width: 100%;
}
.cid-udSiM94xZE .mbr-section-title,
.cid-udSiM94xZE .mbr-section-subtitle {
  color: #111111;
}
.cid-udSiM94xZE .mbr-text {
  color: #555555;
  font-style: italic;
}
.cid-udSiM94xZE .item-subtitle {
  text-align: center;
}
.cid-udSiM94xZE .item-img {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  display: flex;
  margin-bottom: 24px;
}
.cid-udSiM94xZE .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.cid-udSiM94xZE .mbr-section-head {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .cid-udSiM94xZE .mbr-section-head {
    margin-bottom: 90px;
  }
}
.cid-udSiM94xZE .label-text {
  color: #c2272d;
}
.cid-udS5gjQx6b {
  overflow: hidden !important;
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f3eee7;
}
@media (max-width: 991px) {
  .cid-udS5gjQx6b {
    height: auto;
    min-height: auto;
    padding-top: 0px;
    padding-bottom: 8px;
  }
}
.cid-udS5gjQx6b .container-fluid {
  padding: 0 3rem;
}
.cid-udS5gjQx6b .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-udS5gjQx6b .container-fluid {
    padding: 0 1rem;
  }
}
.cid-udS5gjQx6b h1 {
  margin-bottom: 1rem;
}
.cid-udS5gjQx6b .mbr-section-title {
  font-weight: 300;
  color: #c2272d;
}
.cid-udS5gjQx6b .btn-line {
  margin-top: 3rem;
}
.cid-udS5gjQx6b p {
  margin-bottom: 0;
}
.cid-udS5gjQx6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-udS5gjQx6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-udS5gjQx6b .mbr-text,
.cid-udS5gjQx6b .mbr-section-btn {
  color: #444444;
}
.cid-udS66IcKC7 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: #fffbf6;
}
.cid-udS66IcKC7 .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: #202020;
}
.cid-udS66IcKC7 .mbr-section-title {
  margin-bottom: 18px;
  color: #c2272d;
}
.cid-udS66IcKC7 .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-udS66IcKC7 .mbr-text {
  color: #ffffff;
}
.cid-udS66IcKC7 .card_title {
  color: #444444;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-udS66IcKC7 .card_content {
  margin: 26px 0 23px;
}
.cid-udS66IcKC7 img,
.cid-udS66IcKC7 .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-udS66IcKC7 .item {
  margin-bottom: 30px;
}
.cid-udS66IcKC7 .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-udS66IcKC7 .card_text {
  color: #82786e;
  margin-top: 4px;
}
.cid-udS66IcKC7 .item-img {
  position: relative;
}
.cid-udS66IcKC7 .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-udS66IcKC7 .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-udSbtLYTxm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udSbtLYTxm .card-wrapper {
  background: #fffbf6;
  padding: 10% 25%;
  margin: auto;
}
.cid-udSbtLYTxm .sign {
  width: 200px;
  padding-top: 16px;
  display: inline;
}
.cid-udSbtLYTxm .row {
  justify-content: center;
  align-items: center;
}
.cid-udSbtLYTxm .mbr-section-title {
  padding: 0;
  padding-bottom: 12px;
  margin: 0;
  color: #0c5b47;
}
.cid-udSbtLYTxm .mbr-text,
.cid-udSbtLYTxm .right-side {
  color: #1b745e;
}
.cid-udSbtLYTxm .container {
  max-width: 1100px;
}
.cid-udSbtLYTxm .padd {
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .cid-udSbtLYTxm .card-wrapper {
    padding: 10% 10%;
  }
}
.cid-udSbtLYTxm .picture {
  border-radius: 50%;
}
.cid-udSbtLYTxm .pic {
  padding-bottom: 32px;
}
.cid-udSbtLYTxm .desc {
  padding-bottom: 20px;
  color: #444444;
}
.cid-udSbtLYTxm .btn {
  margin-top: 25px;
}
.cid-udSbtLYTxm .row {
  flex-direction: row-reverse;
}
.cid-udSbtLYTxm .padd {
  padding-right: 0px;
  padding-left: 50px;
}
@media (max-width: 960px) {
  .cid-udSbtLYTxm .card-wrapper {
    max-width: 420px;
  }
  .cid-udSbtLYTxm .left-side {
    padding-top: 50px;
  }
  .cid-udSbtLYTxm .padd {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.cid-udSbtLYTxm input,
.cid-udSbtLYTxm textarea {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  border-bottom: 1px solid #0c5b47!important;
}
.cid-udSbtLYTxm .form-control {
  font-style: italic;
  color: #1b745e !important;
  font-family: crimson text,serif;
}
.cid-udSbtLYTxm .f {
  font-size: 42px;
}
.cid-udSbtLYTxm LABEL {
  color: #c2272d;
}
.cid-udSbtLYTxm .art {
  color: #c2272d;
}
.cid-udSbtLYTxm .text,
.cid-udSbtLYTxm .si {
  color: #444444;
}
.cid-udS4yZyKPc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-udS4yZyKPc .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-udS4yZyKPc .row {
  border-bottom: 1px solid #808080;
}
.cid-udS4yZyKPc H2 {
  color: #e7272d;
}
.cid-udS4yZyKPc .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-udS4yZyKPc .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-udS4yZyKPc .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-udS4yZyKPc .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-udS4yZyKPc .col-lg-12 {
  overflow: hidden;
}
.cid-udS4yZyKPc H4 {
  color: #fff4e2;
}
.cid-udS4yZyKPc .mbr-text,
.cid-udS4yZyKPc .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-udS4yZyKPc .logo-wrap:before {
    content: none;
  }
  .cid-udS4yZyKPc .logo-wrap:after {
    content: none;
  }
}
.cid-udS4yZyKPc H3 {
  color: #e6c8ab;
}
.cid-udS4z05V8i {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udS4z05V8i .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-udS4z05V8i .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-udS4z05V8i .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-udS4z05V8i .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-udS4z05V8i .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-udS4z05V8i .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-udS4z05V8i .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-udS4z05V8i .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-udS4z05V8i .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-udS4z05V8i .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-udSodp9LCz .nav-item:focus,
.cid-udSodp9LCz .nav-link:focus {
  outline: none;
}
.cid-udSodp9LCz .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
@media (max-width: 480px) {
  .cid-udSodp9LCz .book-now-header {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .cid-udSodp9LCz .book-now-header {
    margin-right: -65px;
  }
}
@media screen and (min-width: 900px) {
  .cid-udSodp9LCz .book-now-header {
    margin-right: -120px;
  }
}
.cid-udSodp9LCz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udSodp9LCz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udSodp9LCz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-udSodp9LCz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-udSodp9LCz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 0em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udSodp9LCz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f3eee7;
  background: none;
}
.cid-udSodp9LCz .navbar.opened {
  transition: all .3s;
  background: #f3eee7 !important;
}
.cid-udSodp9LCz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-udSodp9LCz .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-udSodp9LCz .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-udSodp9LCz .navbar .navbar-collapse.show,
.cid-udSodp9LCz .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-udSodp9LCz .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-udSodp9LCz .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-udSodp9LCz .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-udSodp9LCz .navbar:not(.navbar-short) .text-column {
  max-height: calc(100vh - 4rem - 4.4rem);
}
.cid-udSodp9LCz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-udSodp9LCz .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-udSodp9LCz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udSodp9LCz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udSodp9LCz .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-udSodp9LCz .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-udSodp9LCz .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-udSodp9LCz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-udSodp9LCz .navbar.navbar-short {
  background: #f3eee7 !important;
  min-height: 60px;
}
.cid-udSodp9LCz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-udSodp9LCz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-udSodp9LCz .navbar-brand {
  min-height: 61px;
  -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-udSodp9LCz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udSodp9LCz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udSodp9LCz .dropdown-item.active,
.cid-udSodp9LCz .dropdown-item:active {
  background-color: transparent;
}
.cid-udSodp9LCz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udSodp9LCz .nav-dropdown .link {
  margin: .2em 0em;
}
.cid-udSodp9LCz .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-udSodp9LCz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-udSodp9LCz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f3eee7;
}
.cid-udSodp9LCz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udSodp9LCz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udSodp9LCz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-udSodp9LCz .navbar-buttons {
  text-align: inherit;
}
.cid-udSodp9LCz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-udSodp9LCz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a79a9a;
}
.cid-udSodp9LCz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-udSodp9LCz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-udSodp9LCz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-udSodp9LCz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-udSodp9LCz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-udSodp9LCz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-udSodp9LCz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-udSodp9LCz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-udSodp9LCz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-udSodp9LCz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-udSodp9LCz .icons-menu {
  text-align: inherit;
}
.cid-udSodp9LCz .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-udSodp9LCz .nav-link:hover,
.cid-udSodp9LCz .dropdown-item:hover,
.cid-udSodp9LCz .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udSodp9LCz .navbar {
    height: 77px;
  }
  .cid-udSodp9LCz .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-udSodp9LCz .navbar-collapse .img-column {
    display: none;
  }
  .cid-udSodp9LCz .icons-menu,
  .cid-udSodp9LCz .navbar-buttons,
  .cid-udSodp9LCz .contact-block,
  .cid-udSodp9LCz .text-column {
    text-align: center !important;
  }
}
.cid-udSodp9LCz .icons-menu,
.cid-udSodp9LCz .navbar-buttons,
.cid-udSodp9LCz .contact-block,
.cid-udSodp9LCz .text-column {
  color: #cccccc;
}
.cid-udSodqXBuu {
  overflow: hidden !important;
  background-image: url("../../../assets/images/img-20240301-wa0014-1-768x1024.jpg");
}
.cid-udSodqXBuu .container-fluid {
  padding: 0 3rem;
}
.cid-udSodqXBuu .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-udSodqXBuu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-udSodqXBuu h1 {
  margin-bottom: 1rem;
}
.cid-udSodqXBuu .mbr-section-title {
  font-weight: 300;
  color: #fffbf6;
}
.cid-udSodqXBuu .btn-line {
  margin-top: 3rem;
}
.cid-udSodqXBuu p {
  margin-bottom: 0;
}
.cid-udSodqXBuu .mbr-text,
.cid-udSodqXBuu .mbr-section-btn {
  color: #ffffff;
}
.cid-udSodskwWJ {
  background-color: #f3eee7;
}
.cid-udSodskwWJ H1 {
  color: #132c70;
}
.cid-udSodskwWJ .mbr-text,
.cid-udSodskwWJ .mbr-section-btn {
  color: #444444;
}
.cid-udSodskwWJ H3 {
  color: #132c70;
}
.cid-udSodskwWJ .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-udSodskwWJ .mbr-list li {
  margin-bottom: 1rem;
}
.cid-udSodskwWJ .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-udSodskwWJ p {
  margin: 0;
}
.cid-udSodskwWJ a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-udSodskwWJ .row {
    display: flex;
    flex-direction: column;
  }
  .cid-udSodskwWJ .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-udSodskwWJ .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-udSodskwWJ .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-udSodskwWJ .nav-dropdown .link {
  font-weight: 300;
}
.cid-udSodskwWJ H2 {
  color: #c2272d;
}
.cid-udSodtC6hk {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f3eee7;
}
.cid-udSodtC6hk .card-img {
  background-color: #fff;
  overflow: hidden;
}
.cid-udSodtC6hk .card-box {
  padding: 0rem;
  padding-top: 2rem;
}
.cid-udSodtC6hk h4 {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-udSodtC6hk h3 {
  margin-bottom: 0;
  letter-spacing: 1px;
}
.cid-udSodtC6hk p {
  text-align: left;
}
.cid-udSodtC6hk img {
  transition: all 0.3s;
}
.cid-udSodtC6hk .mbr-text {
  color: #1c1c1c;
  text-align: right;
}
.cid-udSodtC6hk .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-udSodtC6hk .card-wrapper:hover h4 {
  background-size: 100% 100%;
}
.cid-udSodtC6hk .card-wrapper:hover img {
  filter: blur(2px);
}
.cid-udSodtC6hk .card {
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .cid-udSodtC6hk .card-columns {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .cid-udSodtC6hk .card-columns {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .cid-udSodtC6hk .card-columns {
    column-gap: 4rem;
  }
}
.cid-udSodtC6hk .card-title {
  color: #82786e;
  text-align: center;
}
.cid-udSodtC6hk .card-title DIV {
  text-align: center;
}
.cid-udSodvbPvJ {
  overflow: hidden !important;
  padding-top: 56px;
  padding-bottom: 56px;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-udSodvbPvJ {
    height: auto;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.cid-udSodvbPvJ h1 {
  color: #132c70;
}
.cid-udSodvbPvJ h2 {
  color: #132c70;
}
.cid-udSodvbPvJ a {
  color: #132c70;
}
.cid-udSodvbPvJ .btn-line::after {
  background-color: #132c70;
}
.cid-udSodvbPvJ .animated-element {
  color: #efefef;
}
.cid-udSodvbPvJ .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-udSodvbPvJ .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-udSodvbPvJ .buttons-right {
    margin-left: 0px;
    margin-top: 5px;
  }
}
@media (min-width: 991px) {
  .cid-udSodvbPvJ .buttons-right {
    margin-left: -5px;
  }
}
@media (max-width: 767px) {
  .cid-udSodvbPvJ .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
  .cid-udSodvbPvJ .container-fluid {
    padding: 0 1rem;
  }
  .cid-udSodvbPvJ .mbr-white {
    padding-left: 0 1rem;
  }
  .cid-udSodvbPvJ .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-udSodvbPvJ .btn {
    height: 46px;
    font-weight: 300;
  }
  .cid-udSodvbPvJ .container-fluid {
    padding: 0 2rem;
  }
  .cid-udSodvbPvJ .mbr-white {
    padding-left: 3rem;
  }
  .cid-udSodvbPvJ .buttons {
    display: flex;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-udSodvbPvJ .buttons-1 {
    padding: 0.75rem 3rem;
  }
  .cid-udSodvbPvJ .buttons-2 {
    position: absolute;
    border-left: none;
    padding: 1rem 2.5rem;
  }
}
.cid-udSodvbPvJ .container-fluid {
  max-width: 1300px;
}
.cid-udSodvbPvJ .mbr-section-title {
  margin-bottom: 2rem;
  text-align: left;
  color: #c2272d;
}
.cid-udSodvbPvJ .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-udSodvbPvJ .btn-line {
  margin-top: 3rem;
}
.cid-udSodvbPvJ .span_string {
  display: block;
  margin-bottom: 1rem;
}
.cid-udSodvbPvJ h3 {
  font-family: "Cormorant", sans-serif;
  margin-bottom: 0;
}
.cid-udSodvbPvJ .mbr-text {
  color: #444444;
}
.cid-udSodxY96r {
  overflow: hidden !important;
  background-image: url("../../../assets/images/img-20240301-wa0046-1600x1200.jpg");
}
.cid-udSodxY96r .container-fluid {
  padding: 0 3rem;
}
.cid-udSodxY96r .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-udSodxY96r .container-fluid {
    padding: 0 1rem;
  }
}
.cid-udSodxY96r h1 {
  margin-bottom: 1rem;
}
.cid-udSodxY96r .mbr-section-title {
  font-weight: 300;
  color: #f3eee7;
}
.cid-udSodxY96r .btn-line {
  margin-top: 3rem;
}
.cid-udSodxY96r p {
  margin-bottom: 0;
}
.cid-udSodxY96r .mbr-section-subtitle {
  color: #f3eee7;
}
.cid-udSodxY96r .mbr-text,
.cid-udSodxY96r .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-udSodziM0w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-udSodziM0w .card-wrapper {
  background: #fffbf6;
  padding: 10% 25%;
  margin: auto;
}
.cid-udSodziM0w .sign {
  width: 200px;
  padding-top: 16px;
  display: inline;
}
.cid-udSodziM0w .row {
  justify-content: center;
  align-items: center;
}
.cid-udSodziM0w .mbr-section-title {
  padding: 0;
  padding-bottom: 12px;
  margin: 0;
  color: #0c5b47;
}
.cid-udSodziM0w .mbr-text,
.cid-udSodziM0w .right-side {
  color: #1b745e;
}
.cid-udSodziM0w .container {
  max-width: 1100px;
}
.cid-udSodziM0w .padd {
  padding-right: 50px;
}
@media (max-width: 1024px) {
  .cid-udSodziM0w .card-wrapper {
    padding: 10% 10%;
  }
}
.cid-udSodziM0w .picture {
  border-radius: 50%;
}
.cid-udSodziM0w .pic {
  padding-bottom: 32px;
}
.cid-udSodziM0w .desc {
  padding-bottom: 20px;
  color: #444444;
}
.cid-udSodziM0w .btn {
  margin-top: 25px;
}
.cid-udSodziM0w .row {
  flex-direction: row-reverse;
}
.cid-udSodziM0w .padd {
  padding-right: 0px;
  padding-left: 50px;
}
@media (max-width: 960px) {
  .cid-udSodziM0w .card-wrapper {
    max-width: 420px;
  }
  .cid-udSodziM0w .left-side {
    padding-top: 50px;
  }
  .cid-udSodziM0w .padd {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.cid-udSodziM0w input,
.cid-udSodziM0w textarea {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  border: none!important;
  box-shadow: none;
  border-bottom: 1px solid #0c5b47!important;
}
.cid-udSodziM0w .form-control {
  font-style: italic;
  color: #1b745e !important;
  font-family: crimson text,serif;
}
.cid-udSodziM0w .f {
  font-size: 42px;
}
.cid-udSodziM0w LABEL {
  color: #c2272d;
}
.cid-udSodziM0w .art {
  color: #c2272d;
}
.cid-udSodziM0w .text,
.cid-udSodziM0w .si {
  color: #444444;
}
.cid-udSodAHGK2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-udSodAHGK2 .logo {
  max-width: 140px;
  width: 100%;
  margin: auto;
}
.cid-udSodAHGK2 .row {
  border-bottom: 1px solid #808080;
}
.cid-udSodAHGK2 H2 {
  color: #e7272d;
}
.cid-udSodAHGK2 .feedimg {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 2px;
}
.cid-udSodAHGK2 .logo-wrap {
  width: fit-content;
  margin: auto;
  position: relative;
}
.cid-udSodAHGK2 .logo-wrap:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-udSodAHGK2 .logo-wrap:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 180px;
  width: 999px;
  height: 1px;
  background: #808080;
}
.cid-udSodAHGK2 .col-lg-12 {
  overflow: hidden;
}
.cid-udSodAHGK2 H4 {
  color: #fff4e2;
}
.cid-udSodAHGK2 .mbr-text,
.cid-udSodAHGK2 .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-udSodAHGK2 .logo-wrap:before {
    content: none;
  }
  .cid-udSodAHGK2 .logo-wrap:after {
    content: none;
  }
}
.cid-udSodAHGK2 H3 {
  color: #e6c8ab;
}
.cid-udSodBJnGx {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udSodBJnGx .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-udSodBJnGx .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-udSodBJnGx .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-udSodBJnGx .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-udSodBJnGx .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #c1c1c1;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-udSodBJnGx .icon-transition span:hover {
  background-color: #f3eee7;
}
.cid-udSodBJnGx .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-udSodBJnGx .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-udSodBJnGx .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-udSodBJnGx .mbr-text {
    margin-bottom: 1.5rem;
  }
}
