/* font-family: "Gilda Display", serif; */
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");

/*  font-family: "Outfit", serif; */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

/* font-family: "Barlow", serif; */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0f2f24;
  --secondary-color: #c1952c;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-gilda-display: "Gilda Display", serif;
  --font-outfit: "Outfit", serif;
  --font-barlow: "Barlow", serif;
}

body,
button,
input,
textarea {
  font-family: var(--font-gilda-display);
}

button {
  cursor: pointer;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding: 50px 0 !important;
}

@media (max-width: 768px) {
  section {
    padding: 30px 0 !important;
  }
}

p {
  font-size: 18px !important;
  line-height: 30px !important;
  font-weight: 300 !important;
  font-family: var(--font-outfit) !important;
}

@media (max-width: 576px) {
  p {
    font-size: 16px !important;
    line-height: 28px !important;
  }
}

.for-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Btn */
.btn {
  font-family: var(--font-barlow);
  padding: 10px 20px;
  border-radius: 0 0 0 15px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid transparent;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
/* End Btn */

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title .secondary-title {
  font-family: var(--font-barlow) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: var(--secondary-color) !important;
  margin-bottom: 10px;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.section-title .primary-title {
  font-family: var(--font-gilda-display) !important;
  font-size: 54px !important;
  font-weight: 400 !important;
  color: var(--white-color) !important;
  text-transform: capitalize;
}

@media (max-width: 1330px) {
  .section-title .primary-title {
    font-size: 48px !important;
  }
}

@media (max-width: 1200px) {
  .section-title .primary-title {
    font-size: 44px !important;
  }
}

@media (max-width: 1100px) {
  .section-title .primary-title {
    font-size: 40px !important;
  }
}

@media (max-width: 1000px) {
  .section-title .primary-title {
    font-size: 38px !important;
  }
}

@media (max-width: 768px) {
  .section-title .primary-title {
    font-size: 34px !important;
  }
}

@media (max-width: 576px) {
  .section-title .secondary-title {
    font-size: 20px;
  }

  .section-title .primary-title br {
    display: none;
  }
}

@media (max-width: 380px) {
  .section-title .primary-title {
    font-size: 30px !important;
  }
}
/* End Section Title */

/* Fixed Book Btn */
.fixed-book-btn {
  display: none;
}

.fixed-book-btn .btn {
  position: fixed;
  bottom: 20%;
  right: -44px;
  transform: rotate(90deg);
  z-index: 9998;
  text-align: center;
  border: 0;
  border-top: 1px solid var(--secondary-color);
}

@media (max-width: 915px) {
  .fixed-book-btn {
    display: block;
  }
}

/* End Fixed Book Btn */

/* Pop Up Form */
.popup-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-content {
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 0 3px #c1942c;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  border-radius: 50px 0 50px 0 !important;
}

.popup-form form {
  font-family: var(--font-outfit) !important;
  padding: 40px 10px !important;
  color: var(--white-color) !important;
  overflow: hidden !important;
  background-color: transparent !important;
  z-index: 1 !important;
}

.popup-form form h3 {
  text-align: left;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.image-container {
  flex: 0.4;
  min-width: 40%;
}

.form-container {
  background-color: var(--primary-color);
  flex: 0.8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-content .close-btn i {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 45px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  cursor: pointer;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .popup-content .close-btn i {
    color: var(--white-color);
  }

  .popup-form form {
    padding: 0 !important;
  }
}

@media (max-width: 576px) {
  .popup-content {
    border-radius: 30px 0 30px 0 !important;
  }

  .popup-form .booking-form form h3 {
    font-size: 22px !important;
  }

  .form-container {
    padding: 20px;
  }

  .popup-form .booking-form .form-group input {
    padding: 12px 15px !important;
  }
}
/* End Pop Up Form */

/* Navbar */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 10px 0;
  z-index: 998;
  background-color: var(--white-color);
  transition: background-color 0.3s ease;
}

nav .nav-item-center {
  display: flex;
  align-items: center;
}

nav .nav-item-one,
nav .nav-item-two,
nav .nav-item-three {
  display: flex;
  flex-direction: column;
}

nav .nav-item-one {
  align-items: flex-start;
}

nav .nav-item-two {
  justify-content: center;
  align-items: center;
}

nav .nav-item-three {
  align-items: flex-end;
  justify-content: center;
}

nav .nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: auto;
  height: 100px;
  transition: 0.3s ease-in-out;
}

#navbar.scrolled .nav-logo img {
  height: 80px;
}

#sidebar {
  height: 100%;
  width: 300px;
  position: fixed;
  top: 0;
  left: -300px;
  background-color: var(--secondary-color);
  transition: 0.6s ease-in-out;
  z-index: 9999;
}

#sidebar ul {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#sidebar ul li {
  border-bottom: 1px solid #f9f9f9;
  padding-bottom: 20px;
}

#sidebar ul li a {
  font-family: var(--font-barlow);
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s ease-in-out;
}

#sidebar ul li a:hover {
  color: var(--primary-color);
}

#sidebar .closebtn i {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  padding: 10px 25px;
  color: var(--white-color);
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 5px;
}

#menuBtn {
  font-size: 30px;
  cursor: pointer;
  color: var(--secondary-color);
}

.side-bar-logo {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: var(--white-color);
}

.side-bar-logo img {
  width: auto;
  height: 150px;
}

nav .inq-btn-icon {
  display: none;
}

@media (max-width: 915px) {
  .book-btn-hide {
    display: none;
  }
}

@media (max-width: 902px) {
  .side-bar-logo img {
    height: 130px;
  }
}

@media (max-width: 576px) {
  nav {
    padding: 10px 0;
  }

  .navbar .nav-btn {
    gap: 0;
  }

  .nav-logo img {
    height: 80px;
  }

  #navbar.scrolled .nav-logo img {
    height: 70px;
  }

  .side-bar-logo img {
    height: 110px;
  }

  #sidebar {
    width: 100%;
    left: -100%;
  }
}

@media (max-width: 470px) {
  #sidebar .closebtn i {
    width: 35px;
    height: 35px;
    padding: 15px;
  }

  nav .nav-btn .inq-btn {
    display: none;
  }

  nav .inq-btn-icon {
    display: block;
  }

  nav .inq-btn-icon i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    font-size: 20px;
    border: 0;
    color: var(--white-color);
    border-radius: 5px;
  }
}

/* End Navbar */

/* Breadcrumb */
.breadcrumb {
  background-image: url("../img/breadcrumb-bg.png");
  background-size: contain;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.breadcrumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #0000004d;
}

.breadcrumb h4 {
  font-family: var(--font-gilda-display);
  text-transform: capitalize;
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 500;
}

.breadcrumb h2 {
  font-family: var(--font-gilda-display);
  color: var(--white-color);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 20px 0 10px 0;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.breadcrumb ul li a {
  font-family: var(--font-outfit);
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 16px;
  letter-spacing: 2px;
}

.breadcrumb ul .seprator {
  color: var(--white-color);
  font-size: 20px;
}

@media (max-width: 992px) {
  .breadcrumb {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    height: 300px;
    text-align: center;
  }

  .breadcrumb ul {
    justify-content: center;
  }

  .breadcrumb h4 {
    font-size: 20px;
  }

  .breadcrumb h2 {
    font-size: 45px;
  }
}

@media (max-width: 576px) {
  .breadcrumb h4 {
    font-size: 18px;
  }

  .breadcrumb h2 {
    font-size: 35px;
  }

  .breadcrumb ul {
    gap: 12px;
  }
}
/* End Breadcrumb */

/* Home Banner */
.home-banner {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.home-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.397);
}

.home-banner-content {
  position: relative;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.home-banner-content h1 {
  text-transform: capitalize;
  color: var(--white-color);
  font-size: 72px;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.home-banner .mouse-down {
  position: absolute;
  width: 50px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-banner .mouse-down img {
  width: 30px;
  animation: bounceMouse 1.5s infinite;
  cursor: pointer;
}

@keyframes bounceMouse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.home-banner .mouse-down h5 {
  font-family: var(--font-outfit);
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  color: var(--white-color);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .home-banner-content h1 {
    font-size: 64px;
  }

  .home-banner {
    height: 70vh;
  }
}

@media (max-width: 992px) {
  .home-banner {
    height: 70vh;
  }

  .home-banner-content h1 {
    font-size: 60px;
  }

  .home-banner .mouse-down img {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .home-banner {
    height: 70vh;
  }

  .home-banner-content h1 {
    font-size: 56px;
  }

  .home-banner .mouse-down img {
    width: 30px;
  }

  .home-banner .mouse-down h5 {
    font-size: 10px;
  }
}

@media (max-width: 576px) {
  .home-banner-content h1 {
    font-size: 50px;
  }

  .home-banner .mouse-down h5 {
    font-size: 8px;
  }

  .home-banner .mouse-down img {
    width: auto;
    height: 45px;
  }
}

@media (max-width: 472px) {
  .home-banner-content h1 {
    font-size: 38px;
  }
}
/* End Home Banner */

/* About Us */
.about-us {
  background-color: var(--primary-color);
}

.about-us .section-title {
  text-align: left;
}

.about-us .images img {
  width: 100%;
  border-radius: 0 0 20px 0;
  vertical-align: middle;
  height: 400px;
  object-fit: cover;
}

.about-us .about-us-row {
  display: flex;
  align-items: center;
}

.about-us .images .image-two {
  margin-top: 100px;
}

.about-us p {
  color: var(--white-color);
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .about-us .about-us-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us .images {
    margin-bottom: 30px;
  }

  .about-us .images .image-two {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .about-us .images img {
    height: 260px;
  }

  .about-us .images {
    margin-bottom: 20px;
  }

  .about-us .images .image-two {
    margin-top: 20px;
  }

  .about-us p {
    margin-bottom: 20px;
  }

  .about-us-page p {
    margin-bottom: 0;
  }
}
/* End About Us */

/* Rooms Gallery */
.rooms-gallery {
  background-color: var(--primary-color);
  padding: 0;
  padding: 50px 0 20px 0;
}

/* .rooms-gallery .area-one {
  border-radius: 0 0 20px 0;
}

.rooms-gallery .area-two {
  border-radius: 0 0 0 20px;
}

.rooms-gallery .area-three {
  border-radius: 0 20px 0 0;
}

.rooms-gallery .area-four {
  border-radius: 20px 0 0 0;
} */

.rooms-gallery .area {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
  margin-bottom: 30px;
  border-radius: 20px;
  width: 100%;
  /* height: 400px; */
}

.rooms-gallery img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  height: 400px;
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
}

.rooms-gallery .area:hover img {
  transform: scale(1.1);
}

.rooms-gallery .info {
  position: absolute;
  bottom: -50px;
  left: 20px;
  width: calc(100% - 40px);
  transition: 0.6s ease-in-out;
  z-index: 3;
}

.rooms-gallery .area:hover .info {
  bottom: 20px;
}

.rooms-gallery .info h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 30px;
}

.rooms-gallery .info .facility-book {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rooms-gallery ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rooms-gallery ul li {
  width: 30px;
}

.rooms-gallery ul li img {
  width: 100%;
  height: 100%;
}

.rooms-gallery .area::before {
  content: "";
  position: absolute;
  background: rgb(193, 149, 44);
  background: linear-gradient(
    0deg,
    rgba(193, 148, 44, 0.63) 20%,
    rgba(255, 255, 255, 0) 26%
  );
  top: 0;
  right: 0;
  bottom: -200px;
  left: 0;
  transition: 0.6s ease-in-out;
  z-index: 1;
}

.rooms-gallery .area:hover::before {
  bottom: 0;
}

.rg-jc {
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .rooms-gallery img {
    height: 350px;
  }

  .rooms-gallery .info h3 {
    font-size: 22px;
  }

  .rooms-gallery ul li {
    width: 25px;
  }
}

@media (max-width: 992px) {
  .rooms-gallery img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .rooms-gallery img {
    height: auto;
  }
}

@media (max-width: 576px) {
  .rooms-gallery .info {
    left: 15px;
  }

  .rooms-gallery .info h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .rooms-gallery .area:hover .info {
    bottom: 10px;
  }
}
/* End Rooms Gallery */

/* Hotel Area */
.hotel-area {
  background-color: var(--primary-color);
}

.hotel-area img {
  width: 100%;
  border-radius: 0 0 20px 0;
  vertical-align: middle;
}

.hotel-area .row {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.hotel-area .flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.hotel-area .content {
  display: flex;
  gap: 60px;
  padding-left: 60px;
}

.hotel-area .content-banquet {
  padding-left: 0;
}

.hotel-area .content .number {
  font-family: var(--font-barlow);
  font-size: 60px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px var(--secondary-color);
}

.hotel-area .info h3 {
  font-size: 44px;
  font-weight: 400;
  color: var(--white-color);
}

.hotel-area .info p {
  color: var(--white-color);
  margin: 15px 0;
}

@media (max-width: 1300px) {
  .hotel-area .content {
    gap: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 1200px) {
  .hotel-area .content {
    gap: 20px;
    padding-left: 0;
  }
}

@media (max-width: 992px) {
  .hotel-area .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hotel-area img {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hotel-area .row {
    margin-bottom: 20px;
  }

  .hotel-area img {
    margin-bottom: 20px;
  }

  .hotel-area .content {
    flex-direction: column;
    gap: 10px;
  }

  .hotel-area .info h3 {
    font-size: 30px;
  }

  .hotel-area .content .number {
    font-size: 50px;
    margin-top: -15px;
  }

  .hotel-area .info p {
    margin: 10px 0;
  }
}
/* End Hotel Area */

/* Restaurant Para */
.restaurant-para {
  background-color: var(--primary-color);
}

.restaurant-para .section-title {
  text-align: left;
}

.restaurant-para .para p {
  color: var(--white-color);
}
/* End Restaurant Para */

/* Restaurant Gallery */
.restaurant-gallery {
  background-color: var(--primary-color);
  padding: 0;
  padding: 50px 0 20px 0;
}

.restaurant-gallery img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  vertical-align: middle;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .restaurant-gallery img {
    height: auto;
  }
}
/* End Restaurant Gallery */

/* Banquet Para  */
.banquet-para {
  background-color: var(--primary-color);
}

.banquet-para .section-title {
  text-align: left;
}

.banquet-para .para p {
  color: var(--white-color);
}
/* End Banquet Para  */

/* Banquet Gallery */
.banquet-gallery {
  background-color: var(--primary-color);
  padding: 0;
  padding: 50px 0 20px 0;
}

.banquet-gallery .box {
  margin-bottom: 30px;
}

.banquet-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  vertical-align: middle;
  border-radius: 20px;
}

.banquet-gallery h3 {
  margin: 20px 0 15px 0;
  color: var(--white-color);
  font-size: 32px;
  font-weight: 400;
}

.banquet-gallery ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.banquet-gallery ul li {
  font-family: var(--font-outfit);
  color: var(--white-color);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 300;
}

.banquet-gallery ul li i {
  color: var(--secondary-color);
}

@media (max-width: 1180px) {
  .banquet-gallery h3 {
    font-size: 28px;
  }
}

@media (max-width: 1040px) {
  .banquet-gallery h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .banquet-gallery img {
    height: auto;
  }

  .banquet-gallery ul li {
    font-size: 18px;
  }
}
/* End Banquet Gallery */

/* Our Specialities  */
.our-specialities {
  padding: 0;
  padding: 50px 0 20px 0;
  background-color: var(--primary-color);
}

.our-specialities .box {
  margin-bottom: 30px;
}

.our-specialities .box .icon img {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--secondary-color);
  border-radius: 0 0 20px 0;
  padding: 10px;
}

.our-specialities .box .info h3 {
  margin: 20px 0 10px 0;
  color: var(--white-color);
  font-size: 32px;
  font-weight: 400;
}

.our-specialities .box .info p {
  color: var(--white-color);
}

@media (max-width: 1180px) {
  .our-specialities .box .info h3 {
    font-size: 28px;
  }
}

@media (max-width: 1040px) {
  .our-specialities .box .info h3 {
    font-size: 26px;
  }
}
/* End Our Specialities  */

/* Hotel Gallery */
.hotel-gallery {
  background-color: var(--primary-color);
  padding: 0;
  padding: 50px 0 20px 0;
}

.hotel-gallery .image {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 1;
  border-radius: 20px;
}

.hotel-gallery .image h4 {
  position: absolute;
  left: 30px;
  bottom: 30px;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  text-transform: capitalize;
  z-index: 3;
  transition: opacity 0.6s ease-in-out;
}

.hotel-gallery .image:hover h4 {
  opacity: 1;
}

.hotel-gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: 0.7s ease-in-out;
  z-index: 2;
}

.hotel-gallery .image:hover img {
  transform: scale(1.1);
}

.hotel-gallery .image-one img,
.hotel-gallery .image-two img {
  height: 400px;
  object-fit: cover;
}

.hotel-gallery .image-three img,
.hotel-gallery .image-four img,
.hotel-gallery .image-five img {
  height: 250px;
  /* object-fit: cover; */
}

.hotel-gallery .image::before {
  content: "";
  position: absolute;
  background: rgb(193, 149, 44);
  background: linear-gradient(
    0deg,
    rgba(193, 149, 44, 1) 5%,
    rgba(255, 255, 255, 0) 30%
  );
  top: 0;
  right: 0;
  bottom: -200px;
  left: 0;
  transition: 0.6s ease-in-out;
  z-index: 1;
}

.hotel-gallery .image:hover::before {
  bottom: 0;
}

@media (max-width: 1100px) {
  .hotel-gallery .image h4 {
    left: 25px;
    bottom: 25px;
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .hotel-gallery .image-one img,
  .hotel-gallery .image-two img {
    height: 400px;
    object-fit: cover;
  }

  .hotel-gallery .image-three img,
  .hotel-gallery .image-four img,
  .hotel-gallery .image-five img {
    height: 250px;
    object-fit: cover;
  }

  .hotel-gallery .image h4 {
    left: 15px;
    bottom: 15px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hotel-gallery .image-one img,
  .hotel-gallery .image-two img {
    height: auto;
    object-fit: cover;
  }

  .hotel-gallery .image-three img,
  .hotel-gallery .image-four img,
  .hotel-gallery .image-five img {
    height: auto;
    object-fit: cover;
  }
}
/* End Hotel Gallery */

/* Our Facility */
.our-facility {
  background-color: var(--primary-color);
}

.our-facility .card {
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--secondary-color);
  margin-bottom: 30px;
}

.our-facility .card-img {
  position: relative;
}

.our-facility .card-img::before {
  content: "";
  position: absolute;
  right: -20px;
  width: 1px;
  height: 100%;
  background-color: #ffffff80;
}

.our-facility .card-content h3 {
  font-size: 30px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 10px;
}

.our-facility .card-content p {
  color: var(--white-color);
}

.our-facility .card-one {
  border-radius: 0 0 20px 0;
}

.our-facility .card-two {
  border-radius: 0 0 0 20px;
}

.our-facility .card-three {
  border-radius: 0 0 0 20px;
  -webkit-border-radius: 0 0 0 20px;
  -moz-border-radius: 0 0 0 20px;
  -ms-border-radius: 0 0 0 20px;
  -o-border-radius: 0 0 0 20px;
}

.our-facility .card-four {
  border-radius: 20px 0 0 20px;
}

.our-facility .card-five {
  border-radius: 0 20px 0 0;
}

.our-facility .card-six {
  border-radius: 20px 0 0 0;
}

@media (max-width: 1300px) {
  .our-facility .card {
    padding: 40px 40px;
    gap: 30px;
  }
  .our-facility .card-img::before {
    right: -15px;
  }
}

@media (max-width: 1200px) {
  .our-facility .card {
    padding: 30px;
    gap: 20px;
  }

  .our-facility .card-img::before {
    right: -10px;
  }

  .our-facility .card-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 1100px) {
  .our-facility .card {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  .our-facility .card {
    padding: 40px 40px;
    gap: 30px;
    border-radius: 20px 0 20px 0;
  }

  .our-facility .card-content h3 {
    font-size: 24px;
  }

  .our-facility .card-img::before {
    right: -15px;
  }
}

@media (max-width: 576px) {
  .our-facility .card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    row-gap: 15px;
    padding: 15px;
  }

  .our-facility .card-img img {
    width: 60px;
    height: 60px;
  }

  /* .our-facility .card-content h3 {
    font-size: 24px;
  } */

  .our-facility .card-img::before {
    content: none;
  }
}
/* End Our Facility */

/* Hotel Events */
.hotel-events {
  background-color: var(--primary-color);
}

.hotel-events .section-title {
  text-align: left;
}

.hotel-events .tab-menu ul {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  overflow-x: auto;
}

.hotel-events .tab-menu li {
  font-family: var(--font-barlow);
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  letter-spacing: 1px;
  color: var(--white-color);
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}

.hotel-events .tab-menu li:hover {
  color: var(--secondary-color);
}

.hotel-events .tab-menu li.active {
  color: var(--secondary-color);
  font-weight: 600;
  border-color: var(--secondary-color);
}

.hotel-events .tab-info {
  display: none;
  margin-top: 20px;
}

.hotel-events .tab-info.active {
  display: block;
}

.hotel-events .tab-content p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.hotel-events .images img {
  width: 100%;
  border-radius: 0 0 20px 0;
  vertical-align: middle;
  height: 500px;
  object-fit: cover;
}

.hotel-events .images .image-one img {
  transition: opacity 0.3s ease-in-out;
}

.hotel-events .images .image-one img.hidden {
  opacity: 0;
}

.hotel-events .image-for-show {
  display: none;
}

.hotel-events .image-for-show img {
  width: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 0;
  vertical-align: middle;
}

@media (max-width: 992px) {
  .hotel-events .tab-content p {
    margin: 20px 0;
  }

  .hotel-events .division-for-hide {
    display: none;
  }

  .hotel-events .images img {
    height: 400px;
  }

  .hotel-events .images {
    margin-top: 20px;
  }

  .hotel-events .image-for-show {
    display: block;
  }

  .hotel-events .image-for-show img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hotel-events .image-for-show img {
    height: auto;
  }
}
/* End Hotel Events */

/* End Contact Banner */
.contact-banner {
  background-image: url("../img/cb-2.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* position: relative; */
}

/* .contact-banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #00000075;
} */

.contact-banner .row {
  display: flex;
  align-items: center;
}

.contact-banner .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-banner .content ul li i {
  font-size: 25px;
  color: #ffd700;
}

.contact-banner .content p {
  color: var(--white-color);
  margin: 20px 0 40px 0;
}

.contact-banner .contact-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-banner .contact-area i {
  font-size: 25px;
  color: var(--white-color);
}

.contact-banner .contact-area .info h5 {
  font-family: var(--font-barlow);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-banner .contact-area .info h4 {
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 300;
  color: var(--white-color);
}

.booking-form form {
  font-family: var(--font-outfit);
  padding: 40px;
  border-radius: 10px;
  color: var(--white-color);
  overflow: hidden;
  background-color: #ffffff50;
  z-index: 1;
}

.booking-form form h3 {
  font-family: var(--font-gilda-display);
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  text-decoration: underline 1px var(--white-color);
  text-underline-offset: 5px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form .form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  background: transparent;
  color: var(--white-color);
  font-family: var(--font-barlow);
  font-size: 16px;
  font-weight: 400;
}

.booking-form .form-group input::placeholder {
  color: var(--secondary-color);
}

.booking-form .for-flex {
  display: flex;
  gap: 20px;
}

.booking-form .form-group-inner {
  flex: 1;
}

.booking-form h3,
.booking-form .form-group,
.booking-form .btn {
  position: relative;
  z-index: 2;
}

.booking-form input:focus {
  outline: none;
  border-color: var(--white-color);
}

.booking-form .btn {
  width: 100%;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
} */

@media (max-width: 992px) {
  .contact-banner .row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-banner .booking-form {
    margin-top: 30px;
  }

  .contact-banner .contact-area .info h5 {
    font-size: 16px;
  }

  .contact-banner .contact-area .info h4 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .booking-form form {
    padding: 20px;
  }

  .booking-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .contact-banner .contact-area .info h4 {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .booking-form .for-flex {
    flex-direction: column;
    gap: 0;
  }
}
/* End End Contact Banner */

/* Testimonial */
.testimonial {
  background-image: url("../img/elinor-banq-update-one.JPG");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.testimonial::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #373535c6;
}

.testimonial .area {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
}

.testimonial p {
  color: var(--white-color);
  margin-bottom: 30px;
}

.testimonial .author {
  color: var(--white-color);
}

.testimonial .author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonial .author h5 {
  font-family: var(--font-barlow);
  font-size: 22px;
  font-weight: 500;
  margin: 15px 0 5px 0;
  text-transform: capitalize;
}

.testimonial .author h6 {
  font-family: var(--font-barlow);
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary-color);
  text-transform: capitalize;
}

.testimonial .slick-dots li button:before {
  background-color: transparent !important;
  border: 5px solid var(--white-color);
  color: transparent !important;
}

@media (max-width: 768px) {
  .testimonial .author img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 576px) {
  .testimonial .author img {
    width: 60px;
    height: 60px;
  }
}
/* End Testimonial */

/* Contact Us */
.contact-us {
  background-color: var(--primary-color);
}

.contact-us .section-title {
  text-align: left;
}

.contact-us .conatct-info p {
  color: var(--white-color);
  margin-bottom: 30px;
  width: 80%;
}

.contact-us .contact-area {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-us .contact-area:not(:last-child) {
  margin-bottom: 30px;
}

.contact-us .contact-area i {
  font-size: 25px;
  color: var(--white-color);
}

.contact-us .contact-area .info h5 {
  font-family: var(--font-barlow);
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-us .contact-area .info h4 {
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 300;
  color: var(--white-color);
}

.contact-form form {
  font-family: var(--font-outfit);
  background-image: url("../img/rooms.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px;
  border-radius: 10px;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.contact-form h3 {
  font-family: var(--font-gilda-display);
  color: var(--white-color);
  font-size: 24px;
  font-weight: 400;
  text-decoration: underline 1px var(--white-color);
  text-underline-offset: 5px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 5px;
  background: transparent;
  color: var(--white-color);
  font-family: var(--font-barlow);
  font-size: 16px;
  font-weight: 400;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: var(--secondary-color);
}

.contact-form .form-group textarea {
  height: 180px;
  resize: none;
}

.contact-form .form-group.for-flex {
  display: flex;
  gap: 20px;
}

.contact-form .form-group-inner {
  flex: 1;
}

.contact-form h3,
.contact-form .form-group,
.contact-form .btn {
  position: relative;
  z-index: 2;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--white-color);
}

.contact-form .btn {
  width: 100%;
}

@media (max-width: 1300px) {
  .contact-us .conatct-info p {
    width: 90%;
  }

  .contact-form form {
    padding: 30px;
  }

  .contact-form .form-group input,
  .contact-form .form-group textarea {
    padding: 12px 18px;
  }
}

@media (max-width: 1200px) {
  .contact-us .conatct-info p {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .contact-form .form-group input,
  .contact-form .form-group textarea {
    padding: 10px 15px;
  }
}

@media (max-width: 992px) {
  .contact-form {
    margin-top: 30px;
  }

  .contact-us .contact-area .info h5 {
    font-size: 16px;
  }

  .contact-us .contact-area .info h4 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .contact-form form {
    padding: 20px;
  }

  .contact-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .contact-form .form-group.for-flex {
    flex-direction: column;
  }

  .contact-form .form-group textarea {
    height: 150px;
  }

  .contact-us .contact-area .info h4 {
    font-size: 20px;
  }
}
/* End Contact Us */

/* Footer */
footer {
  background-color: var(--white-color);
  padding: 50px 0 10px 0;
  position: relative;
  overflow: hidden;
}

footer .div-border {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 60px 0 40px 0;
}

footer .footer-row::before {
  content: "";
  position: absolute;
  bottom: -134px;
  left: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #ddd;
}

footer .footer-content h2 {
  font-size: 60px;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 30px;
}

footer .footer-content h5 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

footer .social-icon ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .social-icon i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 0 0 0 15px;
  transition: 0.3s ease-in-out;
}

footer .social-icon i:hover {
  background-color: var(--primary-color);
}

footer .footer-content h3 {
  font-size: 32px;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 30px;
}

footer .footer-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 30px;
}

footer .footer-links {
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .footer-links ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .footer-links ul li a {
  font-family: var(--font-barlow);
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
  text-transform: capitalize;
  letter-spacing: 1px;
  transition: 0.3s ease-in-out;
}

footer .footer-links ul li a:hover {
  color: var(--secondary-color);
}

@media (max-width: 1400px) {
  footer .footer-content h2 {
    font-size: 50px;
  }

  footer .footer-content br {
    display: none;
  }

  footer .footer-row::before {
    bottom: -92px;
  }
}

@media (max-width: 1200px) {
  footer .footer-links ul {
    gap: 15px;
  }
}

@media (max-width: 1100px) {
  footer .footer-content h2 {
    font-size: 44px;
  }

  footer .footer-content h4 {
    font-size: 18px;
  }

  footer .footer-row::before {
    bottom: -85px;
  }

  footer .footer-links ul li a {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  footer .footer-content .social-icon {
    margin-bottom: 20px;
  }

  footer .social-icon i {
    width: 35px;
    height: 35px;
    border-radius: 0 0 0 10px;
  }

  footer .for-center {
    justify-content: flex-start;
  }

  footer .footer-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  footer .footer-content h4 {
    font-size: 16px;
  }

  footer .footer-row::before {
    content: none;
  }

  footer .div-border {
    margin: 30px 0;
  }

  footer .footer-links ul li a {
    font-size: 16px;
  }

  footer .footer-links {
    flex-direction: column;
    gap: 0;
    row-gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  footer .footer-content h2 {
    font-size: 40px;
  }

  footer .div-border {
    margin: 0 0 20px 0;
  }
}

@media (max-width: 576px) {
  footer .footer-links ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  footer {
    padding-bottom: 30px;
  }
}

@media (max-width: 360px) {
  footer .footer-content h2 {
    font-size: 34px;
  }

  footer .social-icon i {
    font-size: 20px;
  }

  footer .footer-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  footer .footer-content h4 {
    margin-bottom: 15px;
  }
}
/* End Footer */
