body {
  margin: 0;
  font-family: Arial, sans-serif;

  color: white;
}

.orange-color {
  color: #a64d4d;
}

.heading-room {
  padding: 10px 15px 25px;
}

.room-section ul.slick-dots {
  display: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 5px !important;
}

.room-carousel.slick-initialized.slick-slider.slick-dotted {
  height: 300px;

}

/*.slick-initialized .slick-slide{*/
/*        --tw-scale-x: 1.1;*/
/*    --tw-scale-y: 1.1;*/
/*    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));*/
/*    transition-duration: .2s;*/
/*}*/
.room-section .slick-prev {
  left: 0px;
  color: #fff;
  z-index: 999;
}

.room-section .slick-next {
  right: 0px;
  color: #fff;
  z-index: 999;
}

.slick-initialized .slick-slide {
  display: block;
  height: 300px;
  object-fit: cover;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;


}

nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo a {
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  background: #a64d4d;
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-now-head {
  border: 1px solid #fff !important;
  color: #fff !important;
  text-transform: uppercase;
  padding: 10px 20px !important;
}

.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0 20px;
}

.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}

.row .mega-links li a:hover {
  color: #f2f2f2;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: block;
  }

  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }

  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: #242526;
  }

  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }

  #menu-btn:checked~.nav-links {
    left: 0%;
  }

  #menu-btn:checked~.btn.menu-btn {
    display: none;
  }

  #close-btn:checked~.btn.menu-btn {
    display: block;
  }

  .nav-links li {
    margin: 15px 10px;
  }

  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }

  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked~.drop-menu,
  #showMega:checked~.mega-box {
    max-height: 100%;
  }

  .nav-links .desktop-item {
    display: none;
  }

  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links .mobile-item:hover {
    background: #3A3B3C;
  }

  .drop-menu li {
    margin: 0;
  }

  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }

  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }

  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }

  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }

  .row .mega-links li {
    margin: 0;
  }

  .content .row header {
    font-size: 19px;
  }
}

nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}

.body-text div {
  font-size: 45px;
  font-weight: 600;
}

/*head-end*/
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('./images/hotel-banner.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: left;
}

/* .banner::before{
    --min-height: 100vh;
    --flex-direction: column;
    --container-widget-width: calc((1 - var(--container-widget-flex-grow))* 100%);
    --container-widget-height: initial;
    --container-widget-flex-grow: 0;
    --container-widget-align-self: initial;
    --flex-wrap-mobile: wrap;
    --justify-content: center;
    --align-items: center;
    --overflow: hidden;
    --overlay-opacity: .5;
} */
/* background: rgb(0 0 0 / 71%); */
.banner-overlay {
  width: 100%;
  height: 100vh;
  background: rgb(0 0 0 / 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  /* position: absolute;
    left: 8.7%;
    width: 45%;
    height: 50%;
    background: rgb(0 0 0 / 71%);
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 40px;
    bottom: 29px; */


}

.banner-content {

  max-width: 100%;
  color: #ffffff;
  text-align: center;
}

.banner h1 {
  font-size: 80px;
  font-weight: bold;
  margin: 0;
}
.hotel{
      font-size: 80px;
  font-weight: bold;
  margin: 0;
    max-width: 100%;
  color: #ffffff;
  text-align: center;
}
.banner p {
  font-size: 18px;
  margin-top: 10px;
}

.text-gold {
  color: #ab8965 !important;
}

.btn-gold {
  background-color: #d4af37;
  color: black;
  border: none;
  transition: transform 0.3s ease;
}

.btn-gold:hover {
  transform: scale(1.1);
  color: black;
}

/* galary section */
.image-gallery {
  text-align: center;
  padding: 0px 50px 20px;

}

.image-gallery h2 {
  font-size: 28px;
  margin-bottom: 35px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1114px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  height: 100%;
  object-fit: cover;
  min-height: 220px;
  max-height: 220px
}

.gallery-grid .grid-images::before {
  position: absolute;
  content: '';
  background-color: rgba(255, 255, 255, .75);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: .9s ease;
  z-index: 1;
  opacity: 0;
}

.grid-hover:hover .grid-images::before {
  opacity: 1;
  transform: translateY(0);
}

.border-line::after {
  display: block;
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  left: 50%;
  border: 4px solid transparent;
  border-bottom: 0;
  border-top-color: #ab8965;
  margin-left: -41px;
  top: auto;
  margin-top: 5px;
}

.italic-text {
  color: #ed7034;
}

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

/*services*/
.facilities h3 {
  color: #b58550;
  font-weight: 500;
  font-family: "EB Garamond", serif;

}

.facility-card.p-4.rounded.shadow.animated.fadeInUp {
  min-height: 222px;
}

.facilities h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "EB Garamond", serif;

}

.facility-card {
  background-color: white;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

.facility-card:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.facility-card h4 {
  font-size: 24px;
  margin-top: 10px;
}

.facility-card p {
  color: #666;
}

.facility-card i {
  color: #b58550;
}

/* code #6 */
.loading06 span {
  position: relative;
  color: rgba(0, 0, 0, 0.2);
}
.loading06 span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #fff;
  opacity: 0;
  transform: rotateY(-90deg);
  animation: loading06 4s infinite;
}
.loading06 span:nth-child(2)::after {
  animation-delay: 0.2s;
}
.loading06 span:nth-child(3)::after {
  animation-delay: 0.4s;
}
.loading06 span:nth-child(4)::after {
  animation-delay: 0.6s;
}
.loading06 span:nth-child(5)::after {
  animation-delay: 0.8s;
}
.loading06 span:nth-child(6)::after {
  animation-delay: 1s;
}
.loading06 span:nth-child(7)::after {
  animation-delay: 1.2s;
}

@keyframes loading06 {
  0%, 75%, 100% {
    transform: rotateY(-90deg);
    opacity: 0;
  }
  25%, 50% {
    transform: rotateY(0);
    opacity: 1;
  }
}
/*
==============================================
ANIMATION TIME!!!!
==============================================
*/
/*
==============================================
slideDown
==============================================
*/

.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
  animation-count: 1
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  65% {
    -webkit-transform: translateY(-4%);
  }
  80% {
    -webkit-transform: translateY(4%);
  }
  95% {
    -webkit-transform: translateY(-2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideUp
==============================================
*/

.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
  animation-count: 1;
  animation-delay: 1.5s;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
slideLeft
==============================================
*/

.slideLeft {
  animation-name: slideLeft;
  -webkit-animation-name: slideLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
  animation-count: 1;
  animation-delay: 1s;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
/*
==============================================
slideExpandUp
==============================================
*/

.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
  animation-count: 1;
  animation-delay: 4s;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}
/*
==============================================
expandUp
==============================================
*/

.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }
  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }
  75% {
    -webkit-transform: translateY(3%);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}
/*
==============================================
fadeIn
==============================================
*/

.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
  animation-count;
  1;
  animation-delay: 5.5s;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
/*
==============================================
bigEntrance
==============================================
*/

.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
  animation-count: 1;
  animation-delay: 7s;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }
  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}
/*
==============================================
pulse
==============================================
*/

.pulse:hover {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}
/*
==============================================
floating
==============================================
*/

.floating:hover {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(8%);
  }
  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
/*
==============================================
tossing
==============================================
*/

.tossing:hover {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }
  50% {
    -webkit-transform: rotate(4deg);
  }
  100% {
    -webkit-transform: rotate(-4deg);
  }
}
/*
==============================================
fade
==============================================
*/

.fade {
  opacity: 0.5;
  transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
}

.fade:hover {
  opacity: 1;
}
/*
==============================================
grow
==============================================
*/

.grow {
  transition: transform .5s ease-in-out;
  -moz-transition: transform .5s ease-in-out;
  -webkit-transition: transform .5s ease-in-out;
}

.grow:hover {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
/*
==============================================
circle
==============================================
*/

.circle {
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

.circle:hover {
  border-radius: 50%;
}
/*
==============================================
curls
==============================================
*/

.curls {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

.curls:before {
  pointer-events: none;
  position: absolute;
  content: '';
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: white;
  /* IE9 */
  
  background: linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#000000');
  /*For IE7-8-9*/
  
  z-index: 1000;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: width, height;
  transition-property: width, height;
}

.curls:hover:before,
.curls:focus:before,
.curls:active:before {
  width: 25px;
  height: 25px;
}
/*
==============================================
Bubble
==============================================
*/

.bubble-bottom {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  margin-bottom: 10px;
}
.bubble-bottom:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: tomato transparent transparent transparent;
}
.bubble-bottom:hover:before, .bubble-bottom:focus:before, .bubble-bottom:active:before {
  -webkit-transform: translateY(9px);
  transform: translateY(9px);
}

/*
==============================================
Bubble
==============================================
*/

.light{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff6347+0,ff6347+5,ff6347+5,ff6347+42,ffffff+49,ffffff+53,ff6347+59,ff6347+100 */
background: rgb(255,99,71); /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(255,99,71,1) 0%, rgba(255,99,71,1) 5%, rgba(255,99,71,1) 5%, rgba(255,99,71,1) 42%, rgba(255,255,255,1) 49%, rgba(255,255,255,1) 53%, rgba(255,99,71,1) 59%, rgba(255,99,71,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(255,99,71,1) 0%,rgba(255,99,71,1) 5%,rgba(255,99,71,1) 5%,rgba(255,99,71,1) 42%,rgba(255,255,255,1) 49%,rgba(255,255,255,1) 53%,rgba(255,99,71,1) 59%,rgba(255,99,71,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(255,99,71,1) 0%,rgba(255,99,71,1) 5%,rgba(255,99,71,1) 5%,rgba(255,99,71,1) 42%,rgba(255,255,255,1) 49%,rgba(255,255,255,1) 53%,rgba(255,99,71,1) 59%,rgba(255,99,71,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6347', endColorstr='#ff6347',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */


background-repeat: no-repeat;  
background-position:0px;
background-size:380%;  
}

.light:hover{
  animation:light 1.3s;
    -webkit-animation:light 1.3s;
}

@keyframes light {
  0% {
        background-position:-600px; 
  }
  100% { 
        background-position:0px; 
  }
}
        
@-webkit-keyframes light {
  0% {
        background-position:-600px; 
  }
  100% { 
        background-position:0px; 
  }
}

.animated {
  animation-name: fadeInUp;
}
    @keyframes fadeInSlide {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* service section */
.facilities h3 {
  color: #b58550;
  font-weight: 500;
}

.headings {
  font-family: "EB Garamond", serif;
}

.image-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.image-stack img {
  position: relative;
  transition: transform 0.3s;
  margin: 5px;
}

.image-stack img:hover {
  transform: scale(1.05);
}

.logo-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.facility-item {
  font-size: 20px;
  margin: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.facility-item i {
  font-size: 28px;
  color: #b58550;
}

/* Custom Styles */

.service-list {
  gap: 23px;
  flex-wrap: wrap;
}

.service-list .badge {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}



.hotel-service-section p {
  font-size: 14px;
  color: #ab8965;
  line-height: 1.6;
  text-align: center;
}

.service-image {
  min-height: 250px;
  object-fit: cover;
}

.service-text {
  color: #ed7034;
  font-size: 18px;
  text-align: center;
  display: block;
  padding-top: 15px;
  padding-bottom: 6px;
}

/* about section */
.about-mission-section {
  padding: 0px 0px 0;

  position: relative;
}

.about-mission-section .button-color a {
  border: 1px solid #a64d4d !important;
  background-color: transparent;
  color: #a64d4d !important;
  padding: 10px 15px;
  text-decoration: none;
}

.button-color {
  padding-top: 30px;
}

.about-text h2,
.mission-text h2 {
  font-size: 28px;
  font-weight: bold;

}

.about-text p,
.mission-text p {
  font-size: 16px;

  padding-right: 80px;
  line-height: 28px;
  margin-top: 30px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  object-fit: cover;

}

.image-container .img-top {
  margin-bottom: 65px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.second_banner {
  background: #fff5ed;
  ;
  width: 34%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: 0;
  top: 0;
}

.image-content {
  z-index: 1;
}

.img-top {
  margin-top: 65px;
}

.border-line1::after {
  display: block;
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  left: 5%;
  border: 4px solid transparent;
  border-bottom: 0;
  border-top-color: #a64d4d;
  ;
  top: auto;
  margin-top: 8px;
}

.o-video {
  width: 100%;
  height: 0;
    position: relative;
    padding-top: 43.25%;
}
.o-video > iframe {
  width: 100%;
  height: 90vh;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}
#rooms {
    margin-top: 50px;
}



/* videosection */
/* .video-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    cursor: pointer;
    background-image: url("images/rooftop.jpg");
    height: 100vh;
    background-repeat: no-repeat;
}
.video-thumbnail {
    width: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(37 37 37);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.play-button:hover {
    background: rgb(209 187 114);
} */

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 00px auto;
  cursor: pointer;
}

.thumbnail {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  height: 100vh;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.video-container video {
  width: 100%;
  display: none;
  height: 100vh;
}

.video-thumbnail {
  width: 100%;
  max-width: 600px;
  cursor: pointer;
  display: block;
  margin: auto;
}

.video-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-container video {
  width: 80%;
  max-width: 900px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/*booking button*/
.booking-form {
  max-width: 600px;
  margin: 50px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 5px;
}

.btn-custom {
  background-color: #007bff;
  color: white;
  font-size: 18px;
  border-radius: 5px;
  padding: 10px;
}

.btn-custom:hover {
  background-color: #0056b3;
}

.book-now {
  border: 1px solid #fff !important;
  color: #fff !important;
  font-size: 20px !important;
  text-transform: uppercase;
  padding: 10px 20px !important;
  width: auto !important;
  display: inline-block !important;
  text-decoration: none;
}


/*booking*/
.booking-page {
  padding: 50px 15px;
}

.booking-summary {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.booking-summary h5 {
  margin-bottom: 20px;
  font-weight: bold;
}

.booking-summary .summary-detail {
  margin-bottom: 10px;
}

.form-control,
.form-select {
  border-radius: 6px;
}

.section-title {
  border-bottom: 2px solid #a52a2a;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: #a52a2a;
  color: #fff;
  border: none;
}

.submit-btn:hover {
  background-color: #8b1a1a;
}

.apply-btn {
  background-color: #a52a2a;
  color: #fff;
}

.apply-btn:hover {
  background-color: #8b1a1a;
}

.choose-room {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.booking-banner {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed3.jpeg);
  height: 400px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-position: center;
  background-size: cover;
}

.booking-banner h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}

.booking-banner p {
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
}

.btn-offer {
  background-color: #ab8965;
  ;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
}

.booking-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: -50px auto 30px;
  z-index: 9;
  position: relative;
}

.booking-form h2 {
  text-align: center;
  color: #675646;
  font-size: 26px;
  margin-bottom: 20px;
}

.form-control {
  border-radius: 5px;
}

.btn-check-availability {
  background-color: #ab8965;
  color: white;
  font-size: 18px;
  width: auto;
  padding: 10px 20px;
  border-radius: 50px;
}

.btn-check-availability:hover {
  background-color: #ab8965;
}

.banner-button {
  display: flex;

}

.about-form input,
.about-form select {
  width: 100%;
  background: #F5F6F6;
  border-radius: 10px;
  border: none;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  padding: 16px 16px 16px 16px;
  opacity: .7;
}

.about-form label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: #53545A;
  padding: 6px 0;
  margin-bottom: 0px;
}

.asterick {
  font-size: 13px;
  color: #EF3061;
}

.form-head {
  display: flex;
}

.form-head {
  font-size: 24px;
  line-height: 32px;
  background: #fff;
}


/*footer section*/
.footer-top-block {
  background-color: #a64d4d;
  padding: 20px 0;
}

.main-heading-28 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
}

.news-form {
  font-size: 28px;
  line-height: 38px;
  letter-spacing: .02em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  text-transform: uppercase;
}

.footer-section .footer-form {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-form .btn {
  background-color: #fff;
  color: #c3573f;
  padding: 16px 10px;
  line-height: 11px;
  font-size: 16px;
  border-radius: 0;
  min-width: 120px;
  border: 0;
  font-weight: 500;
  border: 2px solid transparent;
}

.footer-main {
  background: #252525;
}

.foot-para {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #fff;

  text-decoration: none;
}

.paragraphs {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin: 0;
  font-family: 'Matter', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-main {
  padding: 85px 0 0;
  position: relative;
  z-index: 2;
}

.copyright-block {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  background: #252525;
}

.anchorArrow {
  background: url(./images/arrowright-image.png) no-repeat;
  background-size: 18px;
  background-position: -1% 8px;
  padding-left: 20px;
  text-decoration: none;
}

.footer-head {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #fff;
}

.listing {
  margin-bottom: 8px;
}

.main-logo {
  WIDTH: 100%;
  HEIGHT: auto;
}

.hotel-news {
  color: #fff;
}

.hotel-news h3 {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

input#phone_number {
  background-color: rgb(37 37 37);
  height: 33px;
  color: rgb(105, 104, 93);
  vertical-align: middle;
  width: 80.8989%;
  float: left;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(50, 49, 43);
  border-image: initial;
  padding: 0px 10px;
  transition: 0.3s ease-out;
}

button.btn.btn-brown {
  height: 33px;
  line-height: 31px;
  vertical-align: middle;
  width: 19.1011%;
  font-family: "open Sans";
  font-size: 13px;
  color: rgb(184, 181, 160);
  cursor: pointer;
  background-color: rgb(50, 49, 43);
  padding: 0px;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 0px;
}

p.copright-txt.text-center {
  color: #fff;
}

a.text-green {
  color: #fff;
  text-decoration: none;
}

.footer-section .share i {
  color: #fff;
  font-size: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  margin-right: 9px;
  width: 30px;
  height: 30px;
  justify-content: center;
  display: flex;
  font-size: 15px;
  align-items: center;
  padding: 0;
  transition: 0.3s;
}

.footer-section .share a {
  z-index: 111;
  margin-bottom: 6px;
  text-decoration: none;
}

.footer-section .share {
  display: flex;
  z-index: 11;
  flex-wrap: wrap;
}

.footer-section .share .facebook i:hover {
  background: #4267B2;
  border: 1px solid #4267B2;
  color: #fff;
}

.footer-section .share .instagram i:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
}

.footer-section .share .twitter i:hover {
  background: #1DA1F2;
  border: 1px solid #1DA1F2;
  color: #fff;
}

.footer-section .share .pinterest i:hover {
  background: #c8232c;
  border: 1px solid #c8232c;
  color: #fff;
}

.footer-section .share .youtube i:hover {
  background: red;
  border: 1px solid red;
  color: #fff;
}

/* reservation */
.reservation h2 {
  font-size: 20px;
  font-weight: 600;


}

.input-group button {
  background-color: #b58550;
  color: white;
}

.input-group input {
  max-width: 60px;
}

.reservation .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

.reservation {
  margin-top: -193px;
  z-index: 999;
  position: relative;
}

.reser-text {
  background-color: #fff5ed;


  align-items: center;
  padding-top: 15px;
  padding-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: row;


  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 1;
  justify-content: center;
  width: 80% !important;
}

.check {
  font-size: 14px;
  color: #181818;
}

.avail {
  font-size: 12px !important;
  background-color: #02010100 !important;
  color: #a64d4d !important;
  border-style: solid !important;
  border-width: 1px;
  border-color: #a64d4d !important;
  padding: 9px !important;
  margin-top: 22px;
}

.number-count {
  max-width: 44px !important;
  font-size: 12px !important;
  padding-right: 0px !important;
}

.number-count-label {
  background-color: #a64d4d !important;
  color: white !important;
  border-color: #a64d4d !important;
}

/*room page*/
.standard-room {
  background-image: url(images/standardroom.jpg);
  height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.standard-text {
  font-size: 50px;
  font-weight: 400;
}

.basic-information-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.basic-information-list .info {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.basic-information-list .info .info-icon {
  color: #ab8965;
  height: 18px;
}

.card {
  padding: 50px 45px 55px;

  transition: opacity 0.3s;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: none !important;
}

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 1s ease-in-out, opacity 0.5s ease;
  flex-direction: column;
  overflow: hidden;
}

#preloader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
  z-index: 2;
}

#preloader img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

#preloader h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 6.5rem;
  font-weight: bold;
  animation: slideIn 3s ease;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#main-content {
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.move-up {
  transform: translateY(-100%);
  opacity: 0;
}

body {
  font-family: sans-serif;
}

h1 {
  margin: 40px 0;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

/*.container{*/
/*  margin:0 auto;*/
/*  padding:100px 0;*/
/*  max-width:480px;*/
/*  width:calc(100% - 40px);*/
/*}*/

.video__wrapper {
  margin: 20px 0;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 65px;
  height: 100vh;
}

video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
  height: 100vh !important;
}

.video__play-button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-appearance: none;
  z-index: 2;
  transition: all 200ms ease-in-out;
}

.video__play-button-icon {
  width: 7%;
  transition: all 200ms ease-in-out;
  display: inline-block;
}

svg.video__play-button-icon.video__play-button-icon--play {
  display: inline-block;
}

.video__play-button-icon--play polygon {
  transform-origin: 50% 50%;
  transition: all 200ms ease-in-out;
}

.video__play-button-icon--play:hover polygon {
  transform: scale(1.5);
}

.video__play-button[data-button-state="pause"] .video__play-button-icon--pause {
  display: none;
}

.video__play-button[data-button-state="play"] .video__play-button-icon--play {
  display: none;
}

.video__play-button[data-button-state="play"] .video__play-button-icon {
  opacity: 0;
}

.video__play-button[data-button-state="play"]:hover .video__play-button-icon {
  opacity: 1;
}

.video__play-button[data-button-state="play"] {
  background-color: rgba(0, 0, 0, 0);
}

.video__play-button[data-button-state="play"]:hover {
  background-color: rgba(0, 0, 0, .4);
}

.video__fullscreen-button {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  z-index: 3;
  transition: all 200ms ease-in-out;
}

.video__fullscreen-icon {
  padding: 10px;
  display: block;
  vertical-align: top;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in-out;
}

.video__wrapper[data-state="pause"] .video__fullscreen-icon,
.video__wrapper[data-state="play"]:hover .video__fullscreen-icon {
  opacity: 1;
  visibility: visible;
}

.video__fullscreen-icon polygon {
  fill: currentColor;
}

/* galary*/
::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

#bg-img {
  background-image: url(https://images.pexels.com/photos/6397625/pexels-photo-6397625.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);
  background-size: cover;
}

#intro-container {
  height: 400px;
  padding: 50px;
  margin-bottom: 20px;
  vertical-align: center;
  backdrop-filter: blur(1px);
  border-bottom: 1px solid black;
  border-top: 1px solid black;
}

#intro {
  width: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  background-color: rgba(167, 164, 173, 0.9);
  border: 1px solid rgba(25, 55, 53, 1);
  backdrop-filter: sepia(90%);
}

#intro h2 {
  font-family: "EB Garamond", serif;
  font-size: 35px;
  color: black;
}

#intro p {
  color: black;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#intro a {
  color: black;
  font-size: 35px;
  font-family: "EB Garamond", serif;
  text-decoration: none;
}

/*#rooms {*/
/*	color: #fffde4;*/
/*	font-family: "EB Garamond", serif;*/
/*	font-size: 40px;*/
/*	margin-left: auto;*/
/*	margin-right: auto;*/
/*	width: 300px;*/
/*	height: 60px;*/
/*	text-align: center;*/
/*	margin-bottom: 35px;*/
/*}*/
#rooms {

  font-family: "EB Garamond", serif;

}
.rooms-section{
    margin-bottom:80px;
}

#photo-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#row-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 50px;
}

#row-2 {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 50px;
}

.img-container img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: sepia(90%);
  filter: sepia(90%);
  transition: 2s;
  min-height: 350px;
  object-fit: cover;
}

#photo-gallery img:hover {
  -webkit-filter: none;
  filter: none;
}

.img-container:hover {
  width: 30%;
  max-height: 80%;
}

.img-container {
  position: relative;
  width: 20%;
  transition: 1.5s;
}

.img-container:hover .overlay {
  opacity: 1;
}

.overlay {
  position: absolute;
  height: 24%;
  bottom: 0;
  width: 98.5%;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  transition: 0.5s ease;
  opacity: 0;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
  text-align: center;
  overflow: auto;
}

.overlay h4 {
  font-size: 20px;
  font-family: "Merienda", cursive;
}

.overlay p {
  font-size: 15px;
  font-family: "EB Garamond", serif;
}


/* contact page */

.contactus-form form {
  box-shadow: 0 0 96px rgb(0 0 0 / 10%);
  padding: 36px;
  border-radius: 20px;
  margin-left: auto;
}

.person-head {
  font-size: 36px;
  line-height: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-form {
  padding: 17px;
  width: 100%;
  border-radius: 5px;
  border: 1.5px solid rgb(10 20 47 / 30%);
  resize: none;
}

.contact_form-block h2 {
  margin-bottom: 25px;
  font-size: 30px;
}

.booking-banner p {
  width: 100%;
  max-width: 50%;
}

.contact-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed1.jpeg);
}

.room-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed3.jpeg);
}

.room-banner p {
  width: 100%;
  max-width: 34%;
  font-size: 26px;
  line-height: 33px;
}

.gallary-banner {
  background-color: #463e37;
  background-image: none;
  height: 300px;
}

.contactus-form {
  margin-top: 60px;
  margin-bottom: 60px;
}

.con-icon {
  max-width: 50px;
  min-width: 50px;
  height: 50px;
  background: #FFF;
  width: 100%;
  display: flex;
  box-shadow: 0 4px 14px rgb(0 0 0 / 15%);
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  margin-right: 2px;
  margin-bottom: 10px;
}

.google-business1 i.fa-brands.fa-google {
  color: black;
}

.google-business1 a {
  text-decoration: none;
}

button.btn.button-btn.primary-btn.submit-button {
  min-width: 152px;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
  padding: 12px 10px;
  background-color: #a64d4d;
  color: white;
}

.con_para h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
  text-transform: capitalize;
}

.con_para p {
  font-size: 20px;
  max-width: 537px;
}

.con_icon {
  display: flex;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #a64d4d;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  position: relative;
  top: -3px;
}

.con_info_list {
  display: flex;
  margin-bottom: 20px;
}

.con_innr_content a,
.con_innr_content p {
  color: #333;
  font-size: 20px;
  text-decoration: none;
}

/* contact page end*/

/*gallary page*/
.gallary-content {
  height: 100vh;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1248px;
  margin: auto;
}

.image-cont {
  width: 33%;
  user-select: none;
}

.image-con {
  width: 100%;
  cursor: pointer;
  transition: filter, transform .15s ease-in-out;
  min-height: 280px;
}

.image-con:hover {
  filter: brightness(70%);
  transform: scale(1.03);
}

.image-open {
  position: absolute;
  align-self: center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.image-open .image-con:hover {
  filter: brightness(100%);
  transform: scale(1);
}

.image-open .image-con {
  cursor: auto;
  width: 80%;
}

.arrow-hidden,
.close-hidden {
  display: none;
}

#arrow-left,
#arrow-right {
  z-index: 1;
  position: absolute;
  cursor: pointer;
  transform: scale(0.7);
}

#arrow-left {
  left: 20px;
}

#arrow-right {
  right: 20px;
}

#close-element {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 40px;
}

/*rooms page*/
.divider {
  width: 80px;
  height: 4px;
  background-color: #fff;
  margin: 15px auto;
  border-radius: 2px;
}

.room-card {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin: 30px auto;
  max-width: 1100px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: scale(1.02);
}

.carousel {
  flex: 1;
  height: 300px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-info {
  flex: 1;
  padding: 25px;
}

.room-title {
  font-size: 2em;
  margin-bottom: 8px;
  color: #333;
}

.price {
  font-size: 1.5em;
  color: #a64d4d;
  margin: 5px 0;
}

.description {
  margin: 15px 0;
  line-height: 1.5;
  color: #666;
}

.view-more {
  background-color: #a64d4d;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 6px;
  display: inline-flex;
}

.view-more:hover {
  background-color: #922f2f;
}

.room-card1 {
  margin: 80px auto;
}

/*about page*/
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #fff;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-image {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  /* max-width: 213px; */
  border-radius: 0px;
  min-height: 400px;
}

.about-content {
  flex: 1 1 400px;
  padding: 20px 40px;
}

.about-content h2 {
  font-size: 2em;
  color: #a64d4d;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.8;
  font-size: 1.1em;
  color: #555;
}

.about-tagline {
  text-align: center;
  font-size: 1.3em;
  margin-top: -20px;
  padding: 0 20px 20px;
  color: #fff;
  font-weight: 300;
}

/* single page css*/
.room-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  gap: 40px;
  background-color: #fff;
  border-radius: 12px;
}

.room-summary {
  flex: 2;
}

.room-summary h2 {
  margin-bottom: 10px;
  color: #a64d4d;
}

.icons {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  color: #777;
}

.icons i {
  margin-right: 5px;
}

.room-summary p {
  line-height: 1.6;
  color: #555;
}

.booking-box {
  flex: 1;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  background-color: #fafafa;
}

.price {
  color: #a64d4d;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 20px;
}

.booking-box label {
  display: block;
  margin: 10px 0 5px;
  color: #555;
}

.booking-box select,
.booking-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.booking-box button {
  width: 100%;
  background-color: #a64d4d;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}

.services-amenities {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.8em;
  color: #a64d4d;
  margin-bottom: 15px;
  border-bottom: 2px solid #a64d4d;
  display: inline-block;
  padding-bottom: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 24px;
  color: #a64d4d;
  margin-bottom: 10px;
}

.service-card h4 {
  margin: 10px 0 5px;
  color: #333;
}

.service-card p {
  color: #777;
  font-size: 14px;
}

.regal-banner {
  position: relative;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed1.jpeg);
  height: 400px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-position: center;
  background-size: cover;
}

.service-banner {
  .regal-banner {
    position: relative;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed3.jpeg);
    height: 400px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-position: center;
    background-size: cover;
  }
}

.regal-banner h1 {
  font-size: 50px;
  font-weight: bold;
  margin: 0;
}

.standard-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed2.jpeg);
}

.premium-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url(./images/bed2.jpeg);
}

.regal-banner p {
  font-size: 18px;
  margin-top: 10px;
}

/* room booking*/


.filter-bar {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.filter-bar span {
  font-weight: 600;
  margin-right: 10px;
}

.room-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.room-img {
  border-radius: 8px;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.price-tag {
  color: #b12704;
  font-size: 1.1rem;
  font-weight: bold;
}

.btn-book {
  background-color: #b12704;
  color: white;
  font-size: 14px;
}

.btn-book:hover {
  background-color: #8e1e02;
}

.room-icons i {
  margin-right: 6px;
}

.modify-btn {
  border: 1px solid #b12704;
  color: #b12704;
  font-weight: 600;
}

.modify-btn:hover {
  background-color: #b12704;
  color: white;
}

/*service*/
.service-card-sec {
  max-width: 1180px;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
}

.card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  background: linear-gradient(#ffffff 50%, #a64d4d 50%);
  background-size: 100% 200%;
  background-position: 0 2.5%;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
}

.column-service {
  padding-bottom: 50px;
}

.column-service h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  text-align: center;
}

.column-service p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
}

.column-service .icon-wrapper {
  background-color: #a64d4d;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  margin-bottom: 10px;

}

.card:hover {
  background-position: 0 100%;
}

.card:hover .icon-wrapper {
  background-color: #ffffff;
  color: #a64d4d;
}

.card:hover h3 {
  color: #ffffff;
}

.card:hover p {
  color: #f0f0f0;
}







/* .fig-open{
  display:block;
  color: white;
  position: absolute;
  bottom: 65px;
} */
/*gallary page ends*/
/*media*/

@media screen and (min-width: 768px) {

  .column-service {
    flex: 0 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px) {

  .column-service {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (max-width: 1180px) {

  .service-card-sec {
    margin-left: 15px;
    margin-right: 15px;
  }
  .banner-overlay {
    height: 70vh;
  }
    .banner {
    height: 70vh;
  }
.reservation {
    margin-top: 0px;
}

}

@media (max-width: 1180px) {

  .booking-banner h1 {
    font-size: 32px;

  }

  .booking-banner p {
    width: 100%;
    max-width: 80%;
    font-size: 16px;
  }

  .booking-banner {
    height: 314px;
  }
  .room-banner p {
    line-height: 28px;
}
}

@media (max-width: 768px) {
  #preloader h1 {
    font-size: 3.5rem;
  }

  .col-md-8,
  .col-md-4 {
    width: 100%;
  }
    .hotel {
    font-size: 2.8rem;

}
.banner-overlay {
    padding: 15px;
}
.reser-text{
    width:90% !important;
}
.second_banner {
    display: none;
}
.about-text p, .mission-text p {
    font-size: 16px;
    padding-right: 0px;
}
.image-container .img-top {
    margin-bottom: 0px;
    margin-top: 35px;
}
}




/* For mobile phones */
@media (max-width: 480px) {
  #preloader h1 {
    font-size: 3.5rem;
    text-align: center;
  }

  #preloader img {
    height: 100vh;
    object-fit: cover;
  }
.number-count {
    max-width: 100% !important;

}
#rooms {
    margin-top: 35px;
}
#row-1 {
    gap: 8px;
}
  .container {
    padding: 10px;
  }
  .hotel {
    font-size: 2rem;

}
.banner-overlay {
    padding: 10px;
}
.o-video {
    padding-top: 80%;
}
.o-video > iframe {
    width: 100%;
    height: 50vh;
}
.img-container {
    width: 40%;
}
.img-container img {
    min-height: 250px;
}
.img-container:hover {
    width: 50%;
    max-height: 50%;
}
}