* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

.cursor {
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  position: fixed;
  z-index: 9;
  text-align: center;
  font-size: 5px;

}

:root {
  /* background color  */
  --primary-color: #021832;
  --secondary-color: #129990;
  --bg-color: #f4f4f4;
  --bg-white: #fff;
  --bg-black: #000;

  /* text style color  */
  --primary-text: #021832;
  --secondary-text: #f33b42;
  --text-white: #fff;
  --text-black: #151515;
  --text-gray: #e4e4e4;
}

html,
body {
  width: 100%;
  height: 100vh;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

::-webkit-scrollbar {
  width: 0.375rem;
}

::-webkit-scrollbar-track {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

section {
  padding: 3.125rem 0;
}

.main-btn {
  border: 1px solid black;
  padding: 0.375rem 1.875rem;
  text-transform: uppercase;
  background-color: transparent;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  line-height: 1.75rem;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}

.main-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

.banner_wrapper {
  height: 40.635rem;
}

.banner_wrapper .swiper {
  width: 100%;
  height: 100%;
}

.banner_wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner_wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 0;
}

.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 0.9375rem !important;
  height: 0.9375rem !important;
  background-color: var(--secondary-color) !important;
  border: 0.0625rem solid var(--bg-white) !important;
}

.banner_wrapper .swiper .slide-caption {
  z-index: 99;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
}

.header_wrapper .navbar {
  padding: 0.9375rem 0;
  background-color: var(--bg-white);
  box-shadow: 0 0.5rem 0.375rem -0.375rem rgb(0, 0, 0/40%);
  transition: background 0s ease-in-out 0s, margin-top 0s ease-in-out 0s,
    opacity 0s ease-in-out 0s;
}

.navbar-toggler-icon {
  background-image: none;
}

.header_wrapper .navbar-toggler {
  border: 0;
  color: var(--primary-text);
  line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
  box-shadow: none;
}

i {
  font-size: 1.8rem !important;
  /* width: 20px !important;
  height: 20px !important; */
  /* border: 2px solid red; */
}

.header_wrapper .nav-item {
  margin: 0 0.625rem;
}

.header_wrapper .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-text);
  display: inline-block;
}

.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
  color: var(--secondary-text);
}

.navbar.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.85);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

@keyframes fadeInDown {
  0% {
    top: -30%;
  }

  50% {
    top: -15%;
  }

  100% {
    top: 0;
  }
}

.navbar-brand img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  max-height: 60px !important;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.35)) !important;

}

.bg-blur-frost {
  backdrop-filter: blur(10px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(115%) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;


}


@media (prefers-reduced-transparency: reduce), (prefers-reduced-motion: reduce) {
  .bg-blur,
  .bg-blur-strong,
  .bg-blur-frost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: rgba(255,255,255,0.18) !important;
  }
}

/* .sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s;
}

.hide-navbar {
  top: -100px; /* Adjust based on navbar height 
} */
.navbar {
  transition: top 0.4s ease-in-out;
}

h1 {
  font-size: 3.75rem;
  line-height: 4.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.booking-area {
  background: var(--bg-white);
  box-shadow: 0 0.625rem 0.9375rem rgb(0, 0, 0/40%);
  padding: 3.125rem 1.875rem;
  position: relative;
  z-index: 2;
  margin-top: -4rem;
}

.booking-area .form-control,
.booking-area .form-select {
  border: 0.0625rem solid var(--primary-color);
  height: 2.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--text-black);
  font-weight: 500;
}

.booking-area .form-control:focus,
.booking-area .form-select:focus {
  outline: none;
  box-shadow: none;
}

.about_wrapper {
  padding-top: 9.375rem;
}

.about_wrapper p {
  color: #021832;
}

h3 {
  margin-bottom: 1.875rem;
  line-height: 2.875rem;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary-text);
  font-family: var(--secondary-font);
}

h3 span {
  color: var(--secondary-text);
}

h5 {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-text);
  margin-bottom: 0.9375rem;
  font-weight: 500;
}

h6 {
  font-size: 0.875rem;
  color: var(--primary-text);
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
  font-weight: 300;
}

p {
  font-size: 1rem;
  color: var(--text-white);
  line-height: 1.625rem;
}

.section-title::after {
  content: "";
  background-image: url("../images/title-icon.webp");
  background-position: center center;
  background-repeat: no-repeat;
  /* border: 2px solid red; */
  margin-top: -0.9375rem;
  display: block;
  height: 0.9375rem;
}

.room-item {
  position: relative;
  overflow: hidden;
}

.room-item img {
  width: 100%;
  -webkit-transition: all 400ms ease-in 0s;
  transition: all 400ms ease-in 0s;
}

.room-item:hover img {
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
}

.room-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 400ms ease-in 0s;
  transition: all 400ms ease-in 0s;
}

.room-item:hover::before {
  opacity: 0.6;
}

.room-item .room-item-wrap {
  left: 1.875rem;
  right: 1.875rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.room-item .room-content {
  border: 0.125rem solid #fff;
  padding: 5rem 1.875rem;
  -webkit-transform: scale3d(1.2, 1.2, 1.2);
  transform: scale3d(1.2, 1.2, 1.2);
  -webkit-transition: all 500ms ease-in 0s;
  transition: all 500ms ease-in 0s;
  opacity: 0;
}

.room-item:hover .room-content {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.service-item-wrap {
  background-color: var(--bg-color);
}

.service-menu-area ul li a {
  display: block;
  margin-bottom: 2.8125rem;
}

.service-menu-area ul li a .service-icon {
  height: 5.625rem;
  width: 5.625rem;
  background-color: var(--secondary-text);
  line-height: 5.625rem;
  text-align: center;
  border-radius: 100%;
  float: left;
}

.service-menu-area ul li a .service-icon:hover,
.service-menu-area ul li a.active .service-icon {
  background-color: #021832;
  color: #fff;
  box-shadow: 0 0.125rem 1.25rem rgb(34 30 31/40%);
}

/* .service-menu-area ul li a {
  margin-bottom: 0.8125rem;
  overflow: hidden;
} */
.service-menu-area ul li:nth-child(1) {
  margin-left: 0.5625rem;
  /* border: 2px solid red; */
}

.service-menu-area ul li:nth-child(2) {
  margin-left: -2.9625rem;
  /* border: 2px solid red; */
}

.service-menu-area ul li:nth-child(3) {
  margin-left: -6.375rem;
  /* border: 2px solid red; */
}

.service-menu-area ul li:nth-child(4) {
  margin-left: -8.8125rem;
  /* border: 2px solid red; */
}

.service-menu-area ul li a p,
.service-menu-area ul li a h5 {
  padding-left: 6.875rem;
  display: block;
  color: #000;
  text-align: left;
}

.service-menu-area ul li a p span {
  color: var(--secondary-text);
}

.service-item-wrap .tab-content img {
  /* border: 1px solid red !important; */
  width: 100%;
  height: 100vh !important;
}

.counter {
  background-image: url(../images/counter-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 3.125rem;
  position: relative;
}

.counter::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--bg-black);
  opacity: 0.5;
  z-index: 1;
}

.counter h1,
.counter p {
  position: relative;
  z-index: 3;
  color: var(--text-white);
}

.team_wrapper .card {
  position: relative;
  overflow: hidden;
}

.team_wrapper .team-info {
  position: absolute;
  background-color: var(--secondary-color);
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 1.25rem;
  margin-bottom: -4.6875rem;
  transition: all 0.3s ease-in-out;
}

.team_wrapper .card:hover .team-info {
  margin-bottom: 0;
}

.team_wrapper .team-info h5,
.team_wrapper .team-info p {
  color: var(--text-white);
}

.team_wrapper .team-info .social-network {
  transition: all 0.3s ease-in-out;
  padding: 1.25rem;
  margin: 1.25rem -1.25rem -1.25rem;
  background-color: var(--primary-color);
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.team_wrapper .team-info .social-network li a {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  display: block;
  border-radius: 50%;
  font-size: 0.9375rem;
  color: var(--text-white) !important;
  border: 0.0625rem solid var(--bg-white);
}

.gallery-item {
  box-shadow: 0 0 0.1875rem rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}

.gallery-item:before,
.gallery-item:after,
.gallery-item .gallery-item-content:before,
.gallery-item .gallery-item-content:after {
  content: "";
  width: 50%;
  height: 50%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.gallery-item:after {
  top: 50%;
}

.gallery-item:hover:after {
  top: 0;
  opacity: 1;
}

.gallery-item:hover:before {
  left: 50%;
  opacity: 1;
}

.gallery-item .gallery-item-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.gallery-item:hover .gallery-item-content {
  opacity: 1;
}

.gallery-item .gallery-item-content:before,
.gallery-item .gallery-item-content:after {
  top: 0;
  left: 50%;
  z-index: -1;
}

.gallery-item:hover .gallery-item-content:before {
  top: 50%;
  opacity: 1;
}

.gallery-item .gallery-item-content:after {
  top: 50%;
}

.gallery-item:hover .gallery-item-content:after {
  left: 0;
  opacity: 1;
}

.price_wrapper .card {
  box-shadow: 0 0.125rem 0.25rem rgb(34 30 31/40%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: var(--bg-black) !important;
}

.price_wrapper .card h3,
h5,
p {
  color: black !important;
}

.price_wrapper .card:hover {
  background-color: var(--secondary-text);
}

.price_wrapper .card:hover h3,
.price_wrapper .card:hover h5,
.price_wrapper .card:hover p {
  color: var(--text-white);
}

.price_wrapper .card:hover .main-btn {
  color: var(--text-white);
  border-color: var(--bg-white);
}

.blog-content {
  margin: -5rem 0 0 4.375rem;
  box-shadow: 0 0.125rem 0.25rem rgb(34 30 31 / 40%);
}

.our-partner-slider {
  background-color: var(--bg-white);
  padding: 3.125rem 0;
  /* border: 2px solid red; */
}

.footer_wrapper {
  background-color: var(--bg-black);
}

.footer_wrapper h5 {
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.footer_wrapper .contact-info li a {
  color: var(--secondary-text);
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
  color: var(--text-white);
  font-size: 0.875rem;
  padding-left: 1.5rem;
  position: relative;
  transition: all.3s ease-in-out 0s;
}

.footer_wrapper .link-widget li a::before {
  content: ">";
  font-weight: 900;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
}

.footer_wrapper .link-widget li a:hover {
  margin-left: 0.625rem;
  color: var(--secondary-text);
}

.footer_wrapper .social-network a {
  width: 2.1875rem;
  height: 2.1875rem;
  margin: 0.5rem;
  line-height: 2rem;
  font-size: 0.875rem;
  display: block;
  border: 0.125rem solid var(--text-white);
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
}

.footer_wrapper h5,
p {
  color: var(--text-white);
}