/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"); */
/* @font-face {
  font-family: "Zona Pro Light";
  font-weight: 100;
  src: url("fonts/ZonaPro-ExtraLight.woff2") format("woff2"),
    url("fonts/ZonaPro-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: "Zona Pro Bold";
  font-weight: bold;
  src: url("fonts/ZonaPro-Bold.woff2") format("woff2"),
    url("fonts/ZonaPro-Bold.woff") format("woff");
} */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {
  /* --main-font-bold: "Zona Pro Bold", sans-serif;
  --main-font-light: "Zona Pro Light", sans-serif;
  --alt-font: "Montserrat", sans-serif; */
  --light-font: #fff;
  --dark-font: #201e1e;
  --light-gray: #eeeeee;
  --dark-gray: #3c3c3c;

  /* galley */
  --s: 15px;  
  --b: 2px;    
  --w: 200px;  
  --c: #7B3B3B;
}
::selection{
  background-color: #fff;
  color: #F68C1F;
}
html{
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  

  width: 5px;
  height: 5px;
}

html::-webkit-scrollbar-track {
 
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #F68C1F;
  border-radius:10px;
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  background: #fff;
  /* font-family: "Antic Didone", serif; */
  font-family: "Philosopher", sans-serif!important;
  
}
h1,h2,h3,h4,h5,h6,p{
  font-family: "Philosopher", sans-serif!important;
}
a {
  font-family: "Philosopher", sans-serif!important;
  text-decoration: none!important;
  cursor: pointer;
}

p {
  margin: 0.5rem 0;
}

ul {
  list-style: none;
}

header li {
  display: inline-block;
}

#wrapper {
  width: 100%;
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}

.outer-content {
  max-width: 1760px;
  margin: 0 80px;
}

.inner-content {
  max-width: 1600px;
  margin: 0 80px 0 auto;
}

/* Header */

header {
  max-width: 1760px;
  height: 110px;
  margin: 0 62px 0 auto;
}

header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 99;
  max-width: 1760px;
  max-height: 110px;
}

#main-menu-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 110px;
  max-width: 1440px;
  margin-right: 80px;
}

#main-menu-wrapper::after {
  position: absolute;
  content: "";
  background: var(--light-gray);
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
}

#main-menu-wrapper a {
  color: var(--light-font);
}

#main-menu-wrapper .main-menu li a {
  display: block;
  position: relative;
  font-family: var(--alt-font);
  /* font-weight: bold; */
  font-size: 12px;
  padding: 0 10px;
  color: var(--light-font);
  text-transform: uppercase;
  transition: 0.5s;
}
#main-menu-wrapper .main-menu li a:hover{
  color: #F68C1F;
}
/* Hamburger Menu - Styling */

/* 
old_one
#mobile-menu-icon {
  position: absolute;
  left: -40px;
  top: 40px;
} */
#mobile-menu-icon {
  position: absolute;
  left: -40px;
  top: 27px;
}
#mobile-menu-icon .toggle {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  top: 0;
  left: 0;
}

#mobile-menu-icon .hamburger-icon {
  position: relative;
  z-index: 1;
  padding: 10px;
  /* background: var(--dark-font); */
  background-image: linear-gradient(45deg, #020024 0%, #F68C1F 35%, #F68C1F 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#mobile-menu-icon .hamburger-icon,
#mobile-menu-icon .toggle {
  width: 35px;
  height: 35px;
}

#mobile-menu-icon .hamburger-icon:hover > div::before,
#mobile-menu-icon .hamburger-icon:hover > div::after {
  width: 100% !important;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#mobile-menu-icon .hamburger-icon > div {
  position: relative;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#mobile-menu-icon .hamburger-icon > div::before {
  bottom: -7px;
  width: 65%;
}

#mobile-menu-icon .hamburger-icon > div::after {
  bottom: -14px;
  width: 35%;
}

#mobile-menu-icon .hamburger-icon > div::before,
#mobile-menu-icon .hamburger-icon > div::after {
  position: absolute;
  content: "";
  left: 0;
  background: #fff;
  height: 2px;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
#logo {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 17%;
  z-index: 1;
}

@media (max-width: 991px) {
  .mid_logo{
margin-top: 5px;
    display: block;
    width:90px !important;
    height: 90px !important;
  
  }
}
@media (min-width: 991px) {
  .mid_logo{

    display: block;
    width:100px !important;
    height: 100px !important;
  
  }

  /* @media only screen and (max-device-width: 480px) {
    
    .mid_logo img{
      
      height: auto !important;
     
       
    }
 } */
}
.mid_logo img{
  width:100%;
  height: auto;
 
   
}
/* Scroll - Sticky Header */
 
 #logo img{
  /* padding: 10px; */
  border-radius: 10px;
}
/* .scroll #logo img {
  padding: 10px;
} */
.scroll #main-menu-wrapper .main-menu li ul{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }
 
 
.scroll #main-menu-wrapper .main-menu li a,
.scroll #main-menu-wrapper a,
.scroll #main-menu-wrapper .second-menu li {
  color: var(--dark-font);
}

.scroll #main-menu-wrapper .main-menu > li:not(:last-child)::before,
.scroll #main-menu-wrapper .main-menu li::after {
  background: var(--dark-gray);
}

.scroll > div {
  background: #fff;
  padding: 0 15px;
}

.scroll {
  z-index: 9999999;
}

/* Main Menu */

#main-menu-wrapper .main-menu {
  position: relative;
  margin-right: 12px;
}

#main-menu-wrapper .main-menu li {
  position: relative;
  font-size: 12px;
  margin: 0 18px;
  height: 110px;
  line-height: 110px;
}

#main-menu-wrapper .main-menu > li:not(:last-child)::before {
  position: absolute;
  content: "";
  background: var(--light-gray);
  width: 2px;
  height: 12px;
  right: -20px;
  top: 50px;
}

#main-menu-wrapper .main-menu li::after {
  position: absolute;
  content: "";
  background:#F68C1F;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

#main-menu-wrapper .main-menu li:hover::after {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#main-menu-wrapper .main-menu em {
  font-size: 20px;
}

#main-menu-wrapper .main-menu em::before {
  position: absolute;
  top: 0;
  right: -3px;
  line-height: 110px;
}

/* Secondary Menu */

#main-menu-wrapper .second-menu {
  margin-top: -18px;
}

#main-menu-wrapper .second-menu li {
  display: block;
  font-family: var(--main-font-light);
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 20px;
  margin: 0 18px;
  padding: 0 15px;
  color: var(--light-font);
}

#main-menu-wrapper .second-menu li:nth-child(2) {
  font-family: var(--main-font-bold);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 16px;
}

#main-menu-wrapper .second-menu a:hover {
  color: var(--dark-gray);
}

/* Language Menu */

#language-menu {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#language-menu ul {
  width: 35px;
  height: 35px;
}

#language-menu li {
  display: block;
  line-height: 35px;
  text-align: center;
}

#language-menu li.active:hover a,
#language-menu li a {
  background: var(--light-gray);
  color: var(--dark-font);
}

#language-menu li.active a,
#language-menu li:hover a {
  background: var(--dark-font);
  color: var(--light-font);
}

#language-menu a {
  font-family: var(--main-font-bold);
  font-size: 12px;
  display: block;
}

/* Slider - Setup */

#slider {
  position: relative;
  max-width: 1920px;
  height: 600px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: -110px;
}

#slider .slide {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  width: 100%;
  height: 100%;
}
.bg__text{
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 1;
  
}
 
.bg__text .btn {
  background: #F68C1F;
  color: #333333;
  padding: 8px 20px;
  border-radius: 20px;
  /* border: 1px solid #111822; */
  display: inline-block;
  text-decoration: none;
}
#slider .slide.active {
  left: 0;
  opacity: 1;
  z-index: 1;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

#slider .slide > div {
  width: 100%;
  height: 100%;
  position: relative;
}

.all_bx{
  width:100%;
  margin: auto;
 
}

.gallery__photo{
  margin: auto;
  padding:5px 0
}
 @media (min-width: 991px) {
  .all_bx p{
    height: 150px;
    color: rgba(255,255,255,0.5);
  }
  .footer .gallery__photo {
    display: block;
    width: 100px;
    height: auto;
  }
  .footer .gallery__photo img{
    width: 100%;
    height: 100%;
  }
  .sl-img {
    position: relative;
    z-index: -1;
    width:100%;
    /* height: 800px; */
    height: 600px;
  }
 }
 @media (max-width: 991px) {
  .contact_us form {
    margin: 5% auto;
  }
  .all_bx p{
    height: auto;
    color: rgba(255,255,255,0.5);
  }
  .footer .gallery__photo {
    display: block;
    width: 100px;
    height: auto;
  }
  .footer .gallery__photo img{
    width: 100%;
    height: 100%;
  }
  
#slider {
   
  height: 450px;
  
}
  .sl-img {
    position: relative;
    z-index: -1;
    width:100%;
    /* height: 800px; */
    height: 450px !important;
  }
 }


#slider .sl-img::after {
  
  position: absolute;
  content: " ";
  /*background: #000;*/
 
  width: 100%;
  /* height: 730px; */
  height: 100%;

  left: 0;
  top: 0;
  opacity: 0.35;
}

#slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}

#slider .sl-content .content-inner {
  position: absolute;
  width: 315px;
  z-index: 10;
  left: 0;
  bottom: 0;
}

#slider .sl-content {
  position: relative;
  max-width: 1440px;
  max-height: 730px;
  height: 100%;
  margin: 0 auto;
}

/* Slider - Styling */

#slider a,
#slider {
  color: var(--light-font);
}

#slider .sl-text {
  font-family: var(--main-font-light);
  font-weight: lighter;
  text-transform: uppercase;
  font-size: 29px;
  line-height: 33px;
  margin-bottom: 62px;
}

#slider .sl-text strong {
  font-family: var(--main-font-bold);
}

#slider .sl-breadcrumb {
  position: absolute;
  top: 400px;
  right: -30px;
  font-family: var(--alt-font);
  font-weight: 300;
  font-size: 11px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  max-width: 200px;
  width: 100%;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
}

#slider .sl-breadcrumb a {
  position: relative;
  margin: 0 5px;
}

#slider .sl-breadcrumb a::after {
  position: absolute;
  content: "";
  background: var(--light-gray);
  width: 0;
  height: 2px;
  left: 0;
  top: 7px;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

#slider .sl-breadcrumb a:hover::after {
  width: 100%;
  -webkit-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

/* Slider - Hotel Regions / Titles */

#slider .sl-title li {
  position: relative;
  width: 100%;
  height: 30px;
  margin-bottom: 8px;
}

#slider .sl-title li.active::after,
#slider .sl-title li:hover::after {
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#slider .sl-title li::after {
  width: 77px;
  opacity: 0.5;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#slider .sl-title li.active::after,
#slider .sl-title li::after {
  position: absolute;
  content: "";
  background: #fff;
  height: 3px;
  bottom: -7px;
  left: 0;
}

#slider .sl-title li::before {
  position: absolute;
  content: "";
  background: transparent;
  border: 2px solid #fff;
  width: 13px;
  height: 0;
  right: 5px;
  bottom: 3px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
}

#slider .sl-title li:hover::before,
#slider .sl-title li.active::before {
  opacity: 1;
  height: 13px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#slider .sl-title li.active::before {
  background: #fff;
}

#slider .sl-title input {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 5px;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

#slider .sl-title label {
  font-family: var(--alt-font);
  font-weight: 600;
  font-size: 24px;
  opacity: 0.5;
  cursor: pointer;
  text-transform: uppercase;
}

#slider .sl-title li:hover label,
#slider .sl-title li.active label {
  opacity: 1;
}

#slider .sl-title li.active label {
  opacity: 1;
}

/* Slider - Calendar */

.sl-calendar {
  margin: 17px 0 0;
}

.sl-calendar .calendar-input {
  border: 3px solid #fff;
}

.sl-calendar .calendar-input::before {
  position: absolute;
  content: "";
  background: transparent;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  z-index: -2;
}

.sl-calendar .calendar-input:hover::before {
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sl-calendar span {
  font-family: var(--main-font-light);
  font-size: 10px;
  line-height: 12px;
  display: block;
  text-transform: uppercase;
  padding-top: 10px;
  margin-bottom: -24px;
}

.sl-calendar input,
.sl-calendar select {
  width: 315px;
  height: 50px;
  font-family: var(--main-font-bold);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--light-font);
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sl-calendar select {
  cursor: pointer;
  line-height: 70px;
}

.sl-calendar select option {
  color: var(--dark-font);
}

/* Slider - Calendar Icons */

.sl-calendar select::-ms-expand {
  display: none;
}

.sl-calendar .guests {
  margin-top: 10px;
  padding-left: 0;
}

.sl-calendar .dates input {
  padding: 20px 10px 2px;
}

.sl-calendar .dates .check-in-out {
  padding: 10px 10px 0;
}

.sl-calendar .guests .check-in-out,
.sl-calendar .guests select {
  padding-left: 10px;
}

.sl-calendar .guests,
.sl-calendar .dates {
  position: relative;
}

.sl-calendar .guests::after {
  content: url(images/arrow-down-icon.png);
  top: 12px;
}

.sl-calendar .dates::after {
  content: url(images/calendar-icon.png);
  cursor: pointer;
  top: 22px;
}

.sl-calendar .guests::after,
.sl-calendar .dates::after {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 91%;
  z-index: -1;
}

/* Datepicker */

.daterangepicker {
  font-family: var(--alt-font) !important;
  font-weight: normal;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: 0 0 5px 2px #0000001f;
  box-shadow: 0 0 5px 2px #0000001f;
}

.daterangepicker .calendar-time,
.daterangepicker .drp-buttons .drp-selected {
  display: none;
}

.daterangepicker .drp-buttons {
  text-align: center !important;
  border: 0 !important;
  padding-top: 0;
}

.daterangepicker .drp-buttons button:hover {
  background: var(--dark-gray);
}

.daterangepicker .drp-buttons button {
  background: var(--dark-font);
  border: none;
  border-radius: 0;
  color: var(--light-font);
  padding: 8px 20px !important;
  font-family: var(--main-font-bold) !important;
  cursor: pointer;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: var(--dark-font) !important;
}

.daterangepicker td.in-range {
  background: var(--dark-gray) !important;
  color: #fff !important;
}

.daterangepicker .calendar-table thead tr:nth-child(2) {
  background: #eee;
}

.daterangepicker .calendar-table thead tr th {
  border-radius: 0;
}

/* Slider - Calendar Button */

.check-rates-btn {
  position: relative;
  font-family: var(--alt-font);
  font-size: 14px;
  font-weight: bold;
  color: var(--dark-font);
  letter-spacing: 0.5px;
  background: var(--light-gray);
  border: none;
  width: 100%;
  padding: 28px 0 23px;
  cursor: pointer;
  text-transform: uppercase;
  margin-top: 32px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.check-rates-btn:hover {
  color: var(--light-font);
  background: transparent;
}

.check-rates-btn::before,
.check-rates-btn::after {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}

.check-rates-btn::before {
  background: var(--light-gray);
  height: 100%;
  top: 0;
}

.check-rates-btn::after {
  background: var(--dark-font);
  bottom: 0;
}

.check-rates-btn::after,
.check-rates-btn:hover::before {
  height: 0;
}

.check-rates-btn:hover::after {
  height: 100%;
  -webkit-transition: height 0.2s ease;
  -o-transition: height 0.2s ease;
  transition: height 0.2s ease;
}

/* Slider - Bottom Section */

#sl-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  max-height: 170px;
  z-index: 1;
}

#sl-bottom .inner-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto 0 80px;
  height: 100%;
}

#sl-bottom h3 {
  font-family: var(--main-font-bold);
  font-size: 18px;
  line-height: 22px;
  color: var(--dark-gray);
  margin-left: 40px;
}

#sl-bottom .sl-bottom-left {
  width: 50%;
}

#sl-bottom .sl-bottom-left,
#sl-bottom .sl-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#sl-bottom .sl-bottom-left .gray-number {
  position: relative;
  background: var(--dark-gray);
  width: 100%;
  max-width: 160px;
}

#sl-bottom .sl-bottom-left .gray-number .number {
  position: absolute;
  content: "";
  top: 0;
}

#sl-bottom .sl-bottom-left .gray-number .outer {
  font-family: var(--main-font-bold);
  font-size: 100px;
  color: var(--light-font);
  right: -13px;
  line-height: 70px;
}

#sl-bottom .sl-bottom-left .gray-number .inner {
  font-family: var(--main-font-light);
  font-size: 82px;
  color: #e5e5e5;
  z-index: 1;
  right: -6px;
  line-height: 74px;
}

#sl-bottom .sl-numbers {
  position: absolute;
  right: -50px;
  font-family: var(--main-font-bold);
  font-size: 24px;
  color: var(--dark-gray);
  letter-spacing: 2px;
  line-height: 30px;
}

#sl-bottom .sl-numbers .sl-txt-smaller {
  font-family: var(--main-font-light);
  font-size: 14px;
}

#sl-bottom .sl-bottom-left h3,
#sl-bottom .sl-bottom-right {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-top: -45px;
}

#sl-bottom .buttons {
  margin-right: 40px;
}

#sl-bottom .buttons img {
  vertical-align: middle;
  margin: 0 10px;
  cursor: pointer;
}

#sl-bottom .buttons img:hover {
  opacity: 0.5;
}

/* Responsive */

/* @media (max-width: 1760px) {
  #slider .sl-breadcrumb {
    right: -80px;
  }
}

@media (max-width: 1730px) {
  #sl-bottom .sl-numbers {
    right: 0;
  }
  #sl-bottom .buttons {
    margin-right: 100px;
  }
}

@media (max-width: 1700px) {
  #sl-bottom .inner-content {
    margin: 0 30px 0 auto;
  }
} */

@media (max-width: 1440px) {
  #slider .sl-content .content-inner {
    margin-left: 30px;
  }
  #main-menu-wrapper .main-menu li {
    margin: 0 12px;
  }
  #main-menu-wrapper {
    margin-right: 30px;
  }
  #main-menu-wrapper .second-menu li {
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 1271px) {
  #mobile-menu-icon {
    opacity: 0;
  }
}

@media (max-width: 1270px) {
  #mobile-menu-icon {
    left: 40px;
    opacity: 1;
  }
  /* Sticky */
  .scroll #main-menu-wrapper .main-menu li a,
  .scroll #main-menu-wrapper a,
  .scroll #main-menu-wrapper .second-menu li {
    color: var(--light-gray);
  }
  /* Mobile Menu - Styling */
  #main-menu-wrapper .main-menu li a {
    position: relative;
    letter-spacing: 0;
    -webkit-transition: letter-spacing 0.7s ease;
    -o-transition: letter-spacing 0.7s ease;
    transition: letter-spacing 0.7s ease;
    display: initial;
  }
  #main-menu-wrapper .main-menu li a:hover {
    letter-spacing: 2px;
    -webkit-transition: letter-spacing 0.7s ease;
    -o-transition: letter-spacing 0.7s ease;
    transition: letter-spacing 0.7s ease;
  }
  #main-menu-wrapper .main-menu li a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: var(--dark-font);
    left: 0;
    top: 6px;
    -webkit-transition: width 0.7s ease;
    -o-transition: width 0.7s ease;
    transition: width 0.7s ease;
  }
  #main-menu-wrapper .main-menu li a:hover::after {
    width: 100%;
    -webkit-transition: width 0.7s ease;
    -o-transition: width 0.7s ease;
    transition: width 0.7s ease;
  }
  #main-menu-wrapper.mobile-menu::after {
    display: none;
  }
  #main-menu-wrapper.mobile-menu {
    position: absolute;
    max-width: 100%;
    width: 100vw;
    height: 600px;
    background: var(--dark-font);
    -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;
    overflow: hidden;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }
  #mobile-menu-icon .hamburger-icon.close-btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #mobile-menu-icon .close-btn > div {
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
  }
  #mobile-menu-icon .close-btn > div::before {
    width: 100% !important;
    bottom: 0 !important;
    -webkit-transform: rotate(100deg);
    -ms-transform: rotate(100deg);
    transform: rotate(100deg);
  }
  #main-menu-wrapper .main-menu li::after {
    display: none;
  }
  #mobile-menu-icon .close-btn > div::after {
    display: none;
  }
  #main-menu-wrapper.mobile-menu .main-menu {
    margin: 0;
  }
  #main-menu-wrapper.mobile-menu .second-menu {
    margin: 0;
    text-align: center;
  }
  #main-menu-wrapper.mobile-menu .main-menu li {
    display: block;
    height: auto;
    line-height: 43px;
    text-align: center;
  }
  #main-menu-wrapper.mobile-menu .main-menu em::before {
    right: -4px;
    top: -13px;
    line-height: 43px;
  }
  #main-menu-wrapper.mobile-menu .main-menu li::before {
    display: none;
  }
  /* Mobile Header - Styling */
  #logo {
   
    z-index: 1;
  }
  .mobile-header {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
  .mobile-header > div {
    max-width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .mobile-header #language-menu {
    position: absolute;
    top: 40px;
    right: 40px;
  }
}

@media (max-width: 580px) {
  #slider .sl-content .content-inner .sl-title,
  #slider .sl-content .content-inner .sl-calendar,
  #sl-bottom {
    display: none;
  }
  #slider .sl-content .content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }
}

/* Dropdown Guests - Calendar */
.guests-select li {
  font-family: var(--main-font-bold);
  display: block;
  cursor: pointer;
  padding: 2px 14px;
  font-size: 14px;
  -webkit-transition: padding .2s ease;
  -o-transition: padding .2s ease;
  transition: padding .2s ease;
}

.guests {
  width: 315px;
  height: 50px;
  cursor: pointer;
}

.guests .guest-no {
  padding: 27px 12px;
  font-size: 14px;
  font-family: var(--main-font-bold);
}

.guests-select {
  width: 100%;
  position: absolute;
  background: #fff;
  color: var(--dark-font);
  z-index: 1;
  border: solid #fff;
  border-width: 0 1px 1px;
  height: 0;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  overflow: hidden;
}

.guests-select.show-guests {
  height: auto;
}

.guests-select li:hover {
  background: var(--dark-font);
  color: var(--light-font);
  padding: 2px 18px;
  -webkit-transition: padding .2s ease;
  -o-transition: padding .2s ease;
  transition: padding .2s ease;
}

.guests-select li:first-child {
  border-top: 0;
}

.guests-select li:last-child {
  border-bottom: 0;
}




.checking_sec {
  /* min-height: 100vh; */
  font-family: "Open Sans", sans-serif;
  padding: 50px 0;
  /* background: url(./images/2book.png); */
  /* background-attachment: fixed; */
  /* background-repeat: repeat; */
  background: linear-gradient(to left, #fff, #E5DFDA ,#E5DFDA);
  /* background: linear-gradient(to left, #fff, #D9C3AB ,#D9C3AB); */
  display: flex;
}

.location.form-control{
  -webkit-box-shadow:none!important;
  box-shadow:none!important;
 }
.room_select .form-control{
  border: none !important;
}
.checking_sec .check_form {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  /* width: 432px; */
  padding: 29px;
  /* background: #D9C3AB; */
  background: #E5DFDA;
  
  border-radius: 10px;


  .date {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 30px 1fr; */

    .wrap {
      grid-area: 2/1/3/3;
    }
  }

  .rooms {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 30px 1fr;

    .wrap {
      grid-area: 2/1/3/4;
    }
  }

  h1 {
    margin-bottom: 31px;
  }

  p {
    margin: 0 10px 12px;
    color: rgba(0, 0, 0, 0.5);
  }

  .wrap {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    background-color: #fff;
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    box-shadow: 4px 10px 20px rgba(0, 0, 0, 0.08);

    input {
      width: 100%;
      height: 35px;
      border: none;
      outline: none;
      font-size: 1.1em;
    }

   

    .checkOut,
    .adults,
    .kids {
      padding-left: 10px;
      /* border-left: 2px solid #f4f4f5; */
      border-left: 2px solid #E5DFDA;
    }
  }

  .show-properties {
    position: absolute;
    text-align: center;
    width: 379px;
    height: 93px;
    background: #ff455b;
    border-radius: 10px;
    z-index: 1;

    p {
      margin-top: 40px;
      font-size: 1.3rem;
      font-weight: bold;
      color: #fff;
    }
  }
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #fff !important;
    background: #F68C1F!important;
    color: #fff!important;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5!important;
    background-color: bisque!important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
  text-align: center;
}

/* #Cursor_section start */

/* 
.cursor,
.cursor2,
.cursor3{
	position: fixed;
	border-radius: 50%;	
	transform: translateX(-50%) translateY(-50%);
	pointer-events: none;
	left: -100px;
	top: 50%;
	mix-blend-mode: difference;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.cursor{
	background-color: #fff;
	height: 0;
	width: 0;
	z-index: 99999;
}
.cursor2,.cursor3{
	height: 36px;
	width: 36px;
	z-index:99998;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out
}
.cursor2.hover,
.cursor3.hover{
	-webkit-transform:scale(2) translateX(-25%) translateY(-25%);
	transform:scale(2) translateX(-25%) translateY(-25%);
	border:none
}
.cursor2{
	border: 2px solid #fff;
	box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
.cursor2.hover{
	background: rgba(255,255,255,1);
	box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
} */
/* cursor_Section end */
.special_room{
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	height: 100vh;
  	/* background: url('./images/bg.jpg') repeat fixed; */
}
 .shadow-title{
  font-family:' Archivo', 'sans-serif'!important ;
	position: fixed;
	bottom: 20px;
	right: 20px;
	text-align: right;
	font-size: 20px;
	line-height: 1;
	color: #ccc;
	font-weight: 700;
   letter-spacing: 1px;
	z-index: 2;
  opacity: 0.5;
}
.room__section{
  position: relative;
  /* background-image: radial-gradient(circle, #fff 0%, #fff 35%, #DCD4CE 100%); */
  background-image: linear-gradient(45deg, #fff 0%, #fff 35%, #DCD4CE 100%);
}


.para__Section h2 {
  font-family: 'Antic Didone', 'sans-serif';
  margin-top: 20px;
  margin-bottom: 10px;
  
  font-weight: 400;
  line-height: 1.2;
   
}
.moving-image {
 
	background: url('./images/BG2.jpg') repeat fixed;
background-color: #fff;
	background-size: cover;
 
	position: absolute;
	top: 0; 
	left: 0; 
	right: 0;
	bottom: 0;
	z-index: 1;
	width:100%;
   
	opacity: 0.8;
}
 
.hotel_room_part {
	position: absolute;
	top: 50%;
	left: 20px;
	z-index: 10;
	width: auto;
	margin: 0;
	padding: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	list-style: none;
}
 
.hotel_room_part .room_name {
	margin: 0;
	padding: 0;
}
.hotel_room_part .room_name a {
  cursor:pointer;
  text-transform: capitalize;
	position: relative;
	list-style: none;
	margin: 0 auto;
	display: inline-block;
	text-align: center;
	padding: 0;
	margin-top: 6px;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 1px;
	/* color: rgb(0,0,0); */
	/* color: rgba(255,255,255,.3); */
  color: #fff;
  transform: rotate(-180deg);
	 
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-rl;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
	text-decoration: none;
}	
.hotel_room_part .room_name a:hover {
	text-decoration: none;
}	
.hotel_room_part .room_name.active a {
	color: rgba(0, 0, 0, 0.5);
}
.hotel_room_part .room_name a:before {
	position: absolute;
	content: '';
	left: -5px;
	top: 50%;
	height: 0;
	width: 4px;
	transform: translateY(-50%);
	background: linear-gradient(45deg, #f19872, #e86c9a);
  
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear; 
}	
.hotel_room_part .room_name:nth-child(2) a:before {
  

	background: linear-gradient(45deg, #F68C1F 35%, #2E3192 100%);
}
.hotel_room_part .room_name:nth-child(3) a:before {
  

	background: linear-gradient(45deg, #f19872, #f8ae2c);
}
.hotel_room_part .room_name:nth-child(4) a:before {
   

	background: linear-gradient(45deg, #3a3d98, #6f22b9);
}
.hotel_room_part .room_name.active a:before {
	height: 100%;
}

.case-study-images {
	position: absolute;
	top: 50%;
	left: 70px;
	width: calc(100% - 90px);
	max-width: 500px;
	margin:0;
	padding: 0;
	z-index:5;
	list-style: none;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}	
.case-study-images li {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin:0;
	padding: 0;
	list-style: none;
	opacity: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 0 30px rgba(14,14,14,.35);
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.case-study-images li.show {
	opacity: 1;
} 
/* .case-study-images li img {
	width: 100%;
	height: auto;
	display: block;
} */
.d_p{
  margin-top: 10% !important;
}
 @media screen and (min-width: 991px){
  .para__Section h2 {
    
    font-size: 48px;
     
     
  }
  .m_p{
    display: none;
  }
 
  .para__Section{
    margin: auto;   
    width: 100%;
    height: 100%;
  }
 }
 @media screen and (max-width: 991px){
  .para__Section h2 {
     
    font-size: 20px;
   
     
  }
  .m_p{
   padding: 10px 0;
  }
  .d_p{
    display: none;
  }
  .para__Section{
    margin: auto;
    text-align:center;
    width: 100%;
    height: 100%;
  }
 }

@media screen and (min-width: 991px) {
  /* .case-study-images li .room_images {
	width: 100%;
  height: 333px;
	display: block;
} */
}
@media screen and (max-width: 991px) {
  .hotel_room_part .room_name a {
    font-size: 12px;
    font-weight: 600;
  }
  /* .case-study-images li .room_images {
	width: 100%;
  height: 280px;
	
	display: block;
} */
}

.case-study-images li .room_images img{
	width: 100%;
	height: 100%;
	display: block;
}
.case-study-images li p {
	position: absolute;
	top: 20px;
	left: 20px; 
	text-align: left;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 1px;
	color: #fff;
	font-weight: 300;
	margin: 0;
	padding: 5px 10px;
	background-color: rgba(0,0,0,.8);
	border-radius: 3px;
	display: inline-block;
  text-transform: capitalize !important;
}
.case-study-images li .info {
	position: relative; 
	padding: 12px 20px;
	background-color: rgba(0,0,0,.5);
	display: block;
}
.case-study-images li .info img {
	width: 20px;
	height: 20px;
	display: inline-block;
	margin-right: 10px;
}
.case-study-images li .info a {
  background-color: rgba(0,0,0,.8);
  	/* background-color: #F68C1F; */
	font-size: 11px;
	text-transform: uppercase;
	line-height: 28px;
	letter-spacing: 2px;
	color: #fff;
	font-weight: 300;
	position: absolute;
	right: 20px;
	top: 10px;
	height: 28px;
	padding: 0 20px;
	border-radius: 3px;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
}
.case-study-images li .info a:hover {
	text-decoration: none;
}
 
.send_btn{}
.send_btn button {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    background-color: aliceblue;
    display: inline-block;
    outline: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


/* weather */
.eapps-widget-toolbar-panel-only-you {
    position: absolute;
    opacity: 0!important;
    display: none!important;
    top: -24px;
    font-size: 11px;
    line-height: 14px;
    color: #9c9c9c;
    padding: 5px 4px;
}
.eapps-widget-toolbar-panel {
    border-radius: 6px;
    background-color: #222;
    color: #fff;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    position: relative;
    transition: all .3s ease;
    opacity: 0!important;
   display: none!important;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-shadow: 0 0 0 1px hsla(0,0%,100%,.2);
    height: 28px;
}
.eapps-widget-toolbar-panel-share-button {
    padding: 0 18px;
    height: 28px;
    background-color: #1c91ff;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    border-radius: 6px;
    position: absolute;
    top: 0;
    display: -ms-flexbox;
    display: none!important;
    
    cursor: default;
   
}
.eapps-widget-toolbar-panel-share:hover .eapps-widget-toolbar-panel-share-block {
    opacity: 0!important;
    pointer-events: all;
}

.eapp-weather-weather-component a {
   display: none !important;
   visibility: hidden !important;
   opacity: 0 !important;
}
.cvBsnK a{
  display: none !important;
   visibility: hidden !important;
   opacity: 0 !important;
}




/* service__part */
.hotel_Service{
  padding: 5% 0;
}
.service__Section{
  width: 100%;
}
.icon-text{
 width: 100%;
}
.text-text{
  margin: auto;
}
.hotel_Service .stay {
  /* background-position: 0 -80px; */
}
.hotel_Service .icon {
  
  display: block;
  /* margin: ; */
  width: 60px;
  height: 60px;
}
.hotel_Service .icon {
  width: 100%;
  /* height: 1005; */
}
.hotel_Service h4 {
  font-family: 'Philosopher','Signika','Roboto','Arial','Athiti','Noto Serif SC','Noto Serif TC','SimHei'!important;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  line-height: 22px;
  font-style: normal;
}
.hotel_Service p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 2rem;
  color: #676767;
}
/* service__part end */
/* event */
.events{
  padding: 20px;
  
  background-color: #1C1C1C;
  /* margin: 10px 0; */
}
.text_part{
  width: 100%;
}
.text_part p {
  letter-spacing: 1px;
  color: #BCB8B6;
  font-size: 0.9rem;
}
@media (min-width: 991px) {
  .img_part{
    width:300px;
    
  }
  .img_part img{
   
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .checking_sec .check_form {
    margin: auto;
    width: 350px;
  }
  .special_room {
    
    height: 550px;
    /* background: url('./images/bg.jpg') repeat fixed; */
}
  .img_part{
     
    width:100%;
    object-position: 0% 0%;
    height: 250px;
  }
  .events{
    padding: 5% 0;
  }
}

.img_part img{
  width: 100%;
  height: 100%;
}
/* event end */


/* dropdown Trying */
nav li:hover {
      cursor: pointer;
    }
.drop{
 
  position: relative;
  
}
#main-menu-wrapper .main-menu li ul li{
 
  
  
}
#main-menu-wrapper .main-menu li ul {
      visibility: hidden;
      opacity: 0;
      position: absolute !important;
      top: 100%;
padding-left: 0;
      left: 0;
      display: none;
      background: white;
      z-index: 1;
    }
    #main-menu-wrapper .main-menu li ul li a{
      color: #000!important;
      font-weight: 600;
   }
   #main-menu-wrapper .main-menu li:hover > ul,
   #main-menu-wrapper .main-menu li ul:hover {
      visibility: visible;
      opacity: 1;
      display: block;
     
      text-align: left;
      /* padding-top: 20px;
      box-shadow: 0px 3px 5px -1px #ccc; */
    }

    #main-menu-wrapper .main-menu li ul li {
      clear: both;
     
      width: 250px;
      
      text-align: left;
      /* margin-bottom: 20px; */
      border-style: none;
    }

     #main-menu-wrapper .main-menu li ul li a:hover {
       
      transition: all 0.3s ease;
    }
   
 

     #main-menu-wrapper .main-menu li ul li a { transition: all 0.5s ease; }


/* dropdown Trying end */


/* contact */

.detail_btn a {
  background-color: rgba(0,0,0,.8);
  /* background-color: #F68C1F; */
  font-size: 11px;
  text-transform: uppercase;
  line-height: 28px;
  letter-spacing: 2px;
  color: #fff;
  font-weight: 300;
  display: inline-block;
   
  height: 28px;
  padding: 0 20px;
  border-radius: 3px;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
svg {
	height: 23rem;
	margin-right: 4rem;
}
 

#star1, #star2, #star3, #star4, #star5, #star6 {
  animation: blink 1s ease-in-out infinite;
}
#star2 { animation-delay: 100ms; }
#star3 { animation-delay: 500ms; }
#star4 { animation-delay: 700ms; }
#star5 { animation-delay: 300ms; }
#star6 { animation-delay: 200ms }

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}

 
.contact_us{
 
margin:2% auto;
}


.contact_us form {
  
  width: 100%;
	/* min-width: 25rem; */
	
	.title {
		font-family: 'Pacifico', cursive;
		color: #212529;
		font-size: 2rem;
	}
	
  .form-control {
    background-color: #f2f6f8;
		border-radius: 2rem;
    border: none;
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		
    &.thick {
      height: 3.3rem;
      /* padding: .5rem 3.5rem; */
    }
		
		&:focus {
			background-color: #f2f6f8;
			border: none;
			box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.11);
		}
  }
	
	.contact_us .message .form-control {
			padding: .5rem 1.8rem;
	}
	
  ::placeholder {
    /* font-family: 'Quicksand', sans-serif; */
		font-weight: 600;
    font-size: 1rem;
    color: #838788;
    position: relative;
    left: 0;
  }
	
  input,
  textarea {
		/* font-family: 'Quicksand', sans-serif; */
    color: #212529;
    font-size: 1rem;
  }
	
  .form_icon {
    color: #57565c;
    height: 1.3rem;
    position: absolute;
    left: 1.5rem;
    top: 1.1rem;
  }
}

.contact_us .btn.btn-primary {
  /* font-family: 'Quicksand', sans-serif; */
	font-weight: bold;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image:linear-gradient(131deg, #F68C1F, #ff923c, #ff923c, #ff923c);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
}

.contact_us .btn.btn-primary:hover:enabled {
  box-shadow: 0 0.5em 0.5em -0.4em #ff923cba;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

.contact_info{
  border-radius: 20px;
  width: 100%;
  height: 100%;
  margin: 10% auto;
}

iframe{
  border-radius: 20px;
  width: 100%;
  height: 300px;
  /* width: 300px;
  height: 300px; */
}
/* contact emd */

/* awardpart */
.award__section{
  background-image: url(./images/BG2.jpg);
}
.award__part{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2%;
 
}
.award__part .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  padding: 5%;
  /* align-self: center; */
  
  
}
.award__part .box img {
  
  /* background-color: rgba(0, 0, 0 ,1); */
  width: 60%;
  height: 60%;
}
/* awardpart end */

/* rooms */
.rooms .owl-item.active{
  transform: scale(1);
  opacity: 0.5;
}
.rooms .owl-item.active.center{
  transform: scale(1.2);
  opacity: 1;
}
.owl-stage-outer {
  padding: 30px 0;
}

.owl-nav {
  display: none;
}

.owl-dots {
  text-align: center;

  span {
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background: #fff;
    border: 2px solid #61B081;
    margin: 0 5px;
  }

  .active {
    box-shadow: none;

    span {
      background: #61B081;
      box-shadow: none;
      height: 12px;
      width: 12px;
      margin-bottom: -1px;
    }
  }
}








.owl-carousel {
.owl-nav button {
  &.owl-next, &.owl-prev {
    outline: 0;
  }
}

button.owl-dot {
  outline: 0;
}
}
.service-card{

}
.card-banner ,.card-content{
  margin: auto;
  text-align: center;
}
.card-banner {}
.card-content{
  padding:6% 0 !important;
}
/* rooms */
/* call */
.call{
  padding:2% 0;
  background-color: #F68C1F;
}
.text__call{

}
.button {
 
}

.button-2 {
  width: 170px;
  padding: 5px 3px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 30px;
  margin-bottom: 30px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  border: 3px solid rgba(46, 49, 146,1);
  background-image: -webkit-linear-gradient(30deg, rgba(46, 49, 146,1) 50%, transparent 50%);
  background-image: linear-gradient(30deg, rgba(46, 49, 146,1) 50%, transparent 50%);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
   
  transition: background 300ms ease-in-out;
}
.button-2:hover {
  background-position: 100%;
  color: rgba(46, 49, 146,1);
}
/* call */
/* rest */
.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
}
.about .abs-img-1 { width: 285px; }

.special-dish .abs-img {
  position: absolute;
  top: 10px;
  left: -40px;
  animation: move 5s linear infinite;
}
.move-anim { animation: move 5s linear infinite; }

@keyframes move {
  0%,
  100% { transform: translateY(0); }

  50% { transform: translateY(30px); }
}
 .special-dish-banner{
  width: 100%;
 }
 .special-dish-banner img{
  width: 100%;
 }
 .section-subtitle{
  color: #F68C1F;
 }
 .special-dish-content {
  width: 100%;
  height: 100%;
  /* padding-inline: 50px 25px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

  .special-dish-content .container { position: relative; }

  .special-dish .section-subtitle::after,
  .special-dish .btn { margin-inline: 0; }

  .special-dish-content .wrapper { justify-content: flex-start; }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }

/* rest */
/* footer */
.footer{
 padding-top: 5%;
  /* background-color: #DCD4CE; */
 /* margin-top: 5%; */
}
 /* footer_nav */
 .footer__nav {
  padding: 2% 0;
 }
 .footer__nav ul {
  
  justify-items: center;
  margin: auto;
}

@media (min-width: 500px) {
  .footer__nav ul {
    grid-auto-flow: column;
  }
}
@media (min-width: 991px) {
  .footer__nav ul li{
    display: inline-block;
   margin: 0 2px;
  }
}
@media (max-width: 991px) {
  .footer__nav ul li{
    display: block;
    margin: 2px auto;
  }
}

.footer__nav ul a {
  color: white;
  text-decoration: none;
  box-shadow: inset 0 -1px 0 hsla(0, 0%, 100%, 0.4);
}

.footer__nav ul a:hover {
  box-shadow: inset 0 -1.2em 0 hsla(0, 0%, 100%, 0.4);
}

.footer__nav ul li:last-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.footer__nav ul li:hover ~ li p {
  animation: wave-animation 0.3s infinite;
}

.address{
  width:100%;
}
.address{
  color:rgba(255, 255, 255, 0.5)
}

.footer__nav{
  display: flex;
   
  width: 100%;
  
  line-height: 1.3;
 
}

@keyframes wave-animation {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-15deg);
  }
}

 /* footer_nav */
.bottom__footer{}
.bottom__footer li{
  display: inline-block;
}
.bottom__footer li a {
  font-size: 15px;
  line-height: 30px;
  display: inline-block;
  /* padding: 1% 2%; */
  width: 30px;
  color: #DCD4CE;
  
  border:1px solid transparent;
  height: 30px;
  transition: 0.6s;
}
.bottom__footer li a:hover{
  border:1px solid #DCD4CE;
}
.separador{
 
 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1% auto;
  
}
.separador .line{
  background-color: #DCD4CE;
  width: 100px;
  height: 1px;
}
.footer__text{
  color: #fff;
}
.all_logo {
  /* background-color: #FAF8F7; */
  width: 100%;
  padding: 1% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  /* display: grid; */
  /* grid-template-columns: auto auto auto auto; */
}

/* footer end */

 .scrol_top{}
  .back_top {
  /* display: inline-block; */
  width: 100%;
  display: inline-flex;
  align-content: center;
  justify-content: center;
  /* margin: auto; */
  /* text-align: center; */
  
}

 
  .back_top a{}
 
footer{
  
}


/* other page work start */
/* all_bg */

.hero {
  display: inline-block;
  width: 100%;
  height: 500px;
  position: relative;

}
.diagonal-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: #2b5876;   
  background: -webkit-linear-gradient(to right, #4e4376, #2b5876);   
  background: linear-gradient(to right, #4e4376, #2b5876);  
  
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

 .all_bg{
  background: url(/images/BG2.jpg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
 }
 

 

.stars {
  z-index: -1;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 1s ease-in-out;
}

.stars > .small {
  width: 1px;
  height: 1px;
  background: transparent;
  
  animation: starsAnimation 50s linear infinite;

  &:after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 1px;
    height: 1px;
    background: transparent;
    
  }
}

.stars > .medium {
  width: 2px;
  height: 2px;
  background: transparent;
  
  animation: starsAnimation 100s linear infinite;

  &:after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 2px;
    height: 2px;
    background: transparent;
    
  }
}

.stars > .big {
  width: 3px;
  height: 3px;
  background: transparent;
 
  border-radius: 100%;
  animation: starsAnimation 150s linear infinite;

  &:after {
    content: " ";
    position: absolute;
    top: 2000px;
    width: 3px;
    height: 3px;
    background: transparent;
    
    border-radius: 100%;
  }
}
 
@keyframes starsAnimation {
  from {
    transform: translateY(-2000px);
  }
  to {
    transform: translateY(0px);
  }
}

/* all_bg */


.room_n_suit{}
.room_text{}
.room_text h2 {
  font-weight: 600;
  font-size: 24px;
  padding: 2% 0;
}
.room_text h4{}
.room_text p {
  color: #676767;
  letter-spacing: 0.8px;
}
.room_video{}
.room_video iframe{
  width: 100%;
}

.room__img .item img{
 width: 90%;
 margin: auto;
}


/* 7/1/2024 */
.room_box:nth-child(even){
  /* background-color: #fff!important; */
}
.room__des h3{
  color: #F68C1F;
}
.room_box{
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.room_n_suit .button-2,
.contact-section .button-2 {
  width: 170px;
  padding: 5px 3px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 0;
  margin-bottom: 30px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  border: 3px solid #F68C1F;
  background-image: -webkit-linear-gradient(30deg, #F68C1F 50%, transparent 50%);
  background-image: linear-gradient(30deg, #F68C1F 50%, transparent 50%);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.room_n_suit .button-2:hover ,
.contact-section .button-2:hover  {
  background-position: 100%;
  color: #F68C1F;
}
.room_box{
  width: 100%;
  position: relative;
}
.room_box::before {
  content: '';
  display: block;
  height: 5px;
  width: 90%;
  background-color: #F68C1F;
  border-radius: 25px 25px 0 0;
  position: absolute;
  bottom: 100%;
}
.room_box::after {
  content: '';
  display: block;
  height: 5px;
  width: 90%;
  background-color: #F68C1F;
  border-radius:  0 0 25px 25px;
  position: absolute;
 top: 100%;
}
@media (min-width: 991px) {
  .room_box {
    /* margin-bottom: 1%; */
    /* padding:1%; */
    margin:3% auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5)!important;
   
  }
  .room__img{
    width: 49%;
    margin:1%;
  }
  .room__des{
    width: 49%;
    margin:1%;
  }
  .room_box:nth-child(even) .room__img{
    order: 2!important;
  }
  .room_box:nth-child(even) .room__des {
    order: 1!important;
    text-align: justify;
  }
  
}


@media (max-width: 991px) {
  .room_box {
    /* margin-bottom: 1%; */
    /* padding:1%; */
    margin:3% auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5)!important;
  }
  .room__img{
    width: 100%;
    
  }
  .room__des{
    width: 100%;
    
  }
}


/* gallery */
/* .list-section {

  position: relative;
 
  width: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-section .listPage {
  position: relative;
  
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  border-radius: 2px;
}
.list-section .listPage li {
  list-style-type: none;
  display: inline-block;
}
.list-section .listPage li a {
  position: relative;
  padding: 20px 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}
.list-section .listPage li a:hover,
.list-section .listPage li.active a {
  background: rgba(255, 255, 255, 0.2);
}


/ */
/* 
.list-section{
  margin: 5%;
  background: #dde1e7;
  padding: 25px;
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, 0.288);
}
.list-section .listPage {
  display: flex;
  list-style: none;
}
.list-section .listPage li {
  flex: 1;
  margin: 0px 5px;
  background: #dde1e7;
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, 0.288);
}
.list-section .listPage li {
  font-size: 15px;
  text-decoration: none;
  color: #4d3252;
  height: 45px;
  width: 30px;
  display: block;
  line-height: 45px;
}
.list-section .listPage :first-child li {
  width: 120px;
}
.list-section .listPage :last-child li {
  width: 100px;
}
.list-section .listPage li.active {
  box-shadow: inset -3px -3px 7px #ffffff73,
    inset 3px 3px 5px rgba(94, 104, 121, 0.288);
}
.list-section .listPage li.active{
  font-size: 17px;
  color: #6f6cde;
}
.list-section .listPage li:first-child {
  margin: 0 15px 0 0;
}
.list-section .listPage li:last-child {
  margin: 0 0 0 15px;
} */

/* gallery */



.gl_sec{}
  .gl_sec .container{
    padding: 2rem 1rem;
  margin: 0 auto;
  max-width: 68rem;
  width: 100%;
  }
 
  .sec_item{
    width: 100%;
    height: 280px;
    margin: auto;
    box-shadow:  0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    
    border-radius: 2px;
  }
  .sec_item img{
    width: 100%;
    height: 100%;
  }

  @media only screen and (max-width: 991px) {
    .l_part{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1%;
    justify-content: center;
    align-items: center;
  }
  .list-section {
    margin: 10% auto;
    text-align: center;
}
  }
  @media only screen and (min-width: 991px) {
    .l_part{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1%;
    justify-content: center;
    align-items: center;
  }
  .list-section{
    margin: 2% auto;
    text-align: center;
  }
  }



.list-section ul{}
.list-section ul li {
  cursor: pointer;
  list-style-type: none;
  display: inline-block;
  padding: 10px;
  margin: 1%;
  background-color: antiquewhite;
  border-radius: 3px;
  box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(94, 104, 121, 0.288);
}
.list-section .listPage li:first-child  {
  width: 100px;
}
.list-section .listPage li:last-child  {
  width: 100px;
}
/* gallery end */


/* contact us */
.contact-section{

}
.contact__from
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: auto;
    /* background-color: #fff; */
}

.contact-section .title
{
    font-size: 50px;
    font-weight: bold;
    padding: 1.5% 0;
}

.contact-section .title-info
{
 
	padding-bottom: 2%;
}
.contact-section .title-info h3{
  font-weight: 700;
}

.contact-section .form
{
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 2%;
}

.contact-section .input-group, .textarea-group
{
    padding: 1% 0;
}

.contact-section input, textarea
{
    color: inherit;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
    padding: 1.5%;
    font-size: 20px;
}

.contact-section input:focus, textarea:focus
{
    background-color: transparent;
    outline: transparent;
    border-bottom: 2px solid #F68C1F;
}

.contact-section input::placeholder, textarea::placeholder
{
    color: transparent;
}

.contact-section label
{
    color: #757575;
    position: relative;
    left: 0.5em;
    top: -2em;
	cursor: auto;
    transition: 0.3s ease all;
}

.contact-section input:focus ~ label, input:not(:placeholder-shown) ~ label
{
    top: -4em;
    color: #F68C1F;
    font-size: 15px;
}

.contact-section textarea:focus ~ label, textarea:not(:placeholder-shown) ~ label
{
    top: -10.5em;
    color: #F68C1F;
    font-size: 15px;
}

.contact-section .button-div
{
    display: flex;
    justify-content: center;
}

/* button
{
    padding: 2%;
    width: 50%;
    border: 1px solid;
    border-color: #212121;
    border-radius: 5px;
    font-family: inherit;
    font-size: 18px;
    background-color: black;
    color: inherit;
    box-shadow: 0 0 10px #212121;
}

button:hover
{
    background-color: #424242;
    color: #69f0ae;
    cursor: pointer;
} */


/* Media queries */

@media screen and (max-width: 1200px)
{
   .contact-section .form
    {
        width: 70%;
    }
}

@media screen and (max-width: 680px)
{
   .contact-section .form
    {
		width: 90%;
    }
}
/* @media screen and (max-width: 991px)
{
  .con {
    display: grid;
    grid-template-columns: auto;
    
    place-items: center;
    width: 100%; 
  }
}
@media screen and (min-width: 991px)
{
  .con {
    display: grid;
    grid-template-columns: auto auto auto;
    
    place-items: center;
    width: 100%; 
  }
} */

@media screen and (max-width: 500px)
{
	.contact-section .title
	{
		font-size: 40px;
		padding-top: 6%;
	}

	.contact-section .title-info
	{
		font-size: 13px;
	}
	
	.contact-section .form
	{
		padding: 6% 4%;
		padding-top: 15%;
	}

	.contact-section .input-group, .textarea-group
    {
		padding: 3% 0;
	}
	
	.contact-section input, textarea
	{
		font-size: 15px;
	}

	.contact-section input:focus ~ label, input:not(:placeholder-shown) ~ label
	{
		top: -3.5em;
		left: 0.1em;
	}
	
	.contact-section textarea:focus ~ label, textarea:not(:placeholder-shown) ~ label
	{
		top: -8.5em;
		left: 0.2em;
    }
    
    .contact-section button
    {
        font-size: 15px;
    }
}


.contact-info{
  display: grid;
  grid-template-columns:30px 270px;
}
.contact-info a{
  color: #000;
}
.info-icon ,.info-text{
  width: 100%;
  height: 100px;
  
}
.info-icon {
  height: 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* background-color: #1c91ff; */
  border-right: 1px solid #cddddd;
  padding-right: 5px;
}
.info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* background-color: #1c91ff; */
  /* background-color: #8d9faf; */
  padding-left: 8px;

}
.info-text p{
  

}


.con {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; 
  height: 100%;
}
/* contact us end */

/* dining */
.dining{
  margin: 2% auto;
}
.dine_bx_grid{
  display: grid;
  grid-template-columns: auto auto;
  gap:1%;
}
.dine_bx{
  background-color: #fff;
  position: relative;
 cursor: pointer;
 transition: 0.6s;
 /* height: 450px; */
}
.book_dine {
  /* content: ''; */
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 5%;
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  border: 1px solid #F68C1F;
  /* background-color: #fff; */
  backdrop-filter: blur(26px);
}
.dine_bx:hover .book_dine{
  transition: 0.6s;
  opacity: 1;
  visibility: visible;
}
.dine_img {
  width: 100%;
  height: 350px;
  margin: auto;
  background-position: center center;
  background-attachment: fixed;
}
.dine_img img{
  width: 100%;
  height: 100%;
  margin: auto;
  
}
.dine_text {
  /* margin: auto;
  text-align: center; */
  padding: 3% 0 0 2%;
}
.dine_text h2{
  
}
.book_dine h4 {
  
}
.book_dine p {
  color: #fff;
  /* font-weight: 600; */
  letter-spacing: 0.7px;
}
.sr_part li{
  display: grid;
  grid-template-columns: 10% 89%;
  margin: 2% auto;
}
.sr_part li>img{
  width: 20px;
  align-self: center;
  justify-self: center;
}
 
/* dining end */
@media (max-width: 991px) {
  .dine_bx_grid{
    display: grid;
    grid-template-columns: auto;
    gap:1%;
  }
}
/* other page work start */

/* offer */

@media (min-width: 991px) {
  .offer_box {
    /* margin-bottom: 1%; */
    /* padding:1%; */
    margin:3% auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   
  }
  .offer__img{
    width: 49%;
    margin:1%;
  }
  .offer_text{
    width: 49%;
    margin:1%;
  }
  .offer_box:nth-child(even) .offer__img{
    order: 2!important;
  }
  .offer_box:nth-child(even) .offer_text {
    order: 1!important;
    text-align: justify;
  }
  
}
@media (max-width: 991px) {
  .offer_box {
    /* margin-bottom: 1%; */
    /* padding:1%; */
    margin:3% auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5)!important;
  }
  .offer__img{
    width: 100%;
    margin: 2% auto;
  }
  .offer_text{
    width: 100%;
    
  }
  
}

.offer_text p{
    color: #676767;
}
 .offer_img{
    margin: auto;
    width: 250px;
    height: auto;
 }
 .offer_box {
    border-radius: 10px;
 }
 .offer__img img{
   border-radius:10px ;
    width: 100%;
    height: 100%;
 } 
/* offer end*/