/* google "Assistant" font */
@import url("https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Assistant:wght@200..800&display=swap");

/* global css start  */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Assistant", sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  font-weight: 400;
}

a {
  color: #000000;
  text-decoration: none;
}

p {
  margin: 0;
}

span,
sub,
sup,
a {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
button {
  border: 0;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  transition: all ease 0.3s;
  background-color: transparent;
  font-family: "Assistant", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.3;
  font-family: "Assistant", sans-serif;
  color: #000000;
}

h2 {
  font-size: 34px;
}

@media (max-width: 991px) {
  h2 {
    font-size: 28px;
  }
}

.container {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* global css end */
/* header part start */
.header-area {
  padding-block: 36px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all ease 0.3s;
}

.header-area .logo-white {
  display: none;
}

.header-area.header-dark,
.header-area.sticky {
  background-color: rgba(0, 0, 0, 0.5215686275);
  box-shadow: -4.902px 7.548px 12.22px 0.78px rgba(0, 0, 0, 0.23);
  padding-block: 27px;
}

.header-area.header-dark .logo-white,
.header-area.sticky .logo-white {
  display: block;
}

.header-area.header-dark .logo-dark,
.header-area.sticky .logo-dark {
  display: none;
}

.header-area.header-dark .toggler li,
.header-area.sticky .toggler li {
  background-color: #fff;
}

.header-area.header-dark .lang-content a,
.header-area.sticky .lang-content a {
  color: #fff;
}

.header-area.homepage-header .booking-engine {
  display: none;
}

.header-area.homepage-header.sticky .booking-engine {
  display: block;
}

.nav-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-content-wrapper .left-content {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.toggler {
  cursor: pointer;
  transition: all ease 0.3s;
}

.toggler li {
  width: 40px;
  height: 2px;
  background-color: #000000;
  line-height: 1;
  transition: all ease 0.3s;
}

.toggler li:not(:last-child) {
  margin-bottom: 4px;
}

.toggler.active li:first-child {
  transform: rotate(-45deg) translate(-10px, 1px);
  width: 30px;
}

.toggler.active li:last-child {
  transform: rotate(45deg) translate(-7px, 1px);
  width: 30px;
}

.toggler.active li:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.main-menu {
  gap: 30px;
  display: flex;
  transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}

.main-menu.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  display: flex;
}

.main-menu li a {
  font-weight: 400;
  position: relative;
  color: #fefefe;
}

@media (max-width: 1300px) {
  .main-menu li a {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .main-menu li a {
    font-size: 13px;
  }
}

.main-menu li a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  height: 2px;
  width: 0;
  background-color: transparent;
  transition: all ease 0.3s;
}

.main-menu li a:hover {
  font-weight: 700;
  color: #ffbe98;
}

.main-menu li a:hover::before {
  background-color: #ffbe98;
  width: 100%;
}

.main-menu li a.active {
  font-weight: 700;
  color: #ffbe98;
}

.main-menu li a.active::before {
  width: 100%;
  background-color: #ffbe98;
}

@media (max-width: 1300px) {
  .main-menu {
    gap: 15px;
  }
}

@media (max-width: 991px) {
  .main-menu {
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 50px;
    text-align: center;
    transform: scale(1);
    transform: translateX(-100%);
    height: 100dvh;
  }

  .main-menu li:not(:last-child) {
    margin-bottom: 5px;
  }

  .main-menu li a {
    font-size: 16px;
    color: #000;
  }
}

.logo a {
  display: block;
}

.logo img {
  max-width: 230px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1300px) {
  .logo img {
    max-width: 200px;
  }
}

@media (max-width: 1200px) {
  .logo img {
    max-width: 180px;
  }
}

@media (max-width: 991px) {
  .logo img {
    max-width: 135px;
  }
}

.booking-engine {
  width: 775px;
  position: absolute;
  left: 50%;
  transform: translateX(-60%);
  transition: all ease 0.5s;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1200px) {
  .booking-engine {
    transform: translateX(-58%);
  }
}

@media (max-width: 1100px) {
  .booking-engine {
    width: 600px;
  }
}

.booking-engine img {
  vertical-align: middle;
  width: 100%;
}

.main-menu.active~.booking-engine {
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

@media (max-width: 991px) {
  .booking-engine {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    width: 100%;
    transform: translateX(0%);
    z-index: 100;
    display: block;
    transition: all 0.3s ease;
  }

  .booking-engine.open {
    bottom: 0%;
  }

  .booking-engine img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .header-area {
    padding-block: 16px;
  }

  .header-area.sticky,
  .header-area.header-dark {
    padding-block: 16px;
  }

  .header-area .toggler li {
    width: 30px;
  }
}

/* header part end */
/* hero area start */
.hero-area {
  height: 780px;
  overflow: hidden;
  position: relative;
}

.hero-area.inner-hero {
  height: 570px;
}

@media (max-width: 991px) {
  .hero-area {
    height: 210px;
  }

  .hero-area.inner-hero {
    height: 450px;
  }
}

.hero-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-area .book-area {
    display: none;
  }
}

.hero-area .book-area img {
  animation: none;
}

.mobile-book-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #23ade0;
  padding: 20px;
  cursor: pointer;
  transition: all ease 0.3s;
  font-weight: 600;
}

@media (min-width: 992px) {
  .mobile-book-btn {
    display: none;
  }
}

.mobile-book-btn:hover {
  background-color: #ffbe98;
  color: #0d0d0d;
}

/* hero area end */
/* book area start */
.book-area {
  max-width: 970px;
  height: 82px;
  margin-inline: auto;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.book-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* book area end */
/* hotel area start */
.hotel-area {
  padding-block: 85px;
}

.hotel-area .slick-dots {
  bottom: 20px;
}

.hotel-area .slick-dots li button {
  width: 25px;
  height: 4px;
  background-color: #f3f3f4;
  padding: 0;
}

.hotel-area .slick-dots li button::before {
  display: none;
}

.hotel-area .slick-dots li.slick-active button {
  background-color: #073e61;
}

.section-top-content {
  max-width: 650px;
  margin-inline: auto;
  text-align: center;
}

.section-top-content h2 {
  margin-bottom: 40px;
  padding-bottom: 55px;
  position: relative;
  font-weight: 400;
}

.section-top-content h2 img {
  max-width: 350px;
}

.section-top-content h2::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #000;
}

.room-wrapper {
  position: relative;
  padding-right: 260px;
}

.room-slider {
  max-width: 1176px;
  margin-top: 100px;
}

.room-slider .room-slider-item {
  width: 100%;
  height: 100%;
  max-width: 1176px;
  height: 606px;
}

.room-slider .room-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.room-content {
  position: absolute;
  top: 26%;
  right: 0;
  background: linear-gradient(-139deg, rgb(83, 202, 245) 0%, rgb(2, 6, 18) 99%);
  padding: 50px;
  max-width: 485px;
}

.room-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.room-content p {
  color: #fff;
  margin-bottom: 55px;
}

@media (max-width: 991px) {
  .hotel-area .slick-dots {
    bottom: 50px;
  }

  .room-slider {
    margin-top: 48px;
  }

  .room-slider .room-slider-item {
    height: 300px;
  }

  .hotel-area {
    padding-block: 60px;
  }

  .hotel-area .container {
    padding-inline: 0;
  }

  .hotel-area .section-top-content {
    padding-inline: 20px;
  }

  .room-wrapper {
    padding-right: 0;
  }

  .section-top-content h2 {
    margin-bottom: 35px;
    padding-bottom: 40px;
  }

  .section-top-content h2 img {
    max-width: 230px;
  }

  .room-content {
    margin-inline: 20px;
    position: initial;
    transform: translateY(0);
    margin-top: -80px;
    padding: 35px 20px 30px;
  }

  .room-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .room-content p {
    margin-bottom: 36px;
  }
}

/* hotel area end */
/* button start */
.btn-primary {
  font-size: 14px;
  color: #fff;
  text-align: center;
  background-color: #23ade0;
  min-width: 126px;
  padding: 11px;
  cursor: pointer;
  transition: all ease 0.3s;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #ffbe98;
  color: #0d0d0d;
}

/* button end */
/* enjoy spa area start */
.enjoy-spa-area {
  padding-block: 90px;
}

.spa-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 110px;
}

.spa-content {
  /* max-width: 380px; */
  max-width: 568px;
}

.spa-content h2 {
  margin-bottom: 20px;
  font-weight: 400;
}

.spa-content p {
  margin-bottom: 50px;
}

.spa-thumb {
  /* width: 940px; */
  width: 752px;
  height: 506px;
}

.spa-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .enjoy-spa-area {
    padding-block: 60px;
  }

  .enjoy-spa-area .container {
    padding-inline: 0;
  }

  .spa-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 36px;
    align-items: start;
  }

  .spa-content {
    padding-inline: 20px;
    max-width: 420px;
    padding-left: 40px !important;
    padding-right: 40px;
  }

  .spa-content p {
    margin-bottom: 35px;
  }

  .spa-thumb {
    width: 100%;
    height: 300px;
  }
}

/* enjoy spa area end */
/* dinning area start */
.uniqe-dinning-area {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .uniqe-dinning-area .container {
    padding: 0;
  }
}

.dinning-wrapper {
  position: relative;
  padding-left: 260px;
}

@media (max-width: 991px) {
  .dinning-wrapper {
    padding-left: 0;
  }
}

.dinning-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(-139deg, rgb(83, 202, 245) 0%, rgb(2, 6, 18) 99%);
  padding: 50px;
  max-width: 485px;
}

.dinning-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.dinning-content p {
  color: #fff;
  margin-bottom: 55px;
}

.btn-more-details {
  color: #f3f3f4;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  gap: 30px;
  transition: all ease 0.3s;
}

.btn-more-details img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(500%);
  transition: all ease 0.3s;
}

.btn-more-details:hover {
  color: #ffbe98;
}

.btn-more-details:hover img {
  filter: brightness(100%);
}

.dinning-thumb {
  max-width: 1176px;
  height: 606px;
  margin-left: auto;
}

.dinning-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .btn-more-details {
    font-size: 16px;
    gap: 16px;
  }

  .uniqe-dinning-area {
    padding-block: 60px;
  }

  .dinning-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .dinning-thumb {
    height: 300px;
    width: 100%;
  }

  .dinning-content {
    margin-inline: 20px;
    position: initial;
    transform: translateY(0);
    margin-top: -80px;
    padding: 35px 20px 30px;
  }

  .dinning-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .dinning-content p {
    margin-bottom: 36px;
  }
}

/* dinning area end */
/* special offer area start */
.special-offer-area {
  padding-block: 80px;
  overflow: hidden;
}

@media (max-width: 1580px) {
  .special-offer-area .container {
    padding-inline: 80px;
  }
}

@media (max-width: 1580px) and (max-width: 991px) {
  .special-offer-area .container {
    padding-inline: 20px;
  }
}

@media (max-width: 1580px) and (max-width: 991px) {
  .special-offer-area {
    padding-block: 60px;
  }
}

.section-title {
  margin-bottom: 30px;
}

.section-title h2 {
  font-weight: 400;
}

.special-offer-slider {
  margin-inline: -23px;
}

.special-offer-slider .slick-arrow {
  position: absolute;
  top: 29%;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #23ade0;
  z-index: 10;
  cursor: pointer;
  transition: all ease 0.2s;
}

.special-offer-slider .slick-arrow path {
  transition: all ease 0.2s;
}

.special-offer-slider .slick-arrow:hover {
  border-color: #ffbe98;
}

.special-offer-slider .slick-arrow:hover path {
  fill: #ffbe98;
}

@media (max-width: 991px) {
  .special-offer-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.special-offer-slider .slick-arrow svg {
  transform: scale(1.3);
}

.special-offer-slider .slick-arrow.slick-left-arrow {
  left: -35px;
}

@media (max-width: 991px) {
  .special-offer-slider .slick-arrow.slick-left-arrow {
    left: 35px;
    background-color: #fff;
  }
}

.special-offer-slider .slick-arrow.slick-right-arrow {
  left: auto;
  right: -35px;
}

@media (max-width: 991px) {
  .special-offer-slider .slick-arrow.slick-right-arrow {
    right: 35px;
    background-color: #fff;
  }
}

.s-offer-item {
  padding-inline: 23px;
}

.s-offer-item__thumb {
  width: 100%;
  height: 362px;
  overflow: hidden;
}

.s-offer-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 1s;
}

.s-offer-item__content {
  padding: 10px;
  max-width: 380px;
}

.s-offer-item__content h3 {
  font-weight: 600;
  margin-bottom: 20px;
}

.s-offer-item__content p {
  font-size: 14px;
  margin-bottom: 35px;
}

.s-offer-item__content .btn-primary {
  min-width: 144px;
}

.s-offer-item:hover .s-offer-item__thumb img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .s-offer-item__thumb {
    height: 260px;
  }
}

/* special offer area end */
/* footer area start */
.footer-area {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #080808;
}

.footer-content-wrapper {
  text-align: center;
}

.footer-content-wrapper .footer-logo {
  margin-bottom: 60px;
}

.address-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
}

.address-content li {
  font-size: 14px;
  color: #fff;
}

@media (max-width: 500px) {
  .address-content li:nth-child(2) {
    display: none;
  }
}

.link-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-bottom: 50px;
}

@media (max-width: 400px) {
  .link-list {
    gap: 0px 15px;
    flex-wrap: wrap;
  }
}

.link-list li a {
  color: #fff;
  font-size: 12px;
}

.link-list li a:hover {
  color: #ffbe98;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-links li img {
  width: 16px;
}

/* footer area end */
/* special offer page css start */
.special-offer-page .section-top-content h2,
.room-amenitie-area .section-top-content h2,
.contact-form-area .section-top-content h2,
.room-gallery-area .section-top-content h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.special-offer-page .special-offer-area {
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
}

.special-offer-page .special-offer-area .container {
  padding-inline: 20px !important;
  position: relative;
  z-index: 1;
}

.special-offer-page .special-offer-pattern-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  z-index: 0;
}

.special-offer-page .special-offer-pattern-shape img {
  width: 100%;
  height: 100%;
}

.special-offer-wrapper {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 110px 32px;
}

.special-offer-wrapper .s-offer-item {
  padding-inline: 0;
}

@media (max-width: 991px) {
  .special-offer-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 36px;
  }

  .special-offer-page .special-offer-area {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .special-offer-wrapper {
    margin-top: 48px;
  }
}

/* special offer page css end */
/* contact form area start */
.contact-form-area {
  padding-top: 90px;
  padding-bottom: 60px;
}

.contact-form-area .section-top-content p {
  margin-bottom: 32px;
}

.contact-form-area .section-top-content ul li:not(:last-child) {
  margin-bottom: 6px;
}

.contact-form {
  background-color: #fff4e2;
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 90px;
  padding: 70px 75px;
  padding-bottom: 60px;
}

.contact-form .form-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 110px;
}

.contact-form .form-group:not(:last-child) {
  margin-bottom: 35px;
}

.contact-form .form-group label {
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Alegreya Sans", serif;
  font-weight: 400;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  border: 1px solid transparent;
  height: 44px;
  padding: 16px;
  transition: all ease 0.3s;
  outline-color: #ffbe98;
  border-radius: 0px;
}

.contact-form .form-group textarea {
  height: 160px;
}

.contact-form .form-group.privacy-policy-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .form-group.privacy-policy-wrapper label {
  margin-bottom: 0;
  line-height: 1;
}

.contact-form .form-group #privacy-policy {
  width: 12px;
  margin: 0;
  border-radius: 0px;
}

.contact-form .button-wrapper {
  text-align: center;
  margin-top: 45px;
}

.contact-form .btn-primary {
  min-width: 360px;
  margin-inline: auto;
  font-weight: 600;
  font-size: 16px;
  padding-block: 14px;
}

@media (max-width: 991px) {
  .contact-form .form-group #privacy-policy {
    height: 12px;
  }

  .contact-form .form-group:not(:last-child) {
    margin-bottom: 20px;
  }

  .contact-form .form-group label {
    margin-bottom: 4px;
  }

  .contact-form {
    padding: 40px 20px;
    margin-top: 48px;
  }

  .contact-form-area {
    padding-top: 60px;
  }

  .contact-form .form-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
  }

  .contact-form .btn-primary {
    min-width: 100%;
  }

  .contact-form .button-wrapper {
    margin-top: 36px;
  }
}

/* contact form area end */
/* google map area start */
.google-gap iframe {
  display: block;
}

/* google map area end */
/* about area start */
.about-area {
  padding-top: 140px;
  padding-bottom: 85px;
}

.about-wrapper {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.about-content {
  width: calc(100% - 386px);
  padding-right: 50px;
}

.about-content p {
  font-size: 16px;
  max-width: 700px;
}

.about-content p:not(:last-child) {
  margin-bottom: 28px;
}

.about-content .about-top-content {
  margin-bottom: 30px;
  padding-bottom: 35px;
  position: relative;
  max-width: 550px;
}

.about-content .about-top-content::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background-color: #000000;
}

.about-content .about-top-content h2 {
  font-weight: 400;
  margin-bottom: 10px;
}

.about-content .about-top-content p {
  font-size: 18px;
}

.about-thumb {
  width: 386px;
  height: 532px;
}

.about-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-area {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .about-wrapper {
    flex-wrap: wrap;
    gap: 48px;
  }

  .about-content {
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* about area end */
/* our room area start */
.our-room-area {
  background-color: #fff5e4;
  padding-bottom: 140px;
  padding-top: 70px;
  position: relative;
}

.our-room-area .container {
  position: relative;
  z-index: 1;
}

.our-room-area img {
  width: 79%;
  height: 506px;
  -o-object-fit: cover;
  object-fit: cover;
}

.our-room-area .btn-more-details img {
  width: 18px;
  height: 18px;
}

.our-room-area .room-content {
  right: 20px;
  top: 34%;
}

.our-room-area .room-content h3 {
  font-weight: 400;
}

.our-room-top-content {
  margin-bottom: 35px;
}

.our-room-top-content h2 {
  font-weight: 400;
}

@media (max-width: 991px) {
  .our-room-top-content {
    padding-inline: 20px;
  }

  .our-room-area img {
    width: 100%;
    height: 300px;
  }

  .our-room-area .container {
    padding-inline: 0;
  }

  .our-room-area {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

/* our room area end */
/* dinning area start */
.dinning-area {
  background-color: #fff5e4;
  padding-top: 90px;
  padding-bottom: 135px;
}

.dinning-content-wrapper,
.gallery-content-wrapper {
  text-align: center;
  margin-inline: auto;
  max-width: 700px;
  margin-bottom: 90px;
}

.dinning-content-wrapper p,
.gallery-content-wrapper p {
  font-size: 16px;
  max-width: 700px;
}

.dinning-content-wrapper p:not(:last-child),
.gallery-content-wrapper p:not(:last-child) {
  margin-bottom: 28px;
}

.dinning-content-wrapper .dinning-top-content,
.dinning-content-wrapper .gallery-top-content,
.gallery-content-wrapper .dinning-top-content,
.gallery-content-wrapper .gallery-top-content {
  margin-bottom: 30px;
  padding-bottom: 35px;
  position: relative;
  max-width: 550px;
  margin-inline: auto;
}

.dinning-content-wrapper .dinning-top-content::before,
.dinning-content-wrapper .gallery-top-content::before,
.gallery-content-wrapper .dinning-top-content::before,
.gallery-content-wrapper .gallery-top-content::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 1px;
  background-color: #000000;
}

.dinning-content-wrapper .dinning-top-content h2,
.dinning-content-wrapper .gallery-top-content h2,
.gallery-content-wrapper .dinning-top-content h2,
.gallery-content-wrapper .gallery-top-content h2 {
  font-weight: 400;
  margin-bottom: 10px;
}

.dinning-content-wrapper .dinning-top-content p,
.dinning-content-wrapper .gallery-top-content p,
.gallery-content-wrapper .dinning-top-content p,
.gallery-content-wrapper .gallery-top-content p {
  font-size: 18px;
}

.dinning-thumb-wrapper {
  display: grid;
  max-width: 810px;
  margin-inline: auto;
  gap: 35px;
  grid-template-columns: repeat(2, 1fr);
}

.dinning-thumb-wrapper .thumb {
  width: 100%;
  height: 532px;
  overflow: hidden;
}

.dinning-thumb-wrapper .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 1s;
}

.dinning-thumb-wrapper .thumb:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {

  .dinning-content-wrapper,
  .gallery-content-wrapper {
    margin-bottom: 48px;
  }

  .dinning-area {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .dinning-thumb-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* dinning area end */
/* gallery area start */
.gallery-area {
  background-color: #fff;
  padding-top: 90px;
  padding-bottom: 200px;
}

.gallery-wrapper {
  max-width: 1170px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-wrapper .gallery-item {
  width: 100%;
  height: 428px;
}

.gallery-wrapper .gallery-item.style-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.gallery-wrapper .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 0.5s;
}

.gallery-wrapper .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-wrapper .gallery-item a:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {

  .gallery-wrapper .gallery-item.style-two,
  .gallery-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-wrapper .gallery-item {
    height: 100%;
  }

  .gallery-wrapper .gallery-item img {
    height: 280px;
    display: block;
  }

  .gallery-area {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .gallery-content-wrapper {
    padding-inline: 20px;
  }

  .gallery-area .container {
    padding-inline: 0;
  }
}

/* gallery area end */
/* room amenitie area start */
.room-amenitie-area {
  padding-top: 90px;
  padding-bottom: 160px;
}

.r-amenitie-top-content {
  max-width: 530px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 90px;
}

.r-amenitie-top-content h2 {
  font-weight: 400;
  margin-bottom: 25px;
  font-family: "Alegreya Sans", serif;
}

.r-amenitie-top-content p {
  font-size: 18px;
  font-family: "Alegreya Sans", serif;
}

.r-amenitie-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 24px;
  max-width: 1190px;
  margin-inline: auto;
}

.r-amenitie-item .r-amenitie-thumb {
  width: 100%;
  height: 264px;
  overflow: hidden;
}

.r-amenitie-item .r-amenitie-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all ease 2s;
}

.r-amenitie-item .r-amenitie-content {
  padding: 15px;
  padding-top: 30px;
  max-width: 365px;
}

.r-amenitie-item .r-amenitie-content h3 {
  font-size: 18px;
  font-family: "Alegreya Sans", serif;
  margin-bottom: 16px;
}

.r-amenitie-item .r-amenitie-content p {
  font-family: "Alegreya Sans", serif;
}

.r-amenitie-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .room-amenitie-area {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .room-amenitie-area .container {
    padding-inline: 0;
  }

  .r-amenitie-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 42px;
  }

  .r-amenitie-top-content {
    padding-bottom: 48px;
  }

  .r-amenitie-top-content {
    padding-inline: 20px;
  }
}

/* room amenitie area end */
/* spa area start */
.spa-top-content {
  padding-block: 90px;
}

@media (max-width: 991px) {
  .spa-top-content {
    padding-top: 60px;
    padding-bottom: 48px;
  }
}

.spa-content-area {
  padding-block: 90px;
}

@media (max-width: 991px) {
  .spa-content-area {
    padding-top: 60px;
    padding-bottom: 48px;
  }
}

.spa-top-content-wrapper {
  text-align: center;
  margin-inline: auto;
  max-width: 700px;
}

.spa-top-content-wrapper .top-content {
  margin-bottom: 30px;
  padding-bottom: 35px;
  position: relative;
  max-width: 550px;
  margin-inline: auto;
}

.spa-top-content-wrapper .top-content::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40px;
  height: 1px;
  background-color: #000000;
}

.spa-top-content-wrapper .top-content h2 {
  font-weight: 400;
  margin-bottom: 10px;
}

.spa-top-content-wrapper .top-content p {
  font-size: 18px;
  max-width: 700px;
}

.spa-area {
  /* padding-top: 80px; */
  padding-top: 110px;
  padding-bottom: 110px;
}

.spa-area .spa-content {
  padding-left: 20px;
}

.spa-area .spa-content p {
  margin-bottom: 20px;
}

.spa-area .spa-content .btn-primary {
  margin-top: 30px;
  min-width: 170px;
}

@media (max-width: 991px) {
  .spa-area {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .spa-area .container {
    padding-inline: 0;
  }
}

/* spa area end */
/* gym & pool area start */
.gym-pool-area {
  padding-top: 75px;
  padding-bottom: 140px;
}

.gym-pool-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.gym-pool-group-thumb {
  display: flex;
  gap: 24px;
  max-width: 886px;
}

.gym-pool-group-thumb .gym-thumb,
.gym-pool-group-thumb .pool-thumb {
  width: 100%;
  height: 506px;
}

.gym-pool-group-thumb .gym-thumb img,
.gym-pool-group-thumb .pool-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gym-pool-content {
  max-width: 380px;
  margin-left: auto;
}

.gym-pool-content h2 {
  font-weight: 400;
  margin-bottom: 60px;
}

.gym-pool-content p {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .gym-pool-wrapper {
    flex-wrap: wrap;
    gap: 36px;
  }

  .gym-pool-group-thumb {
    gap: 10px;
    width: 100%;
  }

  .gym-pool-area {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .gym-pool-area .container {
    padding-inline: 0;
  }

  .gym-pool-content {
    padding-inline: 20px;
    margin-left: 0;
  }

  .gym-pool-content h2 {
    margin-bottom: 28px;
  }

  .gym-pool-group-thumb .gym-thumb,
  .gym-pool-group-thumb .pool-thumb {
    height: 400px;
  }
}

/* gym & pool area end */
/* room gallery slider area start */
.room-body-page {
  padding-top: 120px;
}

.room-gallery-area {
  overflow: hidden;
  padding-top: 90px;
}

.room-gallery-area .slick-arrow {
  position: absolute;
  left: 50px;
  top: 40%;
  z-index: 3;
  cursor: pointer;
}

.room-gallery-area .slick-arrow.slick-right-arrow {
  left: auto;
  right: 50px;
}

.room-gallery-area .room-gallery-slider {
  margin-inline: -3px;
}

.room-gallery-area .room-gallery-slider .slick-list {
  padding-inline: 180px !important;
}

.room-gallery-top-content {
  text-align: center;
  padding-bottom: 90px;
  max-width: 690px;
  margin-inline: auto;
}

.room-gallery-top-content h2 {
  font-weight: 400;
  margin-bottom: 25px;
}

.room-gallery-item {
  width: 100%;
  /* height: 630px; */
  height: 82dvh;
  padding-inline: 3px;
  position: relative;
}

.room-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.room-gallery-slider-wrapper {
  position: relative;
  padding-bottom: 70px;
}

.room-gallery-slider-wrapper:nth-of-type(even) .room-gallery-content {
  left: auto;
  right: 13%;
}

.room-gallery-content {
  position: absolute;
  left: 13%;
  top: 35px;
  z-index: 1;
  background-image: linear-gradient(-139deg, rgb(83, 202, 245) 0%, rgb(2, 6, 18) 99%);
  border: 7px solid #fff;
  width: 560px;
  padding: 50px;
  padding-left: 65px;
  padding-bottom: 35px;
}

.room-gallery-content .open-btn {
  cursor: pointer;
  width: 15px;
  margin-inline: auto;
  margin-top: 20px;
  display: block;
  transform: rotate(0deg);
  transition: none;
}

.room-gallery-content .open-btn.hidden {
  transform: rotate(-180deg);
}

.room-gallery-content p {
  font-size: 16px;
  color: #fff;
}

.room-gallery-content .top-content {
  display: flex;
  justify-content: space-between;
}

.room-gallery-content .top-content h3 {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
}

.room-gallery-content .top-content p {
  font-size: 14px;
}

.room-gallery-content .top-content .btn-black.hidden {
  display: none !important;
}

.room-gallery-content .bottom-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.room-gallery-content .bottom-content.open {
  padding-top: 24px;
  max-height: 500px;
  /* Set to the actual height of your content */
  opacity: 1;
}

.room-gallery-content .bottom-content p {
  font-size: 15px;
}

.room-gallery-content .btn-primary {
  width: 100%;
  background-color: #ffbe98;
  font-weight: 600;
  color: #000000;
  padding: 14px;
}

.room-gallery-content .btn-primary:hover {
  background-color: #000000;
  color: #ffbe98;
}

.room-gallery-content ul {
  max-width: 350px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 30px;
  margin-top: 30px;
  padding-bottom: 60px;
  position: relative;
}

.room-gallery-content ul::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 70px;
  height: 1px;
  background-color: #fff;
}

.room-gallery-content ul li {
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1;
}

.room-gallery-content ul li span {
  text-align: center;
}

.btn-black {
  font-size: 14px;
  min-width: 140px;
  background-color: #000000;
  color: #ffbe98;
  text-align: center;
  padding: 13px;
  font-weight: 600;
}

.btn-black:hover {
  background-color: #ffbe98;
  color: #000000;
}

@media (max-width: 991px) {
  .room-gallery-slider-wrapper {
    padding-bottom: 60px;
  }

  .room-body-page {
    padding-top: 90px;
  }

  .room-gallery-area {
    padding-top: 60px;
  }

  .room-gallery-top-content {
    padding-bottom: 48px;
    padding-inline: 20px;
  }

  .room-gallery-area .room-gallery-slider .slick-list {
    padding-inline: 0px !important;
  }

  .room-gallery-area .slick-arrow {
    left: 0;
  }

  .room-gallery-area .slick-arrow.slick-right-arrow {
    right: 0;
  }

  .room-gallery-area .slick-arrow img {
    width: 50px;
    height: 50px;
  }

  .room-gallery-content .bottom-content {
    padding-top: 20px;
    max-height: 500px;
    opacity: 1 !important;
    visibility: visible;
  }

  .room-gallery-item {
    height: 260px;
  }

  .room-gallery-content .button-wrapper img,
  .room-gallery-content .button-wrapper .btn-black {
    display: none;
  }

  .room-gallery-content {
    position: initial;
    padding: 20px;
    padding-bottom: 30px;
    width: 100%;
    left: 10px;
    border-width: 0px;
    margin-top: 8px;
  }

  .room-gallery-content .btn-black {
    min-width: 100px;
    padding: 10px;
    font-size: 13px;
  }

  .room-gallery-content ul {
    padding-top: 25px;
    padding-bottom: 40px;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
  }

  .room-gallery-content ul li {
    font-size: 12px;
  }

  .room-gallery-content ul li svg {
    width: 24px;
    height: 24px;
  }

  .room-body-page {
    padding-top: 70px;
  }

  .room-gallery-content .bottom-content.open {
    padding-top: 20px;
  }

  .room-gallery-content ul::before {
    width: 60px;
  }
}

/* room gallery slider area end */
