@font-face {
  font-family: "Audrey";
  src: url("../fonts/Audrey-Normal.woff2") format("truetype");
}

:root {
  --nav-bg: #0e1927;
  --topbar-bg: #e6c9a2;
  --topbar-text: #0e1927;
  --cream: #e6c9a2;
  --white: #ffffff;
  --dark: #0e1927;
  --text: #6f7378;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: #0b1622;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Audrey", sans-serif;
}

/*  TOPBAR  */
.topbar {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--topbar-bg);
  /* color: var(--topbar-text); */
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
  /* margin-bottom: 23px; */
}
/* .topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
} */
.topbar p {
  margin-bottom: 0 !important;
  font-size: 16px;
}
.topbar p a {
  font-weight: bold;
  text-decoration: underline;
  color: #0e1927;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* opacity: 0.95; */
}
.topbar-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

ul.intro-list,
ul.list {
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
    text-transform: capitalize;
}

ul.intro-list li,
ul.list li {
    position: relative;
    padding-left: 34px;
    margin: 6px 0;
    font-size: 18px;
    color: #2c2d32;
}

ul.intro-list li:before,
ul.list li:before {
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    content: "\F272";
    color: #e6c9a2;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
}

/*  NAVBAR  */
.navbar-wrap {
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
  margin-top: 40px;
  position: relative;
}

.brand {
  text-decoration: none;
  color: var(--cream);
  display: inline-block;
}
.brand-title {
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}
.brand-sub {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(231, 200, 154, 0.85);
}

.main-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  padding: 28px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 2px;
  background: var(--cream);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: #fff;
}
.main-nav a.active::after {
  transform: scaleX(1);
}

.btn-book {
  position: relative;
  /* overflow: hidden; */
  z-index: 0;

  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: transparent;
  border: 1px solid var(--cream);

  padding: 12px 26px;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 12px;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-book::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;

  height: 2px;
  background: var(--cream);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.btn-book:hover::before,
.btn-book:focus-visible::before {
  opacity: 0;
  transform: scaleX(0);
}

.btn-book::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;

  z-index: -2;
}

.btn-book:hover,
.btn-book:focus-visible {
  /* color: #0b1521; */
  color: #000;
  border-color: var(--cream);
}

.btn-book:hover::after,
.btn-book:focus-visible::after {
  transform: scaleY(1);
}
/* Hamburger */
.burger {
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  height: 2px;
  width: 28px;
  background: var(--cream);
  display: block;
  margin-left: auto;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #000;
  padding: 20px 0;
  display: none;
  z-index: 9999;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu li {
  margin: 15px 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}

.mobile-menu.active {
  display: block;
}
/*  HERO  */
.hero {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  background-image: url("../img/header-bg.webp");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 20;
  /* height: 100%; */
  /* min-height: calc(100vh - 104px); */
  padding-top: 160px;
  padding-bottom: 160px;
}

.hero-content {
  max-width: 760px;
}

.hero-title {
  color: #fff;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 37px;
  line-height: 1.03;
  margin: 0 0 18px;
  font-weight: 600;
}
.hero-title span {
  font-weight: 700;
}

.hero-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
  /* max-width: 640px; */
}

.btn-hero-wrap {
  position: relative;
  display: inline-block;
}

.btn-hero-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--cream);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.btn-hero-wrap:has(.btn-hero:hover)::after,
.btn-hero-wrap:has(.btn-hero:focus-visible)::after {
  opacity: 0;
  transform: scaleX(0);
}

.btn-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 28px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 12px;

  text-decoration: none;
  background: var(--cream);
  /* color: #1a1a1a; */
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-hero > span {
  position: relative;
  z-index: 2;
}

.btn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 1;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}

.btn-hero:hover,
.btn-hero:focus-visible {
  color: #fff;
  border-color: var(--dark);
}

.btn-hero:hover::before,
.btn-hero:focus-visible::before {
  transform: scaleY(1);
}

.hero-callbox {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(520px, 92vw);
  background: #0e1927;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 26px;
}
.callbox-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.call-icon {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  /* border: 1px solid rgba(231, 200, 154, 0.6); */
  border: 1px solid var(--cream);
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 22px;
}
.call-label {
  /* color: rgba(231, 200, 154, 0.9); */
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.call-number {
  color: #fff;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 2px;
  font-weight: 300;
}

.header-logo {
    max-height:80px;
}

.logo {
  width: auto;
  object-fit: contain;
}

.brand {
  display: inline-block;
}
.hero-callbox {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: 0.3s ease;
}

.hero-callbox:hover {
  /* background: #0f1f30; */
  background: #1a1a1a;
}

@media (max-width: 991.98px) {
  .hero-inner {
    padding-top: 28px;
  }
  .hero-callbox {
    position: static;
    width: 100%;
    margin-top: 26px;
  }
  .hero-pagination {
    position: static;
    margin-top: 26px;
  }
  .call-number {
    font-size: 34px;
  }
}

.about {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  object-fit: cover;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.about-kicker span {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #0e1927;
}

.kicker-line {
  width: 60px;
  height: 1px;
  background: var(--cream);
}

.about-title {
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: 2px;
  font-weight: 700;
  color: #0e1927;
  margin-bottom: 20px;
}

.about-text {
  color: var(--text);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 600px;
}

.btn-about {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  text-decoration: none;
  color: var(--dark);
  border: 1px solid var(--dark);
  background: transparent;

  /* overflow:hidden; */
  isolation: isolate;

  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.btn-about span {
  position: relative;
  z-index: 2;
}

.btn-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  z-index: 1;
}

.btn-about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--dark);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.btn-about:hover {
  color: #fff;
  border-color: var(--dark);
}

.btn-about:hover::before {
  transform: scaleY(1);
}

.btn-about:hover::after {
  opacity: 0;
  transform: scaleX(0);
}

@media (max-width: 992px) {
  .about-media img {
    height: 420px;
  }

  .about-title {
    font-size: 36px;
  }
}



.why-us {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
}

.sec-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.sec-kicker span:first-child {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #0e1927;
}

.sec-kicker .kicker-line {
  width: 60px;
  height: 2px;
  background: var(--cream);
}

.whyus-title {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: 2px;
  font-weight: 700;
  color: #0e1927;
}

.whyus-text {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.9;
  font-size: 15px;
  max-width: 560px;
}

.whyus-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whyus-ul li {
  position: relative;
  padding-left: 18px;
  margin: 10px 0;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #0e1927;
  text-transform: uppercase;
}

.whyus-ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #14212b;
}

.whyus-media img {
  width: 100%;

  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 0;
  }
  .whyus-title {
    font-size: 38px;
  }
  .whyus-media img {
    height: 420px;
  }
}

.special-menu {
  background: #0e1927;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.special-menu-wrapper {
  position: relative;
}

/* Fork image */
.menu-cutlery {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 280px;
  transform: rotate(-18deg);
  z-index: 8;
  pointer-events: none;
}

/* Header */
.menu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.menu-kicker-text {
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.menu-kicker-line {
  width: 56px;
  height: 2px;
  background: var(--cream);
}

.menu-title {
  color: #fff;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.menu-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 34px;
}

/* Tabs */
.menu-tabs .nav-link {
  background: none;
  border: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  position: relative;
  padding-bottom: 10px;
}

.menu-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.25s;
}

.menu-tabs .nav-link.active {
  color: var(--cream);
}

.menu-tabs .nav-link.active::after {
  transform: scaleX(1);
}

/* Floating images */
.menu-float-img {
  position: absolute;
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
}

.menu-float-left {
  left: -140px;
  top: 320px;
}
.menu-float-right {
  right: -140px;
  top: 330px;
}

.menu-item {
  padding: 18px 0;
}

.menu-item-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-item h4 {
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-item .line {
  flex: 1;
  height: 1px;
  /* background: rgba(255, 133, 0, 0.6); */
  background: #e6c9a2;
}

.menu-item .price {
  color: var(--cream);
  font-weight: 800;
}

.menu-item p {
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
}

.special-menu .btn-book:hover {
  color: var(--dark);
}

@media (max-width: 992px) {
  .menu-title {
    font-size: 40px;
  }
  .menu-float-img {
    display: none;
  }
}



/* services */
.services-section {
  position: relative;
  padding: 110px 0;
  background: #0e1927;
  overflow: hidden;
}

/* pattern_*/
.services-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../img/pattern_.webp") center/cover no-repeat;

  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Kicker */
.services-kicker {
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 3px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

/* Card */
.service-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
}

.service-img {
  background: #0a1a2a;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.03);
}

/* Caption box */
.service-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  background: rgba(7, 20, 33, 0.92);
  /* background:rgba(20, 24, 31, 0.95); */
  border: 1px solid rgba(230, 199, 153, 0.18);
  text-align: center;
  padding: 18px;
}

.service-caption h4 {
  color: var(--cream);
  font-weight: 800;
  line-height: 1;
}

.service-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

/* Dots */
/* .services-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.services-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.services-dots .dot.active {
  background: rgba(255, 255, 255, 0.9);
} */

@media (max-width: 992px) {
  .service-img img {
    height: 320px;
  }
  .service-caption {
    width: calc(100% - 60px);
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 75px 0 70px;
  }
  .service-img img {
    height: 300px;
  }
  .service-caption {
    width: calc(100% - 44px);
    bottom: 18px;
  }
}

/* Section contact*/
.footer-form {
  background: #fff;
}

.footer-form .menu-title {
  color: #0e1927;
}
.footer-form .menu-subtitle {
  color: #6f7378;
}
.footer-form .menu-kicker-text {
  color: #0e1927;
}
.footer-form .menu-kicker-line {
  background: #e6c9a2;
  /* opacity: 0.25; */
}

.footer-form .menu-float-img {
  border-radius: 50%;
  width: 360px;
  height: 360px;
  object-fit: cover;
}

.contact-form-wrap {
  position: relative;
  z-index: 2;
}

.footer-form .form-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0e1927;
}

.footer-form .form-label .req {
  color: red;
}

.footer-form .contact-input {
  border: 1px solid #0b1521;
  background: transparent;
  border-radius: 0;
  padding: 14px 16px;
  font-size: 14px;
  box-shadow: none;
}

.footer-form .contact-input:focus {
  border-color: #0b1521;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(11, 21, 33, 0.12);
}

.footer-form .form-label .optional {
  font-size: 12px;
  font-weight: 400;
  color: #6f7378;
}
.form-title {
  padding: 22px 5px 22px;
}
.form-title h4 {
  color: #000;
  font-size: 32px;
}
@media (max-width: 992px) {
  .footer-form .menu-float-img {
    display: none;
  }
}
#back-to-top {
  position: fixed;
  bottom: -45px;
  right: 10px;
  z-index: 0;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.3s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 4px;
  text-transform: uppercase;
  font-size: 14px;
  color: #e6c9a2;
  font-weight: bold;
}
#back-to-top.show {
  bottom: 60px;
}
#back-to-top:hover {
  color: #000;
}
.footer-form label.error {
  display: block;
  font-size: 13px;
  color: red;
  margin-top: 3px;
  font-weight: 500;
}
/* ==============================
   Testimonials Section
================================ */

.testimonials-section {
  padding: 110px 0;
  background: #f3f3f3;
  position: relative;
  overflow: hidden;
}

.testimonials-section .menu-title {
  /* color: #000; */
  color: #0e1927;
}

.testimonials-section .menu-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.testimonials-section .menu-kicker-text {
  /* color: #E6C9A2; */
  color: #0e1927;
}

.testimonials-section .menu-kicker-line {
  /* background: rgba(255, 133, 0, 0.65); */
  opacity: 1;
}

.testimonials-slider {
  margin-top: 14px;
}

#testimonialSlider.keen-slider {
  overflow: hidden;
}

#testimonialSlider .keen-slider__slide {
  min-width: 0;
}

.testimonials-card {
  background: #fff;
  border: 2px solid #e6c9a2;
  /* border-radius: 12px; */
  padding: 22px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* .testimonials-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
} */

.testimonials-top {
  margin-bottom: 14px;
}

.testimonials-stars {
  display: inline-flex;
  gap: 3px;
  line-height: 1;
  font-size: 16px;
}

.gold-star {
  color: #ffb300;
}

.google-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  /* background: #ffffff; */
  padding: 6px;
}

.testimonials-text {
  color: #000;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.testi-p {
  margin: 0;
}

.testimonials-user {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonials-avatar {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 41px;
  border: 2px solid rgba(255, 133, 0, 0.65);
}

.testimonials-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-name {
  color: #000;
  font-weight: 700;
  line-height: 1;
}

/* ==============================
   Arrows (Left / Right)
================================ */

.testimonials-nav {
  pointer-events: none;
}

.testi-arrow {
  pointer-events: auto;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 133, 0, 0.75);
  background: transparent;
  color: #e6c9a2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.25s ease;
  z-index: 10;
}

.testi-prev {
  left: -60px;
}

.testi-next {
  right: -60px;
}

.testi-arrow:hover {
  background: #e6c9a2;
  color: #ffffff;
  border-color: #e6c9a2;
}

@media (max-width: 992px) {
  .testi-prev {
    left: 10px;
  }
  .testi-next {
    right: 10px;
  }

  .testi-arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .testi-arrow {
    display: none;
  }
}
#cta {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/cta-bg.webp);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 100px 0;
}
.cta-content {
  text-align: center;
  text-shadow:
    0 0 50px rgba(78, 78, 78, 0.5),
    0 0 1px #000;
}
.cta-content h2 {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0;
}
#footer {
  background-color: var(--dark);
  padding: 30px 0;
  /* z-index: 1000;
  position: relative; */
}
#footer hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(176, 176, 176, 0),
    rgba(255, 255, 255, 0.75),
    rgba(0, 0, 0, 0)
  );
}
#footer p {
  font-size: 13px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  padding: 12px 0;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .navbar-wrap {
    position: fixed;
    padding: 30px 0 10px;
    z-index: 9;
    right: 0;
    left: 0;
  }
  .hero-inner {
    padding-top: 220px;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    min-height: auto;
    padding-bottom: 60px;
  }
  .contact-form-wrap {
    margin-top: 40px;
  }
}
/* ===============================
   GALLERY
================================= */

.gallery-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 991px) {
  .gallery-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-group {
    grid-template-columns: 1fr;
  }
}

.gallery-group li {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.fancy-video {
  position: relative;
  overflow: hidden;
}

.fancy-video figure {
  margin: 0;
}

.fancy-video img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.fancy-video:hover img {
  transform: scale(1.05);
}

/* Overlay */
.fancy-video .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}

.fancy-video:hover .overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Icon */
.icon-play_wrapper {
  width: 55px;
  height: 55px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.3s ease;
  border-radius: 50%;
}

.fancy-video:hover .icon-play_wrapper {
  opacity: 1;
  transform: scale(1);
}

.icon-play_wrapper i {
  font-size: 22px;
  color: var(--cream);
}

/* ===============================
   MENU SLIDER 
================================= */

.menu-slider .keen-slider__slide {
  height: auto;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-img img {
  width: 100%;
  display: block;
}

/* Caption */
.service-caption {
  padding-top: 12px;
  text-align: center;
}

.service-caption h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

/* Arrows */
.menu-nav {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.menu-arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-arrow i {
  font-size: 18px;
}

/* Optional: hover */
.menu-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* ===== Services Slider Arrows ===== */

.services-nav {
  pointer-events: none;
}

.services-arrow {
  pointer-events: auto;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 133, 0, 0.75);
  background: transparent;
  color: #e6c9a2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.25s ease;
  z-index: 10;
}

.services-prev {
  left: -60px;
}

.services-next {
  right: -60px;
}

.services-arrow:hover {
  background: #e6c9a2;
  color: #ffffff;
  border-color: #e6c9a2;
}

@media (max-width: 992px) {
  .services-prev {
    left: 10px;
  }
  .services-next {
    right: 10px;
  }

  .services-arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .services-arrow {
    display: none;
  }
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  /* background: #869791; */
  background-color: #0e1927;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #869791;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.nav-phone {
  position: relative;
  z-index: 1000;
  display: flex;
  padding: 25px 30px;
  float: right;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border: 1px solid #685f5f;
  text-decoration: none;
  display: none !important;
}
.nav-phone .bi-telephone-fill::before {
  font-size: 26px;
  color: var(--cream);
  transition: all 0.3s ease;
}
.nav-phone__link {
  margin-left: 10px;
  color: #fff;
  font-size: 16px;
  /* text-shadow: 1px 1px 1px #4c4c4e; */
  font-size: 21px;
  font-weight: bold;
  line-height: 25px;
}
.nav-phone:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.nav-phone:hover .bi-telephone-fill::before {
  color: #fff;
}
@media (max-width: 768px) {
  .nav-phone {
    position: fixed;
    bottom: 13px;
    left: 23%;
    padding: 10px 20px 10px 23px;
    border-radius: 56px;
    background-color: #1e2022;
    display: flex !important;
  }
}
.owl-carousel .owl-item img {
    display: block;
    width: auto;
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 26px;
  }
   .about {
    padding: 70px 0;
  }

  .about-title {
    font-size: 20px;
  }
  .menu-title {
    font-size: 22px;
  }
  .whyus-title{
    font-size: 20px;
  }
  .footer-logo{
    text-align: center;
  }
  .topbar p {
  font-size: 15px;
}
}
