/*------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  About Section
6.  Services Section
7.  Testimonial Section
8.  Blog Section
9.  Contact
10.  Footer Style

-------------------------------------------------------------------*/

/* Template default CSS
/*----------------------------------------*/
:root {
  --brand-color: #7b241c;
  --brand-color-light: #dfad75;
  --brand-color-lighter: #ffddba;
  --background-accent: #f9f9f9;
}

html,
body {
  height: 100%;
  font-family: "Cabin", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smooth: antialiased;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #111111;
  font-weight: 400;
  font-family: "Lora", serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "Cabin", sans-serif;
  color: #3e3e3e;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  color: var(--brand-color-lighter);
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
  text-align: center;
  margin-bottom: 22px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.section-title span {
  font-size: 14px;
  color: var(--brand-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title h1 {
  font-size: 50px;
  color: #19191a;
  line-height: 58px;
  margin-top: 2px;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: 44px;
  color: #19191a;
  line-height: 58px;
  margin-top: 10px;
}

.section-title p {
  text-align: justify;
  font-size: 18px;
}

.set-bg {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.set-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.set-bg > * {
  position: relative;
  z-index: 1;
}

.spad {
  padding-top: 54px;
  padding-bottom: 100px;
}

.spad-2 {
  padding-top: 50px;
  padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */

.primary-btn {
  display: inline-block;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
}

.primary-btn:after {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--brand-color);
  content: "";
}

/* Preloader */

#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #ffffff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

.spacial-controls {
  position: fixed;
  width: 111px;
  height: 91px;
  top: 0;
  right: 0;
  z-index: 999;
}

.spacial-controls .search-switch {
  display: block;
  height: 100%;
  padding-top: 30px;
  background: #323232;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  z-index: 99999;
}

.search-model-form {
  padding: 0 15px;
}

.search-model-form input {
  width: 500px;
  font-size: 40px;
  border: none;
  border-bottom: 2px solid #333;
  background: none;
  color: #999;
}

.search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #333;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header-section {
  position: relative;
  z-index: 97;
  background: #ffffff;
}

@media only screen and (min-width: 992px) {
  body {
    padding-top: 78px;
  }

  .header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  }

  #hero-section,
  #services,
  #testimonials,
  #events,
  #about-us,
  #rooms {
    scroll-margin-top: 96px;
  }
}

.header-section.header-normal .menu-item {
  -webkit-box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
  box-shadow: 0px 12px 15px rgba(36, 11, 12, 0.05);
}

.top-nav {
  border-bottom: 1px solid #e5e5e5;
}

.top-nav .tn-left li {
  list-style: none;
  display: inline-block;
  font-size: 16px;
  color: #19191a;
  font-weight: 500;
  padding: 14px 0 12px;
  margin-right: 64px;
  position: relative;
}

.top-nav .tn-left li:after {
  position: absolute;
  right: -32px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e5e5e5;
  content: "";
}

.top-nav .tn-left li:last-child {
  margin-right: 0;
}

.top-nav .tn-left li:last-child:after {
  display: none;
}

.top-nav .tn-left li i {
  color: var(--brand-color);
  margin-right: 4px;
}

.top-nav .tn-right {
  text-align: right;
}

.top-nav .tn-right .top-social {
  display: inline-block;
  margin-right: 35px;
  padding: 13px 0;
}

.top-nav .tn-right .top-social a {
  display: inline-block;
  font-size: 16px;
  color: #19191a;
  margin-left: 15px;
}

.bk-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 20px 15px;
  background: var(--brand-color);
  color: #ffffff;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.bk-btn:hover {
  background: var(--brand-color-light);
  border-color: var(--brand-color-light);
  color: #ffffff;
}

.language-option {
  display: inline-block;
  margin-left: 30px;
  cursor: pointer;
  padding: 13px 0px 11px;
  position: relative;
}

.language-option:hover .flag-dropdown {
  top: 40px;
  opacity: 1;
  visibility: visible;
}

.language-option img {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  margin-right: 10px;
}

.language-option span {
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
}

.language-option .flag-dropdown {
  position: absolute;
  left: 0;
  top: 5px;
  /* width: 100px; */
  background: #ffffff;
  display: block;
  padding: 10px 5px;
  -webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}

.language-option .flag-dropdown ul li {
  list-style: none;
  text-align: left;
}

.language-option .flag-dropdown ul li a {
  display: block;
  padding: 5px 15px;
  width: 100%;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #19191a;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.language-option .flag-dropdown ul li a:hover {
  color: var(--brand-color);
  text-decoration: underline;
  /* background-color: var(--brand-color-light); */
}

.menu-item {
  position: relative;
  z-index: 9;
}

.menu-item .logo {
  padding: 15px 0;
}

.menu-item .logo a {
  display: inline-block;
}

.menu-item .nav-menu {
  text-align: right;
}

.menu-item .nav-menu .mainmenu {
  display: inline-block;
}

.menu-item .nav-menu .mainmenu li {
  list-style: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.menu-item .nav-menu .mainmenu li.active a:after {
  opacity: 1;
}

.menu-item .nav-menu .mainmenu li:hover > a:after {
  opacity: 1;
}

.menu-item .nav-menu .mainmenu li:hover .dropdown {
  top: 77px;
  opacity: 1;
  visibility: visible;
}

.menu-item .nav-menu .mainmenu li a {
  font-size: 16px;
  color: #19191a;
  margin-right: 42px;
  font-weight: 500;
  display: inline-block;
  padding: 27px 0;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li a:after {
  position: absolute;
  left: 0;
  top: 52px;
  width: 100%;
  height: 2px;
  background: var(--brand-color);
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li .dropdown {
  position: absolute;
  left: 0;
  top: 97px;
  width: 180px;
  background: #ffffff;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
  box-shadow: 0px 9px 15px rgba(25, 25, 26, 0.05);
}

.menu-item .nav-menu .mainmenu li .dropdown li {
  list-style: none;
  display: block;
}

.menu-item .nav-menu .mainmenu li .dropdown li a {
  font-size: 16px;
  color: #19191a;
  display: block;
  text-align: left;
  padding: 8px 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-item .nav-menu .mainmenu li .dropdown li a:hover {
  color: var(--brand-color);
}

.menu-item .nav-menu .mainmenu li .dropdown li a:after {
  display: none;
}

.menu-item .nav-menu .nav-right {
  display: inline-block;
  margin-left: 43px;
  padding: 27px 0px;
}

.menu-item .nav-menu .nav-right i {
  font-size: 16px;
  color: #19191a;
  cursor: pointer;
}

.canvas-open {
  display: none;
}

.offcanvas-menu-wrapper {
  display: none;
}

.mobile-sticky-banner {
  display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero-section {
  position: relative;
  padding-top: 160px;
  padding-bottom: 160px;
}

.hero-section .container {
  position: relative;
  z-index: 5;
}

.hero-text {
  padding-top: 55px;
  text-align: center;
  text-shadow: 2px 2px 4px var(--brand-color);
}

.hero-text h1,
h2 {
  font-size: 80px;
  /* line-height: 90px; */
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  color: #ffffff;
  line-height: 28px;
  margin-bottom: 35px;
}

.booking-form {
  background: #ffffff;
  padding: 30px 30px 30px 30px;
  border-radius: 4px;
}

.booking-form h3 {
  color: #19191a;
  margin-bottom: 20px;
  font-size: 1.5em;
}

.booking-form form input {
  width: 100%;
  height: 50px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
  padding-left: 20px;
}

.booking-form form .check-date {
  position: relative;
  margin-bottom: 5px;
}

.booking-form form label {
  font-size: 14px;
  color: #707079;
  display: block;
  margin-bottom: 2px;
}

.booking-form form .check-date i {
  color: var(--brand-color);
  position: absolute;
  right: 18px;
  bottom: 17px;
  pointer-events: none;
}

.booking-form form .select-option {
  margin-bottom: 5px;
}

.booking-form form .select-option .nice-select {
  border-radius: 2px;
  border: 1px solid #ebebeb;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 20px;
  width: 100%;
  float: none;
}

.booking-form form .select-option .nice-select:after {
  border-bottom: 2px solid var(--brand-color);
  border-right: 2px solid var(--brand-color);
  height: 10px;
  margin-top: 0;
  right: 20px;
  width: 10px;
  top: 36%;
}

.booking-form form .select-option .nice-select span {
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
}

.booking-form form .select-option .nice-select .list {
  margin-top: 0;
  width: 100%;
}

.booking-form form button {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid var(--brand-color);
  border-radius: 2px;
  color: var(--brand-color);
  font-weight: 500;
  background: transparent;
  width: 100%;
  height: 46px;
  margin-top: 30px;
}
.booking-form form button:hover {
  background: var(--brand-color);
  color: #ffffff;
}

/*---------------------
  jQuery UI datepicker (brand theme)
-----------------------*/
#ui-datepicker-div.ui-datepicker {
  z-index: 10050 !important;
  width: auto;
  padding: 16px 18px 14px;
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  color: #19191a;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

#ui-datepicker-div .ui-widget-header,
#ui-datepicker-div .ui-datepicker-header {
  margin: 0 0 10px;
  padding: 4px 0 12px;
  background: transparent;
  border: none;
  color: var(--brand-color);
}

#ui-datepicker-div .ui-datepicker-title {
  margin: 0 2.25rem;
  line-height: 1.3;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-color);
}

#ui-datepicker-div .ui-datepicker-title select {
  font-family: inherit;
  font-weight: 700;
  color: var(--brand-color);
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 4px 8px;
  margin: 0 2px;
  background: #fff;
}

#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
  width: 2rem;
  height: 2rem;
  top: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

#ui-datepicker-div .ui-datepicker-prev {
  left: 2px;
}

#ui-datepicker-div .ui-datepicker-next {
  right: 2px;
}

#ui-datepicker-div .ui-datepicker-prev-hover,
#ui-datepicker-div .ui-datepicker-next-hover {
  background: transparent;
  border: none;
}

#ui-datepicker-div .ui-datepicker-prev .ui-icon,
#ui-datepicker-div .ui-datepicker-next .ui-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0;
  background-image: none !important;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border: none;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-indent: 0 !important;
  overflow: visible;
}

#ui-datepicker-div .ui-datepicker-prev .ui-icon::after,
#ui-datepicker-div .ui-datepicker-next .ui-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  transform: translate(-50%, -50%);
}

#ui-datepicker-div .ui-datepicker-prev:not(.ui-state-disabled) .ui-icon::after {
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--brand-color) transparent transparent;
}

#ui-datepicker-div .ui-datepicker-prev.ui-state-disabled .ui-icon::after {
  border-width: 6px 8px 6px 0;
  border-color: transparent #c8c8c8 transparent transparent;
}

#ui-datepicker-div .ui-datepicker-next:not(.ui-state-disabled) .ui-icon::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--brand-color);
}

#ui-datepicker-div .ui-datepicker-next.ui-state-disabled .ui-icon::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #c8c8c8;
}

#ui-datepicker-div table.ui-datepicker-calendar {
  margin: 0;
  border-collapse: separate;
  border-spacing: 2px 4px;
}

#ui-datepicker-div .ui-datepicker-calendar th {
  padding: 6px 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-color);
  text-transform: capitalize;
}

#ui-datepicker-div .ui-datepicker-calendar th span,
#ui-datepicker-div .ui-datepicker-calendar th {
  border: none;
  background: transparent;
}

#ui-datepicker-div .ui-datepicker-calendar td {
  padding: 0;
  border: none;
  background: transparent;
}

#ui-datepicker-div .ui-datepicker-calendar td span,
#ui-datepicker-div .ui-datepicker-calendar td a {
  display: block;
  box-sizing: border-box;
  min-width: 2.25rem;
  padding: 8px 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background: transparent;
}

#ui-datepicker-div
  .ui-datepicker-calendar
  td.ui-datepicker-unselectable
  span.ui-state-default {
  color: #c4c4c4;
  font-weight: 500;
  opacity: 1;
}

#ui-datepicker-div
  .ui-datepicker-calendar
  td:not(.ui-datepicker-unselectable)
  a.ui-state-default {
  color: #19191a;
}

#ui-datepicker-div
  .ui-datepicker-calendar
  td:not(.ui-datepicker-unselectable)
  a.ui-state-default:hover {
  background: rgba(223, 173, 117, 0.35);
  color: #19191a;
}

#ui-datepicker-div
  .ui-datepicker-calendar
  td.ui-datepicker-today:not(.ui-datepicker-current-day)
  a {
  background: var(--brand-color-light) !important;
  color: #19191a !important;
  border-radius: 0;
  font-weight: 700;
}

#ui-datepicker-div
  .ui-datepicker-calendar
  td.ui-datepicker-current-day
  a.ui-state-active {
  background: var(--brand-color) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px var(--brand-color);
}

#ui-datepicker-div
  .ui-datepicker-calendar
  td.ui-datepicker-current-day.ui-datepicker-today
  a.ui-state-active {
  border-radius: 8px;
}

#ui-datepicker-div .ui-datepicker-buttonpane {
  margin: 10px 0 0;
  padding: 0;
  border: none;
  background: transparent;
}

#ui-datepicker-div .ui-datepicker-buttonpane button {
  margin: 0.5em 0.2em 0;
  font-family: inherit;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero-slider.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  bottom: 23px;
  width: 100%;
  text-align: center;
}

.hero-slider.owl-carousel .owl-dots button {
  height: 6px;
  width: 6px;
  background: #ffffff;
  opacity: 0.5;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.hero-slider.owl-carousel .owl-dots button.active {
  width: 30px;
  border-radius: 50px;
  opacity: 1;
}

.hero-slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slider .hs-item {
  height: 100%;
}

.hero-slider .hs-item.set-bg::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.3);
}

/*---------------------
  About US
-----------------------*/
.aboutus-section {
  /* homepage */
  background: var(--background-accent);
}

.about-text {
  text-align: center;
  padding: 0 35px;
}

.about-text img {
  height: 8em;
  margin: 0 auto;
}

.about-text p {
  color: #595960;
  font-weight: 500;
}

.about-text p.f-para {
  margin-bottom: 10px;
}

.about-text p.s-para {
  margin-bottom: 35px;
}

.about-text .about-btn {
  color: #19191a;
}

.about-pic img {
  min-width: 100%;
  border-radius: 5px;
}

.about-carousel {
  overflow: hidden;
  border-radius: 6px;
}

.about-carousel .carousel-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin-bottom: 0;
}

.about-carousel .carousel-control-prev,
.about-carousel .carousel-control-next {
  width: 12%;
}

.about-carousel .carousel-indicators {
  margin-bottom: 10px;
}

.about-carousel .carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/*---------------------
  Service Section
-----------------------*/

.services-section {
  padding-bottom: 60px;
  border-top: 1px solid #e5e5e5;
}

.services-section .section-title {
  margin-bottom: 5px;
}

.service-item {
  text-align: center;
  padding: 5px 35px 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.service-item:hover {
  background: var(--brand-color);
}

.service-item:hover i {
  color: #ffffff;
}

.service-item:hover h4 {
  color: #ffffff;
}

.service-item:hover p {
  color: #ffffff;
}

.service-item i {
  display: inline-block;
  color: var(--brand-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.service-item h4 {
  color: #19191a;
  font-size: 22px;
  margin-bottom: 5px;
  margin-top: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.service-item p {
  color: #707079;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*------------------------
  Service Page Room Section 
-------------------------*/

.service-row {
  padding: 28px 32px;
  border: 1px solid #eee;
  border-radius: 10px;
  color: #ffffff;
  transition: all 0.25s ease;
}

.service-icon {
  font-size: 40px;
  color: var(--brand-color);
}

.service-row:hover {
  background: var(--brand-color);
  border-color: var(--brand-color-light);
  transform: translateY(-2px);
}

.service-row:hover i {
  color: #ffffff;
}

.service-row:hover h4 {
  color: #ffffff;
}

.service-row:hover p {
  color: #ffffff;
}

.service-row:hover .service-tag {
  background: var(--brand-color-light);
}

.service-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--brand-color);
  color: #ffffff;
}

.service-row .service-tag {
  text-align: left;
}

/*------------------------
  Services Mosaic Section
-------------------------*/
.service-section {
  /* background-color: var(--background-accent); */
  padding-bottom: 10px;
}

.services-mosaic-section {
  padding-top: 0px;
  padding-bottom: 80px;
}

.services-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.services-tile {
  grid-column: span 2;
  background: var(--background-accent);
  border-radius: 8px;
  padding: 40px 34px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123, 36, 28, 0.07);
}

.services-tile i {
  display: inline-block;
  font-size: 28px;
  color: var(--brand-color);
  margin-bottom: 16px;
}

.services-tile h3 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #1f252d;
}

.services-tile p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #525762;
}

.services-tile-info {
  background: var(--background-accent);
}

.services-tile-text {
  background: #eff9fb;
}

.services-tile-image {
  padding: 0;
  background: transparent;
  min-height: 300px;
}

.services-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-tile-merged {
  grid-column: span 4;
  display: flex;
  padding: 0;
  min-height: 350px;
}

.services-tile-merged .merged-image {
  flex: 0 0 50%;
  max-width: 50%;
}

.services-tile-merged .merged-image img {
  width: 98%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-tile-merged .merged-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 34px;
}

.services-inline-image {
  width: 100%;
  height: 110px;
  margin-top: 24px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.services-tile-tag {
  display: inline-block;
  margin-top: 28px;
  padding-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8d2f2a;
  border-top: 1px solid rgba(123, 36, 28, 0.16);
}

.services-tile-wide {
  grid-column: span 3;
  min-height: 160px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cta-section,
.services-cta-section {
  background: #ffeedf;
  padding: 50px 0 50px;
  text-align: center;
}

.cta-inner,
.services-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.cta-icon,
.services-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--brand-color-lighter);
  color: var(--brand-color);
  font-size: 32px;
  box-shadow: 0 18px 34px rgba(123, 36, 28, 0.08);
}

.cta-inner h2,
.services-cta-inner h2 {
  color: var(--brand-color);
  font-size: 52px;
  line-height: 1.3;
  margin-bottom: 14px;
}

.cta-inner p,
.services-cta-inner p {
  color: var(--brand-color);
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.cta-actions,
.services-cta-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn,
.services-cta-btn {
  display: inline-block;
  min-width: 178px;
  padding: 15px 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.cta-btn-fill,
.services-cta-btn-fill {
  color: var(--brand-color-lighter);
  border: 1px solid var(--brand-color);
  background: var(--brand-color);
}

.cta-btn-fill:hover,
.services-cta-btn-fill:hover {
  color: var(--brand-color);
  background: var(--brand-color-lighter);
  border-color: var(--brand-color);
}

.cta-btn-outline,
.services-cta-btn-outline {
  background: transparent;
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.cta-btn-outline:hover,
.services-cta-btn-outline:hover {
  color: var(--brand-color);
  background: var(--brand-color-lighter);
  border-color: var(--brand-color);
}

@media (max-width: 1199px) {
  .services-mosaic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-tile {
    grid-column: span 2;
  }

  .services-tile-wide {
    grid-column: span 2;
  }

  .services-tile {
    min-height: 220px;
    padding: 30px 26px;
  }

  .services-tile-image {
    min-height: 250px;
  }

  .services-tile-merged {
    grid-column: span 4;
    min-height: 300px;
  }

  .services-tile-merged .merged-content {
    padding: 30px 26px;
  }
}

@media (max-width: 991px) {
  .header-section .menu-item .nav-menu {
    display: none !important;
  }

  .mobile-sticky-banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 10px 15px;
    border-top: 1px solid var(--brand-color);
  }

  .mobile-sticky-banner .ms-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-sticky-banner .ms-lang {
    flex: 0 0 40px;
  }

  .mobile-sticky-banner .ms-lang .language-option {
    display: block;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin: 0;
  }

  .mobile-sticky-banner .ms-lang .language-option .current-lang {
    font-size: 14px;
    font-weight: 600;
    color: #19191a;
  }

  .mobile-sticky-banner .ms-lang .language-option .flag-dropdown {
    bottom: 100%;
    top: auto;
    left: 0;
    right: auto;
    margin-bottom: 10px;
  }

  .mobile-sticky-banner .ms-book {
    flex: 1;
    background: var(--brand-color);
    color: #ffffff;
    text-align: center;
    padding: 2px 12px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .mobile-sticky-banner .ms-book a.show-modal,
  .mobile-sticky-banner .ms-book .show-modal[data-v-4c249c03] {
    display: block;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .mobile-sticky-banner .ms-call {
    flex: 0 0 45px;
    height: 45px;
    background: var(--brand-color-light);
    /* Green for call/whatsapp feel, or use brand color */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .services-mosaic-section {
    padding-top: 22px;
    padding-bottom: 56px;
  }

  .services-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    display: block;
  }

  .services-tile-wide,
  .services-tile,
  .services-tile-merged {
    grid-column: auto;
    margin-bottom: 14px;
    width: 100%;
  }

  .services-tile:last-child {
    margin-bottom: 0;
  }

  .services-tile {
    min-height: 0;
    padding: 24px 20px;
  }

  .services-tile-image {
    min-height: 220px;
  }

  .services-tile-merged {
    flex-direction: column;
    min-height: 0;
  }

  .services-tile-merged .merged-image,
  .services-tile-merged .merged-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .services-tile-merged .merged-image {
    display: none !important;
  }

  .services-tile-merged .merged-content {
    padding: 24px 20px;
  }

  .services-inline-image {
    height: 95px;
    margin-top: 16px;
  }

  .services-tile h3 {
    font-size: 30px;
  }

  .services-tile p {
    font-size: 15px;
    line-height: 1.65;
  }

  .cta-section,
  .services-cta-section {
    padding: 78px 0 68px;
  }

  .cta-icon,
  .services-cta-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
    font-size: 28px;
    border-radius: 16px;
  }

  .cta-inner h2,
  .services-cta-inner h2 {
    font-size: 34px;
    line-height: 1.35;
  }

  .cta-inner p,
  .services-cta-inner p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .cta-btn,
  .services-cta-btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 576px) {
  .service-row {
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 10px !important;
    text-align: center;
  }

  .service-icon {
    margin-bottom: 8px;
  }

  .service-row .service-tag {
    text-align: center;
  }
}

/*------------------------
  Home Page Room Section 
-------------------------*/

.hp-room-items {
  margin-left: 0;
  margin-right: 0;
}

.hp-room-section .container-fluid {
  padding-left: 7px;
  padding-right: 7px;
}

.hp-room-items .row {
  margin-left: -7px;
  margin-right: -7px;
}

.hp-room-items .row > [class*="col-"] {
  display: flex;
  padding-left: 7px;
  padding-right: 7px;
}

.hp-room-items .hp-room-item {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(31, 18, 10, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hp-room-items .hp-room-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(31, 18, 10, 0.12);
}

.hp-room-items .hp-room-item .hp-room-media {
  position: relative;
  min-height: 300px;
  background-color: #eadfd3;
  overflow: hidden;
}

.hp-room-items .hp-room-item .hp-room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0) 45%
  );
  pointer-events: none;
}

.hp-room-items .hp-room-item .hp-room-price {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 14px 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(27, 16, 12, 0.08);
}

.hp-room-items .hp-room-item .hp-room-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 20px;
  background: #ffffff;
}

.hp-room-items .hp-room-item .hp-room-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  flex-wrap: wrap;
}

.hp-room-items .hp-room-item .hp-room-actions .primary-btn {
  color: #3f55b1;
  font-size: 20px;
}

.hp-room-items .hp-room-item .hp-room-actions .primary-btn:after {
  background: #3f55b1;
}

.hp-room-items .hp-room-item .hp-room-reserve {
  padding: 14px 24px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.hp-room-items .hp-room-item .hp-room-content h3 {
  color: #7b241c;
  font-size: 34px;
  line-height: 1.2;
}

.hp-room-items .hp-room-item .hp-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 16px;
  color: #6f5f55;
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.hp-room-items .hp-room-item .hp-room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hp-room-items .hp-room-item .hp-room-meta i {
  color: var(--brand-color);
  font-size: 15px;
}

.hp-room-items .hp-room-item .hp-room-content p {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #5c514a;
}

.rooms-cta-section {
  text-align: center;
  margin: 40px 0;
}

/*---------------------
  Testimonial Slider
-----------------------*/

.testimonial-section {
  background: var(--background-accent);
}

.testimonial-section .section-title {
  margin-bottom: 30px;
}

.testimonial-slider.owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}

.testimonial-slider.owl-carousel .owl-nav button {
  height: 44px;
  width: 44px;
  border: 1px solid #ebebeb;
  font-size: 24px;
  color: #707079;
  background: #ffffff;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  left: -190px;
  top: 50%;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.testimonial-slider.owl-carousel .owl-nav button:hover {
  border-color: #19191a;
  color: #19191a;
}

.testimonial-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: -190px;
}

.testimonial-slider .ts-item {
  text-align: center;
}

.testimonial-slider .ts-item p {
  font-size: 20px;
  color: #707079;
  line-height: 30px;
  margin-bottom: 50px;
}

.testimonial-slider .ts-item .ti-author {
  margin-bottom: 60px;
}

.testimonial-slider .ts-item .ti-author .rating {
  display: inline-block;
}

.testimonial-slider .ts-item .ti-author .rating i {
  color: #f5b917;
  font-size: 16px;
}

.testimonial-slider .ts-item .ti-author h5 {
  font-size: 20px;
  color: #19191a;
  display: inline-block;
}

.testimonial-slider .ts-item .ti-author .testimonial-author {
  font-size: 20px;
  color: #19191a;
  display: inline-block;
  margin-bottom: 0;
}

/*---------------------
  Blog and Event
-----------------------*/

.blog-section {
  padding-bottom: 70px;
}

.blog-section .section-title {
  margin-bottom: 36px;
}

/*---------------------
  Footer Section
-----------------------*/

.footer-section {
  background: #222736;
}

.footer-section .footer-text {
  padding: 70px 0 60px;
}

.footer-section .footer-text .ft-about {
  margin-bottom: 30px;
}

.footer-section .footer-text .ft-about .logo {
  margin-bottom: 20px;
}

.footer-section .footer-text .ft-about .logo a {
  display: inline-block;
}

.footer-section .footer-text .ft-about p {
  color: #aaaab3;
  margin-bottom: 20px;
}

.footer-section .footer-text .ft-about .fa-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid #5a4d48;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 7px;
}

.footer-section .footer-text .ft-about .fa-social a .booking-social-icon {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}

.footer-section .footer-text .ft-about .fa-social a:hover {
  background: var(--brand-color);
  border-color: var(--brand-color-light);
}

.footer-section .footer-text .ft-contact {
  margin-bottom: 30px;
}

.footer-section .footer-text .ft-contact h6 {
  font-size: 14px;
  color: var(--brand-color-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "Cabin", sans-serif;
  margin-bottom: 20px;
}

.footer-section .footer-text .ft-contact ul li {
  font-size: 16px;
  color: #aaaab3;
  line-height: 1.6;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.footer-section .footer-text .ft-contact ul li:last-child {
  margin-bottom: 0;
}

.footer-section .footer-text .ft-contact ul li > span:first-child {
  width: 18px;
  min-width: 18px;
  text-align: center;
  line-height: 1.6;
}

.footer-section .footer-text .ft-contact ul li > span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-section .footer-text .ft-newslatter h6 {
  font-size: 14px;
  color: var(--brand-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  font-family: "Cabin", sans-serif;
  margin-bottom: 20px;
}

.footer-section .footer-text .ft-newslatter p {
  color: #aaaab3;
  margin-bottom: 20px;
}

.footer-section .footer-text .ft-newslatter .fn-form {
  position: relative;
}

.footer-section .footer-text .ft-newslatter .fn-form input {
  width: 100%;
  height: 50px;
  border-radius: 2px;
  background: #393d4a;
  border: none;
  padding-left: 20px;
  font-size: 16px;
  color: #707079;
}

.footer-section .footer-text .ft-newslatter .fn-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  background: var(--brand-color);
  color: #ffffff;
  padding: 0 16px;
  height: 50px;
  border: none;
  border-radius: 0 2px 2px 0;
}

.footer-section .copyright-option {
  background: rgba(16, 20, 31, 0.2);
  padding: 20px 0;
}

.footer-section .copyright-option ul li {
  list-style: none;
  display: inline-block;
  margin-right: 34px;
}

.footer-section .copyright-option ul li:last-child {
  margin-right: 0;
}

.footer-section .copyright-option ul li a {
  font-size: 16px;
  color: #aaaab3;
}

.footer-section .copyright-option .co-text {
  font-size: 16px;
  color: #707079;
  text-align: right;
}

/* --------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb Section
-----------------------*/

.breadcrumb-section {
  padding-top: 70px;
  padding-bottom: 80px;
}

.breadcrumb-text {
  text-align: center;
}

.breadcrumb-text h2 {
  font-size: 44px;
  color: #19191a;
  margin-bottom: 12px;
}

.breadcrumb-text .bt-option a {
  display: inline-block;
  font-size: 18px;
  color: #19191a;
  margin-right: 20px;
  position: relative;
  font-weight: 500;
}

.breadcrumb-text .bt-option a:after {
  position: absolute;
  right: -13px;
  top: 1px;
  content: "";
  font-size: 18px;
  font-family: "FontAwesome";
  color: #aaaab3;
}

.breadcrumb-text .bt-option span {
  display: inline-block;
  font-size: 18px;
  color: #aaaab3;
}

/*------------------------
  About Us Page Section
-------------------------*/

.aboutus-page-section {
  padding-top: 0;
  padding-bottom: 70px;
}

.about-page-text {
  margin-bottom: 65px;
}

.about-page-text .ap-title {
  margin-bottom: 30px;
}

.about-page-text .ap-title h2 {
  font-size: 44px;
  color: #19191a;
  margin-bottom: 18px;
}

.about-page-text .ap-title p {
  font-size: 18px;
  color: #707079;
  line-height: 28px;
}

.about-page-text .ap-services li {
  list-style: none;
  font-size: 20px;
  color: #707079;
  line-height: 42px;
}

.about-page-text .ap-services li i {
  color: var(--brand-color);
  margin-right: 5px;
}

.about-page-services .ap-service-item {
  position: relative;
  height: 420px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.about-page-services .ap-service-item .api-text {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  text-align: center;
}

.about-page-services .ap-service-item .api-text h3 {
  color: #ffffff;
}

/*---------------------
  Video Section
-----------------------*/

.video-section {
  height: 500px;
  padding-top: 140px;
}

.video-section .video-text {
  text-align: center;
}

.video-section .video-text h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 16px;
}

.video-section .video-text p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
}

.video-section .video-text .play-btn {
  display: inline-block;
}

/*---------------------
  Gallery Section
-----------------------*/

.gallery-section {
  padding-bottom: 80px;
}

.gallery-section .section-title {
  margin-bottom: 38px;
}

.gallery-item {
  position: relative;
  height: 279px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.gallery-item:hover:after {
  opacity: 1;
}

.gallery-item:hover .gi-text {
  opacity: 1;
}

.gallery-item:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 26, 0.3);
  content: "";
  z-index: -1;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.gallery-item.large-item {
  height: 576px;
}

.gallery-item .gi-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.gallery-item .gi-text h3 {
  color: #ffffff;
}

/*---------------------
  Room Section
-----------------------*/

.rooms-section {
  padding-bottom: 30px;
}

.rooms-section .container-fluid {
  @media screen {
  }
}

.room-item {
  margin-bottom: 30px;
}

.room-item img {
  min-width: 100%;
}

.room-item .ri-text {
  border: 1px solid #ebebeb;
  border-top: none;
  padding: 24px 24px 30px 28px;
}

.room-item .ri-text h4 {
  color: #19191a;
  margin-bottom: 17px;
}

.room-item .ri-text h3 {
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 14px;
}

.room-item .ri-text h3 span {
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #19191a;
}

.room-item .ri-text table {
  margin-bottom: 18px;
}

.room-item .ri-text table tbody tr td {
  font-size: 16px;
  color: #707079;
  line-height: 36px;
}

.room-item .ri-text table tbody tr td.r-o {
  width: 125px;
}

.room-item .ri-text .primary-btn {
  color: #19191a;
}

.room-showcase-list {
  margin-top: 28px;
}

.room-showcase-item {
  margin-bottom: 0px;
  background: #f4f4f4;
  overflow: hidden;
}

.room-showcase-item:last-child {
  margin-bottom: 0;
}

.room-showcase-item .row {
  min-height: 420px;
}

.room-showcase-item .room-showcase-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #d5d5d5;
}

.room-showcase-item .room-showcase-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  -o-transition: transform 0.45s ease;
  transition: transform 0.45s ease;
  transition:
    transform 0.45s ease,
    -webkit-transform 0.45s ease;
}

.room-showcase-item:hover .room-showcase-media img,
.room-showcase-item:focus-within .room-showcase-media img {
  -webkit-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.room-showcase-item .ri-text.room-showcase-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background: var(--background-accent);
  padding: 60px 50px;
  text-align: center;
}

.room-showcase-title {
  font-size: 40px;
  line-height: 1.06;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-color);
  margin-bottom: 10px;
}

.room-showcase-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}

.room-showcase-label {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: #5e5e5e;
  margin-bottom: 7px;
}

.room-showcase-amount {
  font-family: "Lora", serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  /* color: #3f55b1; */
  color: var(--brand-color);
  /* text-shadow: 1px 2px 2px var(--brand-color); */
  transition: all 0.2s;
}

.room-showcase-currency {
  font-size: 22px;
  line-height: 1;
  font-family: "Lora", serif;
  color: #5e5e5e;
  margin-bottom: 6px;
}

.room-showcase-desc {
  max-width: 530px;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 1.65;
  color: #565656;
}

.room-showcase-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.room-showcase-actions .primary-btn {
  color: #3f55b1;
  font-size: 20px;
}

.room-showcase-actions .primary-btn:after {
  background: #3f55b1;
}

.room-showcase-book {
  padding: 14px 34px;
  border-radius: 2px;
  font-size: 20px;
  line-height: 1;
  background: var(--brand-color-light);
  letter-spacing: 1px;
  border: 1px solid var(--brand-color-light);
}

.room-showcase-book:hover,
.room-showcase-book:focus {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #ffffff;
}

.room-showcase-actions .room-modal-trigger {
  cursor: pointer;
}

body.room-modal-open {
  overflow: hidden;
}

html.fb-widget-modal-open,
body.fb-widget-modal-open {
  overflow: hidden;
  height: 100%;
}

.room-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.room-detail-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.room-detail-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 19, 0.72);
}

.room-detail-modal__dialog {
  position: relative;
  margin: auto;
  max-width: 1240px;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  background: #f6f6f6;
  border-radius: 12px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.room-detail-modal.is-open .room-detail-modal__dialog {
  transform: translateY(0);
  box-shadow: 0 20px 65px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(18, 18, 18, 0.1);
}

.room-detail-modal__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  max-height: calc(100vh - 40px);
}

.room-detail-modal__gallery {
  padding: 18px;
  background: #f0f0f0;
  border-right: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.room-detail-modal__main-image {
  width: 100%;
  height: 430px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
  background: #dfdfdf;
}

.room-detail-modal__thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.room-detail-modal__thumb {
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  border-radius: 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  cursor: pointer;
  line-height: 0;
}

.room-detail-modal__thumb img {
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.room-detail-modal__thumb.is-active {
  border-color: #3f55b1;
}

.room-detail-modal__content {
  padding: 28px 34px 24px 24px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}

.room-detail-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.room-detail-modal__header .bk-btn {
  padding: 10px 20px;
  font-size: 13px;
  margin: 0;
}

.room-detail-modal__header h3 {
  margin-bottom: 0;
  margin-right: 20px;
}

.room-detail-modal__content h3 {
  font-size: 34px;
  line-height: 1.2;
  color: #111111;
}

.room-detail-modal__chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.room-detail-modal__chips span {
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  color: #2f2f2f;
  background: #ffffff;
}

.room-detail-modal__meta {
  font-size: 20px;
  line-height: 1.35;
  margin-bottom: 8px;
  color: #222222;
}

.room-detail-modal__description {
  font-size: 19px;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 14px 0 18px;
}

.room-detail-modal__section {
  margin-bottom: 16px;
}

.room-detail-modal__section h4 {
  font-size: 25px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.room-detail-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.room-detail-modal__list.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 5px;
}

.room-detail-modal__list li {
  font-size: 17px;
  line-height: 1.35;
  color: #2f2f2f;
  padding-left: 18px;
  position: relative;
}

.room-detail-modal__list li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
}

.room-detail-modal__close {
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 2;
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 38px;
  line-height: 1;
  padding: 0;
  color: #666666;
  cursor: pointer;
}

.room-detail-modal__close i {
  display: block;
  line-height: 1;
  font-size: 1em;
}

.room-detail-modal__close:hover,
.room-detail-modal__close:focus {
  color: #1d1d1d;
  outline: none;
}

.room-pagination {
  text-align: center;
  padding-top: 20px;
}

.room-pagination a {
  font-size: 16px;
  color: #707079;
  border: 1px solid #efd4b9;
  border-radius: 2px;
  padding: 7px 13px 5px;
  margin-right: 7px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.room-pagination a:last-child {
  margin-right: 0;
}

.room-pagination a:hover {
  background: var(--brand-color);
  color: #ffffff;
}

/*-----------------------
  Room Details Section
-------------------------*/

.room-details-section {
  padding-top: 0;
  padding-bottom: 80px;
}

.room-details-item {
  margin-bottom: 50px;
}

.room-details-item img {
  margin-bottom: 40px;
}

.room-details-item .rd-text .rd-title {
  overflow: hidden;
  margin-bottom: 8px;
}

.room-details-item .rd-text .rd-title h3 {
  color: #19191a;
  float: left;
}

.room-details-item .rd-text .rd-title .rdt-right {
  float: right;
  text-align: right;
}

.room-details-item .rd-text .rd-title .rdt-right .rating {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 10px;
}

.room-details-item .rd-text .rd-title .rdt-right .rating i {
  color: #f5b917;
}

.room-details-item .rd-text .rd-title .rdt-right a {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--brand-color);
  padding: 14px 28px 13px;
}

.room-details-item .rd-text h2 {
  color: var(--brand-color);
  font-weight: 700;
  margin-bottom: 25px;
}

.room-details-item .rd-text h2 span {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #19191a;
}

.room-details-item .rd-text table {
  margin-bottom: 32px;
}

.room-details-item .rd-text table tbody tr td {
  font-size: 16px;
  color: #19191a;
  line-height: 36px;
}

.room-details-item .rd-text table tbody tr td.r-o {
  width: 120px;
  color: #707079;
}

.room-details-item .rd-text p {
  color: #707079;
}

.room-details-item .rd-text p.f-para {
  margin-bottom: 22px;
}

.rd-reviews {
  padding-top: 55px;
  border-top: 1px solid #e5e5e5;
  margin-bottom: 50px;
}

.rd-reviews h4 {
  color: #19191a;
  letter-spacing: 1px;
  margin-bottom: 45px;
}

.rd-reviews .review-item {
  margin-bottom: 32px;
}

.rd-reviews .review-item .ri-pic {
  float: left;
  margin-right: 30px;
}

.rd-reviews .review-item .ri-pic img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.rd-reviews .review-item .ri-text {
  overflow: hidden;
  position: relative;
  padding-left: 30px;
}

.rd-reviews .review-item .ri-text:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e9e9e9;
  content: "";
}

.rd-reviews .review-item .ri-text span {
  font-size: 12px;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.rd-reviews .review-item .ri-text .rating {
  position: absolute;
  right: 0;
  top: 0;
}

.rd-reviews .review-item .ri-text .rating i {
  color: #f5b917;
}

.rd-reviews .review-item .ri-text h5 {
  color: #19191a;
  margin-top: 4px;
  margin-bottom: 8px;
}

.rd-reviews .review-item .ri-text p {
  color: #707079;
  margin-bottom: 0;
}

.review-add h4 {
  color: #19191a;
  letter-spacing: 1px;
  margin-bottom: 45px;
}

.review-add .ra-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #aaaab3;
  padding-left: 20px;
  margin-bottom: 25px;
}

.review-add .ra-form input::-webkit-input-placeholder {
  color: #aaaab3;
}

.review-add .ra-form input::-moz-placeholder {
  color: #aaaab3;
}

.review-add .ra-form input:-ms-input-placeholder {
  color: #aaaab3;
}

.review-add .ra-form input::-ms-input-placeholder {
  color: #aaaab3;
}

.review-add .ra-form input::placeholder {
  color: #aaaab3;
}

.review-add .ra-form h5 {
  font-size: 20px;
  color: #19191a;
  margin-bottom: 24px;
  float: left;
  margin-right: 10px;
}

.review-add .ra-form .rating {
  padding-top: 3px;
  display: inline-block;
}

.review-add .ra-form .rating i {
  color: #f5b917;
  font-size: 16px;
}

.review-add .ra-form textarea {
  width: 100%;
  height: 132px;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  color: #aaaab3;
  padding-left: 20px;
  padding-top: 12px;
  margin-bottom: 24px;
  resize: none;
}

.review-add .ra-form textarea::-webkit-input-placeholder {
  color: #aaaab3;
}

.review-add .ra-form textarea::-moz-placeholder {
  color: #aaaab3;
}

.review-add .ra-form textarea:-ms-input-placeholder {
  color: #aaaab3;
}

.review-add .ra-form textarea::-ms-input-placeholder {
  color: #aaaab3;
}

.review-add .ra-form textarea::placeholder {
  color: #aaaab3;
}

.review-add .ra-form button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  background: var(--brand-color);
  border: none;
  padding: 14px 34px 13px;
  display: inline-block;
}

/*---------------------
  Blog Section
-----------------------*/

.blog-section.blog-page {
  padding-top: 0;
  padding-bottom: 88px;
}

.blog-item {
  height: 450px;
  position: relative;
  margin-bottom: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 18, 10, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.blog-item.small-size {
  height: 400px;
}

.blog-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(31, 18, 10, 0.12);
}

.blog-item-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
  z-index: 2;
}

.blog-item-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -6px;
}

.blog-item .bi-text {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.blog-item .bi-text .b-tag {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--brand-color);
  padding: 3px 10px;
  border-radius: 2px;
}

.blog-item .bi-text h4 {
  margin-top: 18px;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(25, 25, 26, 0.5);
}

.blog-item .bi-text .b-time {
  font-size: 12px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.load-more {
  text-align: center;
  padding-top: 30px;
}

.load-more .primary-btn {
  color: #19191a;
}

/*----------------------------
  Blog Details Hero Section
----------------------------*/

.blog-details-hero {
  height: 530px;
  padding-top: 165px;
}

.bd-hero-text {
  text-align: center;
}

.bd-hero-text span {
  font-size: 12px;
  color: #ffffff;
  background: var(--brand-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 2px;
}

.bd-hero-text h2 {
  font-size: 44px;
  color: #ffffff;
  line-height: 54px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.bd-hero-text ul li {
  list-style: none;
  font-size: 14px;
  color: var(--brand-color);
  margin-right: 35px;
  display: inline-block;
}

.bd-hero-text ul li:last-child {
  margin-right: 0;
}

.bd-hero-text ul li.b-time {
  text-transform: uppercase;
}

/*---------------------
  Blog Details Section
-----------------------*/

.blog-details-section {
  padding-top: 55px;
}

.blog-details-text .bd-title {
  margin-bottom: 52px;
}

.blog-details-text .bd-title p {
  font-size: 18px;
  color: #707079;
  line-height: 30px;
}

.blog-details-text .bd-pic {
  overflow: hidden;
  margin-bottom: 35px;
}

.blog-details-text .bd-pic .bp-item {
  width: calc(33.33% - 10px);
  float: left;
  margin-right: 15px;
}

.blog-details-text .bd-pic .bp-item:last-child {
  margin-right: 0;
}

.blog-details-text .bd-pic .bp-item img {
  min-width: 100%;
}

.blog-details-text .bd-more-text {
  margin-bottom: 50px;
}

.blog-details-text .bd-more-text .bm-item {
  margin-bottom: 30px;
}

.blog-details-text .bd-more-text .bm-item h4 {
  color: #19191a;
  margin-bottom: 20px;
}

.blog-details-text .bd-more-text .bm-item p {
  font-size: 18px;
  color: #707079;
  line-height: 30px;
}

.blog-details-text .tag-share {
  overflow: hidden;
  border-top: 1px solid #ebebeb;
  padding-top: 30px;
  margin-bottom: 75px;
}

.blog-details-text .tag-share .tags {
  float: left;
}

.blog-details-text .tag-share .tags a {
  font-size: 12px;
  color: #707079;
  background: #ebebeb;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 6px;
}

.blog-details-text .tag-share .tags a:hover {
  color: #ffffff;
  background: var(--brand-color);
}

.blog-details-text .tag-share .social-share {
  float: right;
}

.blog-details-text .tag-share .social-share span {
  display: inline-block;
  font-size: 18px;
  color: #707079;
}

.blog-details-text .tag-share .social-share a {
  display: inline-block;
  font-size: 16px;
  color: #707079;
  margin-left: 30px;
}

.blog-details-text .comment-option {
  margin-bottom: 75px;
}

.blog-details-text .comment-option h4 {
  color: #19191a;
  margin-bottom: 35px;
}

.blog-details-text .comment-option .single-comment-item {
  margin-bottom: 30px;
}

.blog-details-text .comment-option .single-comment-item.first-comment .sc-text {
  padding-left: 22px;
}

.blog-details-text
  .comment-option
  .single-comment-item.first-comment
  .sc-text:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 255px;
  background: #ebebeb;
  content: "";
}

.blog-details-text .comment-option .single-comment-item.reply-comment {
  padding-left: 120px;
  margin-bottom: 52px;
}

.blog-details-text
  .comment-option
  .single-comment-item.second-comment
  .sc-text {
  padding-left: 22px;
}

.blog-details-text
  .comment-option
  .single-comment-item.second-comment
  .sc-text:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100px;
  background: #ebebeb;
  content: "";
}

.blog-details-text .comment-option .single-comment-item .sc-author {
  float: left;
  margin-right: 28px;
}

.blog-details-text .comment-option .single-comment-item .sc-author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}

.blog-details-text .comment-option .single-comment-item .sc-text {
  display: table;
  position: relative;
}

.blog-details-text .comment-option .single-comment-item .sc-text span {
  font-size: 12px;
  color: var(--brand-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-details-text .comment-option .single-comment-item .sc-text h5 {
  font-size: 20px;
  color: #19191a;
  margin-top: 4px;
  margin-bottom: 8px;
}

.blog-details-text .comment-option .single-comment-item .sc-text p {
  color: #707079;
  margin-bottom: 18px;
}

.blog-details-text .comment-option .single-comment-item .sc-text a {
  display: inline-block;
  color: #19191a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 24px;
  border: 1px solid #f9eee3;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 10px;
}

.blog-details-text .comment-option .single-comment-item .sc-text a:hover {
  background: var(--brand-color);
  color: #ffffff;
  border-color: var(--brand-color);
}

.blog-details-text .leave-comment h4 {
  color: #19191a;
  margin-bottom: 35px;
}

.blog-details-text .leave-comment .comment-form input {
  width: 100%;
  height: 50px;
  color: #707079;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-details-text .leave-comment .comment-form input:focus {
  border-color: var(--brand-color);
}

.blog-details-text .leave-comment .comment-form textarea {
  width: 100%;
  height: 116px;
  color: #707079;
  font-size: 16px;
  padding-left: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 42px;
  resize: none;
  padding-top: 12px;
}

.blog-details-text .leave-comment .comment-form textarea:focus {
  border-color: var(--brand-color);
}

.blog-details-text .leave-comment .comment-form button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  background: var(--brand-color);
  border: none;
  padding: 14px 42px 13px;
  display: inline-block;
  border-radius: 2px;
}

/*---------------------
  Recommend Blog
-----------------------*/

.recommend-blog-section {
  padding-top: 65px;
  padding-bottom: 50px;
}

.recommend-blog-section .section-title {
  margin-bottom: 37px;
}

.recommend-blog-section .section-title h2 {
  margin-top: 0;
}

/*---------------------
  Contact Section
-----------------------*/

.contact-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-text h2 {
  font-size: 44px;
  color: #19191a;
  margin-bottom: 24px;
}

.contact-text p {
  color: #707079;
}

.contact-text table tbody tr td {
  font-size: 16px;
  color: #19191a;
  line-height: 36px;
  font-weight: 500;
}

.contact-text table tbody tr td.c-o {
  color: #707079;
  width: 75px;
}

.contact-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  color: #aaaab3;
  padding-left: 25px;
  margin-bottom: 28px;
}

.contact-form input::-webkit-input-placeholder {
  color: #aaaab3;
}

.contact-form input::-moz-placeholder {
  color: #aaaab3;
}

.contact-form input:-ms-input-placeholder {
  color: #aaaab3;
}

.contact-form input::-ms-input-placeholder {
  color: #aaaab3;
}

.contact-form input::placeholder {
  color: #aaaab3;
}

.contact-form textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #e1e1e1;
  font-size: 16px;
  color: #aaaab3;
  padding-left: 25px;
  padding-top: 12px;
  margin-bottom: 33px;
  resize: none;
}

.contact-form textarea::-webkit-input-placeholder {
  color: #aaaab3;
}

.contact-form textarea::-moz-placeholder {
  color: #aaaab3;
}

.contact-form textarea:-ms-input-placeholder {
  color: #aaaab3;
}

.contact-form textarea::-ms-input-placeholder {
  color: #aaaab3;
}

.contact-form textarea::placeholder {
  color: #aaaab3;
}

.contact-form button {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 2px;
  background: var(--brand-color);
  border: none;
  padding: 14px 34px 13px;
  display: inline-block;
}

.map {
  height: 470px;
  -webkit-box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.15);
  margin-top: 25px;
}

.map iframe {
  width: 100%;
}

/*---------------------
  About Section
-----------------------*/
.about-section p {
  font-size: 18px;
}

.about-subtitle {
  color: var(--brand-color);
}

.about-text h2 {
  color: #111111;
  font-size: 44px;
  margin-bottom: 24px;
}

.about-list {
  /* border: 1px solid #ebebeb; */
  list-style: none;
}

.about-list hr {
  color: #ebebeb;
  height: 1px;
}

.about-list li:first-child {
  padding-top: 0;
}

.about-list li:last-child {
  padding-bottom: 0;
}

.about-list h5 i {
  width: 24px;
  text-align: center;
  color: var(--brand-color);
}

/*-------------------------------- Responsive Media Styles --------------------------------*/

@media only screen and (min-width: 1554px) and (max-width: 1920px) {
  .hp-room-items .hp-room-item .hr-text {
    bottom: -200px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1250px) {
  .hp-room-items .hp-room-item .hr-text {
    bottom: -288px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }

  .room-showcase-section .container-fluid {
    max-width: 1600px;
  }
}

/* Medium Device: 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider.owl-carousel .owl-nav button {
    left: -150px;
  }

  .testimonial-slider.owl-carousel .owl-nav button.owl-next {
    right: -150px;
  }

  .hp-room-items .hp-room-item .hr-text {
    bottom: -322px;
  }

  .hp-room-items .hp-room-item:hover .hr-text {
    bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    background: #ffffff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header-section .menu-item,
  .header-section .container,
  .header-section .row {
    position: relative;
  }

  .header-section .logo {
    text-align: center;
    padding: 12px 0;
  }

  .header-section .logo a img {
    max-height: 52px;
    width: auto;
  }

  .header-section .menu-item .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    right: 15px;
    top: -34px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1001;
  }

  .header-section .menu-item .nav-menu .mainmenu {
    display: none;
  }

  .header-section .menu-item .nav-menu .bk-btn {
    display: inline-block;
    margin-right: 10px;
    padding: 18px 12px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
  }

  .header-section .menu-item .nav-menu .language-option {
    display: inline-block;
    margin-left: 0;
    padding: 0;
  }

  .header-section .menu-item .nav-menu .language-option .current-lang {
    font-size: 14px;
  }

  .header-section .menu-item .nav-menu .language-option .flag-dropdown {
    left: auto;
    right: 0;
  }

  body {
    padding-top: 80px;
  }

  .top-nav {
    display: none;
  }

  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98;
    height: 100%;
    width: 100%;
    visibility: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .offcanvas-menu-overlay.active {
    visibility: visible;
  }

  .canvas-open {
    position: fixed;
    left: 15px;
    top: 21px;
    font-size: 22px;
    width: 30px;
    height: 30px;
    color: #19191a;
    border: 1px solid #19191a;
    border-radius: 2px;
    line-height: 33px;
    text-align: center;
    z-index: 1000;
    display: block;
    cursor: pointer;
    background: #ffffff;
  }

  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    z-index: 999;
    background: #ffffff;
    text-align: center;
    overflow-y: auto;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 80px 30px 30px 30px;
    display: block;
  }

  .offcanvas-menu-wrapper .canvas-close {
    height: 30px;
    width: 30px;
    border: 1px solid #19191a;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 30px;
    padding-right: 1px;
  }

  .offcanvas-menu-wrapper .search-icon {
    color: #19191a;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .offcanvas-menu-wrapper .header-configure-area {
    margin-bottom: 30px;
  }

  .offcanvas-menu-wrapper .header-configure-area .language-option {
    display: inline-block;
    cursor: pointer;
    padding: 13px 0;
    position: relative;
    margin-bottom: 10px;
  }

  .offcanvas-menu-wrapper
    .header-configure-area
    .language-option:hover
    .flag-dropdown {
    top: 40px;
    opacity: 1;
    visibility: visible;
  }

  .offcanvas-menu-wrapper .header-configure-area .language-option img {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    margin-right: 10px;
  }

  .offcanvas-menu-wrapper .header-configure-area .language-option span {
    font-size: 16px;
    color: #19191a;
    text-transform: uppercase;
    font-weight: 500;
  }

  .offcanvas-menu-wrapper
    .header-configure-area
    .language-option
    .flag-dropdown {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100px;
    background: #ffffff;
    display: block;
    padding: 10px 15px;
    -webkit-box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
    box-shadow: 0px 9px 10px rgba(25, 25, 26, 0.2);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 99;
  }

  .offcanvas-menu-wrapper
    .header-configure-area
    .language-option
    .flag-dropdown
    ul
    li {
    list-style: none;
    text-align: left;
  }

  .offcanvas-menu-wrapper
    .header-configure-area
    .language-option
    .flag-dropdown
    ul
    li
    a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #19191a;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .offcanvas-menu-wrapper
    .header-configure-area
    .language-option
    .flag-dropdown
    ul
    li
    a:hover {
    color: var(--brand-color);
  }

  .offcanvas-menu-wrapper .header-configure-area .bk-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 16px 28px 15px;
    background: var(--brand-color);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .offcanvas-menu-wrapper .mainmenu {
    display: none;
  }

  .offcanvas-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_btn {
    float: none;
    margin: 0 0 10px 0;
    display: none;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav {
    display: block !important;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul {
    margin: 0;
    text-align: left;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li .dropdown {
    padding-left: 20px;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a {
    margin: 0;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #19191a;
    border-bottom: 1px solid #e5e5e5;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav ul li a:hover {
    border-radius: 0;
    background: transparent;
    color: var(--brand-color);
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row a {
    border-bottom: 0;
    padding-left: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row span {
    color: #19191a;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }

  .offcanvas-menu-wrapper .slicknav_menu .slicknav_nav .slicknav_row:hover a {
    color: var(--brand-color);
  }

  .offcanvas-menu-wrapper
    .slicknav_menu
    .slicknav_nav
    .slicknav_row:hover
    span {
    color: var(--brand-color);
  }

  .offcanvas-menu-wrapper .top-social {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .offcanvas-menu-wrapper .top-social a {
    display: inline-block;
    font-size: 16px;
    color: #19191a;
    margin-right: 20px;
  }

  .offcanvas-menu-wrapper .top-social a:last-child {
    margin-right: 0;
  }

  .offcanvas-menu-wrapper .top-widget li {
    list-style: none;
    font-size: 16px;
    color: #19191a;
    font-weight: 500;
    line-height: 28px;
  }

  .offcanvas-menu-wrapper .top-widget li i {
    color: var(--brand-color);
    margin-right: 4px;
  }

  .offcanvas-menu-wrapper.show-offcanvas-menu-wrapper {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .about-text {
    margin-bottom: 30px;
  }

  .footer-section .copyright-option ul {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer-section .copyright-option .co-text {
    text-align: center;
  }

  .about-pic img {
    margin-bottom: 20px;
  }

  .about-carousel .carousel-item img {
    /* height: 260px; */
    margin-bottom: 0;
  }

  .room-booking {
    padding: 0;
    margin-top: 40px;
  }

  .contact-form {
    padding-top: 30px;
  }

  .hero-text {
    margin-bottom: 40px;
    padding-top: 0px;
  }
}

/* Tablet Device: 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider.owl-carousel .owl-nav button {
    left: -30px;
  }

  .testimonial-slider.owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }

  .hp-room-items {
    margin: 0;
  }

  .hp-room-item {
    margin-bottom: 15px;
  }

  .hero-text {
    margin-bottom: 40px;
    padding-top: 0px;
  }
}

/* Large Mobile: 480px */

@media only screen and (max-width: 767px) {
  .testimonial-slider.owl-carousel .owl-nav {
    display: none;
  }

  .room-showcase-item .row {
    min-height: 0;
  }

  .room-showcase-item .room-showcase-media {
    max-height: 375px;
    min-height: 285px;
  }

  .room-showcase-item .ri-text.room-showcase-content {
    padding: 38px 24px;
  }

  .room-showcase-title {
    font-size: 38px;
    letter-spacing: 1px;
  }

  .room-showcase-label {
    font-size: 13px;
  }

  .room-showcase-amount {
    font-size: 41px;
  }

  .room-showcase-currency {
    font-size: 20px;
  }

  .room-showcase-desc {
    font-size: 20px;
    line-height: 1.6;
  }

  .room-showcase-actions {
    gap: 16px;
  }

  .room-showcase-actions .primary-btn,
  .room-showcase-book {
    font-size: 17px;
  }

  .room-detail-modal {
    padding: 10px;
  }

  .room-detail-modal__dialog {
    max-height: none;
    overflow: visible;
  }

  .room-detail-modal__close {
    position: sticky;
    top: 8px;
    right: 8px;
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(246, 246, 246, 0.95);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    z-index: 3;
  }

  .room-detail-modal__layout {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .room-detail-modal__gallery {
    border-right: 0;
    border-bottom: 1px solid #dddddd;
    padding: 14px;
  }

  .room-detail-modal__main-image {
    height: 275px;
  }

  .room-detail-modal__thumb img {
    width: 60px;
    height: 60px;
  }

  .room-detail-modal__content {
    max-height: none;
    overflow: visible;
    padding: 20px 14px 16px;
  }

  .room-detail-modal__content h3 {
    font-size: 28px;
    padding-right: 28px;
  }

  .room-detail-modal__meta,
  .room-detail-modal__description {
    font-size: 17px;
  }

  .room-detail-modal__section h4 {
    font-size: 22px;
  }

  .room-detail-modal__list li {
    font-size: 15px;
  }

  .room-detail-modal__list.two-columns {
    grid-template-columns: 1fr;
  }

  .room-details-item .rd-text .rd-title {
    margin-bottom: 25px;
  }

  .room-details-item .rd-text .rd-title h3 {
    float: none;
    margin-bottom: 30px;
  }

  .room-details-item .rd-text .rd-title .rdt-right {
    float: none;
    text-align: left;
  }

  .footer-section .copyright-option ul li {
    margin-right: 25px;
  }

  .blog-details-text .tag-share .tags {
    float: none;
    margin-bottom: 20px;
  }

  .blog-details-text .tag-share .social-share {
    float: none;
  }

  .about-text .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .hp-room-items {
    margin: 0 -5px;
  }

  .hp-room-item {
    margin-bottom: 10px;
  }

  .hero-text {
    margin-bottom: 40px;
    padding-top: 0px;
  }
}

/* Small Mobile: 320px */

@media only screen and (max-width: 479px) {
  .room-showcase-item .room-showcase-media {
    max-height: 315px;
    min-height: 240px;
  }

  .room-showcase-title {
    font-size: 31px;
  }

  .room-showcase-desc {
    font-size: 18px;
    line-height: 1.55;
  }

  .room-showcase-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
  }

  .room-showcase-book {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }

  .footer-section .copyright-option ul li {
    margin-bottom: 5px;
  }

  .video-section {
    padding-top: 80px;
  }

  .rd-reviews .review-item .ri-pic,
  .blog-details-text .comment-option .single-comment-item .sc-author {
    float: none;
    margin-bottom: 30px;
  }

  .rd-reviews .review-item .ri-text .rating {
    position: relative;
  }

  .rd-reviews .review-item .ri-text,
  .blog-details-text
    .comment-option
    .single-comment-item.second-comment
    .sc-text,
  .blog-details-text
    .comment-option
    .single-comment-item.first-comment
    .sc-text {
    padding-left: 0;
  }

  .blog-details-text .comment-option .single-comment-item.reply-comment {
    padding-left: 30px;
  }

  .rd-reviews .review-item .ri-text:before,
  .blog-details-text
    .comment-option
    .single-comment-item.first-comment
    .sc-text:before,
  .blog-details-text
    .comment-option
    .single-comment-item.second-comment
    .sc-text:before {
    display: none;
  }

  .blog-details-hero {
    padding-top: 70px;
  }

  .blog-details-text .bd-pic .bp-item {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .blog-details-text .tag-share .tags a {
    margin-bottom: 6px;
  }

  .blog-details-text .comment-option .single-comment-item .sc-text a {
    margin-bottom: 10px;
  }

  .hero-text {
    margin-bottom: 40px;
    padding-top: 0px;
  }
}

/*---------------------
  HP Room cards responsive overrides
-----------------------*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hp-room-items {
    margin: 0;
  }

  .hp-room-items .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .hp-room-items .row > [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
  }

  .hp-room-items .hp-room-item {
    margin-bottom: 12px;
  }

  .hp-room-items .hp-room-item .hp-room-media {
    min-height: 300px;
  }
}

@media only screen and (max-width: 1199px) {
  .hp-room-items .hp-room-item .hp-room-content h3 {
    font-size: 30px;
  }

  .hp-room-items .hp-room-item .hp-room-content p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .hp-room-items {
    margin: 0;
  }

  .hp-room-items .row {
    margin-left: -5px;
    margin-right: -5px;
  }

  .hp-room-items .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
  }

  .hp-room-items .hp-room-item {
    margin-bottom: 10px;
  }

  .hp-room-items .hp-room-item .hp-room-media {
    min-height: 250px;
  }

  .hp-room-items .hp-room-item .hp-room-price {
    top: 14px;
    right: 14px;
    padding: 12px 14px;
    border-radius: 4px;
    letter-spacing: 1.5px;
  }

  .hp-room-items .hp-room-item .hp-room-content {
    padding: 20px 16px 18px;
  }

  .hp-room-items .hp-room-item .hp-room-content h3 {
    font-size: 26px;
  }

  .hp-room-items .hp-room-item .hp-room-meta {
    gap: 12px 18px;
    font-size: 15px;
  }

  .hp-room-items .hp-room-item .hp-room-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hp-room-items .hp-room-item .hp-room-actions {
    gap: 12px;
    padding-top: 18px;
  }

  .hp-room-items .hp-room-item .hp-room-actions .primary-btn {
    font-size: 18px;
  }

  .hp-room-items .hp-room-item .hp-room-reserve {
    padding: 12px 18px 11px;
  }
}

/* -------------------
    Calendar Widget 
   ------------------- */
.fb-widget.top-btn > div {
  display: inline-block;
}
.modal-container {
  height: 700px !important;
  padding: 40px 50px !important;
  border-radius: 5px !important;
}
a.show-modal {
  font-size: 12px;
  font-weight: 700;
  padding: 16px 20px 15px;
  background: var(--brand-color);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.fbw-calendar--action .next .next--button {
  font-size: 12px;
  font-weight: 700;
  padding: 16px 20px 15px !important;
  background: var(--brand-color);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
div:has(> a.next--button) {
  background: none !important;
}
.day_in *,
.day_out * {
  color: var(--brand-color-lighter) !important;
  background: var(--brand-color) !important;
}
.fbw-calendar--in-between {
  background: var(--brand-color-lighter) !important;
}

.closing-cross{
  top: 10px !important;
  right: 10px !important;
}

/* Apply booking field styles on all breakpoints. */
.fbw-calendar--main .config-item {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  justify-self: stretch !important;
  padding: 0;
  border: 0;
}

.fbw-calendar--main .config-item select,
.fbw-calendar--main .config-item input {
  box-sizing: border-box;
  width: 100%;
  display: block;
  height: 50px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  background: #ffffff;
  padding: 0 42px 0 20px;
  font-size: 16px;
  color: #19191a;
  font-weight: 500;
}

.fbw-calendar--main .config-item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}

.fbw-calendar--main .config-item .nice-select {
  border-radius: 2px;
  border: 1px solid #ebebeb;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding-left: 20px;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  display: block;
  float: none;
  margin: 0;
  background: #ffffff;
}

.fbw-calendar--main .config-item .nice-select:after {
  border-bottom: 2px solid var(--brand-color);
  border-right: 2px solid var(--brand-color);
  height: 10px;
  margin-top: 0;
  right: 20px;
  width: 10px;
  top: 36%;
}

.fbw-calendar--main .config-item .nice-select span.current {
  font-size: 16px;
  color: #19191a;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 50px;
}

.fbw-calendar--main .config-item .nice-select .list {
  margin-top: 0;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  body.fb-widget-modal-open .header-section .menu-item .nav-menu {
    transform: none;
  }

  body.fb-widget-modal-open .modal-mask,
  body.fb-widget-modal-open .modal-wrapper,
  body.fb-widget-modal-open .modal-container {
    left: 0 !important;
    right: 0 !important;
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    box-sizing: border-box;
  }

  body.fb-widget-modal-open .modal-container {
    top: 12px !important;
    bottom: 12px !important;
    height: auto !important;
    max-height: calc(100vh - 24px) !important;
    margin: 0 auto !important;
    overflow-y: auto !important;
  }
}

@media (min-width: 1050px) {
  .modal-container {
    max-width: 1200px !important;
    width: min(1200, 99vw) !important;
    height: auto !important;
    max-height: 92vh !important;
    padding: 30px 40px !important;
    overflow-y: auto;
    overflow-x: auto;
  }

  .fbw-calendar--main {
    display: grid !important;
    grid-template-columns: minmax(180px, 200px) minmax(720px, 1fr);
    grid-template-areas:
      "adult right"
      "child right"
      "arrival right"
      "departure right"
      "promo right";
    column-gap: 34px;
    row-gap: 10px;
    align-items: start;
    min-width: 0;
  }

  /* Flatten wrappers so injected fieldsets can be placed directly in the grid. */
  .fbw-calendar--config,
  .fbw-calendar--dates.layout1-version.desktop {
    display: contents;
  }

  .config--adult {
    grid-area: adult;
    margin-right: 0px !important;
  }

  .config--child {
    grid-area: child;
    margin-right: 0px !important;
  }

  .date--arrival {
    grid-area: arrival;
  }

  .date--departure {
    grid-area: departure;
  }

  .config--promo {
    grid-area: promo;
  }

  .fbw-calendar--main .config--adult,
  .fbw-calendar--main .config--child,
  .fbw-calendar--main .config--promo {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  .fbw-calendar--main > .fwb-cal-bottom--group {
    grid-area: right;
    min-width: 0;
    overflow-x: auto;
  }

  .fbw-calendar--main fieldset {
    width: 100%;
    margin: 0;
  }

  .fbw-calendar--main .config-item {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    justify-self: stretch !important;
    padding: 0;
    border: 0;
  }

  .fbw-calendar--main .config-item select,
  .fbw-calendar--main .config-item input {
    box-sizing: border-box;
    width: 100%;
    display: block;
    height: 50px;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    background: #ffffff;
    padding: 0 42px 0 20px;
    font-size: 16px;
    color: #19191a;
    font-weight: 500;
  }

  .fbw-calendar--main .config-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
  }

  .fbw-calendar--main .config-item .nice-select {
    border-radius: 2px;
    border: 1px solid #ebebeb;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding-left: 20px;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    display: block;
    float: none;
    margin: 0;
    background: #ffffff;
  }

  .fbw-calendar--main .config-item .nice-select:after {
    border-bottom: 2px solid var(--brand-color);
    border-right: 2px solid var(--brand-color);
    height: 10px;
    margin-top: 0;
    right: 20px;
    width: 10px;
    top: 36%;
  }

  .fbw-calendar--main .config-item .nice-select span.current {
    font-size: 16px;
    color: #19191a;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 50px;
  }

  .fbw-calendar--main .config-item .nice-select .list {
    margin-top: 0;
    width: 100%;
  }

  .fbw-calendar--main .config--promo,
  .fbw-calendar--main .config--promo input {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    box-sizing: border-box;
  }

  .fbw-calendar--main .config-item label,
  .fbw-calendar--main .fbw-calendar--dates.layout1-version.desktop .fbw-calendar--label {
    font-size: 14px;
    color: #707079;
    display: block;
    margin-bottom: 2px;
    font-weight: 400;
  }

  .fbw-calendar--main .fbw-calendar--dates.layout1-version.desktop fieldset {
    min-height: 50px;
    /* border: none; */
    border-radius: 2px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    background: transparent;
    /* cursor: pointer; */
  }
  .to-fill .arrival--label, .to-fill .departure--label {
    color: var(--brand-color) !important;
    font-weight: 700 !important;
  }

  .fbw-calendar--main .fbw-calendar--dates.layout1-version.desktop .fbw-calendar--label {
    line-height: 1.2;
    margin: 0;
  }

  .fbw-calendar--main .fbw-calendar--dates.layout1-version.desktop .value {
    font-size: 16px;
    line-height: 1.2;
    color: #19191a;
    font-weight: 500;
  }

  .fbw-calendar--main .fwb-cal-bottom--group .fbw-calendar--action {
    justify-content: flex-end;
    margin-top: 10px;
    min-width: 0;
  }

  .fbw-calendar--main .fwb-cal-bottom--group .fbw-calendar--bottom {
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .fbw-calendar--config,
  .fbw-calendar--dates.layout1-version.desktop {
    display: block;
  }
}

@media (max-width: 665px) {
  .fbw-calendar--main .fbw-calendar--config {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 10px !important;
  }

  .fbw-calendar--main .config-item,
  .fbw-calendar--main .config--adult,
  .fbw-calendar--main .config--child,
  .fbw-calendar--main .config--promo {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
  }

  .fbw-calendar--main .config-item label,
  .fbw-calendar--main .fbw-calendar--dates.layout1-version.desktop .fbw-calendar--label {
    font-size: 12px !important;
    margin-bottom: 3px !important;
    letter-spacing: 0.5px;
    line-height: 1.25;
  }

  .fbw-calendar--main .config-item:last-child {
    margin-bottom: 0 !important;
  }

  .fbw-calendar--main .config-item select,
  .fbw-calendar--main .config-item input,
  .fbw-calendar--main .config-item .nice-select {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block;
    height: 42px !important;
    line-height: 42px !important;
    font-size: 14px !important;
  }

  .fbw-calendar--main .config-item select,
  .fbw-calendar--main .config-item input {
    padding: 0 36px 0 14px !important;
  }

  .fbw-calendar--main .config-item .nice-select {
    padding-left: 14px !important;
  }

  .fbw-calendar--main .config-item .nice-select:after {
    right: 14px !important;
    width: 8px !important;
    height: 8px !important;
    top: 39% !important;
  }
}

/* -------------------
    Coming Soon Page
   ------------------- */

body.coming-soon-page {
  padding-top: 0 !important;
}

.coming-soon-page .coming-soon-hero {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.coming-soon-page .hero-slider .hs-item.set-bg::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  background: rgba(0, 0, 0, 0.45);
}

.coming-soon-panel {
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  padding: 44px 36px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.coming-soon-logo {
  display: block;
  margin: 0 auto 20px;
  width: auto;
  max-width: 100%;
  height: auto;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--brand-color-lighter);
  color: var(--brand-color);
}

.coming-soon-panel h1 {
  color: #1f1f1f;
  font-size: 58px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.coming-soon-panel p {
  font-size: 19px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.coming-soon-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.coming-soon-link {
  color: #2f2f2f;
  font-size: 16px;
  font-weight: 600;
}

.coming-soon-link:hover,
.coming-soon-link:focus {
  color: var(--brand-color);
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .coming-soon-page .coming-soon-hero {
    min-height: calc(100vh - 72px);
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .coming-soon-panel {
    padding: 34px 22px;
  }

  .coming-soon-panel h1 {
    font-size: 44px;
  }

  .coming-soon-panel p {
    font-size: 17px;
  }
}

@media only screen and (max-width: 479px) {
  .coming-soon-page .coming-soon-hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .coming-soon-panel {
    padding: 28px 16px;
  }

  .coming-soon-panel h1 {
    font-size: 36px;
  }

  .coming-soon-panel p {
    font-size: 16px;
    line-height: 1.6;
  }
}
