@charset "UTF-8";
/* style.scss placeholder */
/* Base */
:root {
  --text-fonts: "Inter", sans-serif;
  --title-fonts: "Poppins", sans-serif;
  --stylish-fonts: "Dancing Script", cursive;
  --icon-fonts: "drooleo-icon";
  --primary-color: #096C6C;
  --secondary-color: #ED9B31;
  --primary-dark: #064949;
  --secondary-dark: #C87F20;
  --white-color: #ffffff;
  --black-color: #000000;
  --white-transparent-80: rgba(255, 255, 255, 0.8);
  --black-transparent-60: rgba(0, 0, 0, 0.6);
  --neutral-light: #F9F9F9;
  --neutral-mid: #EAEAEA;
  --neutral-dark: #222222;
  --body-bg: var(--neutral-light);
  --bg-header: var(--primary-dark);
  --bg-footer: #111111;
  --border-primary: #055252;
  --border-secondary: #c27b27;
  --border-light: #EDEDED;
  --border-neutral: #DCDCDC;
  --header-color: var(--white-color);
  --footer-color: var(--white-color);
  --text-color: var(--neutral-dark);
  --h1-font-color: var(--primary-dark);
  --h2-font-color: var(--primary-dark);
  --h3-font-color: var(--primary-color);
  --h4-font-color: var(--primary-color);
  --h5-font-color: var(--text-color);
  --h6-font-color: var(--text-color);
  --inverse-font-color: var(--white-color);
  --primary-cta-color: var(--primary-color);
  --primary-cta-hover-color: var(--primary-dark);
  --primary-cta-font-color: var(--white-color);
  --secondary-cta-color: var(--secondary-color);
  --secondary-cta-hover-color: var(--secondary-dark);
  --secondary-cta-font-color: var(--secondary-color);
  --secondary-cta-font-hover-color: var(--white-color);
  --highlight-color: var(--secondary-color);
  --tagline-font-color: var(--secondary-color);
  --header-active-color: var(--secondary-color);
  --bg1: #EDEDED;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
}

/* _reset.scss placeholder */
/* -----------------------------------------
   CSS Reset: Drooleo Base Reset
   Based on: modern-normalize + tweaks
-------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--text-fonts, "Inter", sans-serif);
  line-height: 1.5;
  background-color: var(--body-bg, #fff);
  color: var(--text-color, #222);
  text-rendering: optimizeLegibility;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-fonts, "Poppins", sans-serif);
  font-weight: 600;
  color: var(--h1-font-color, #111);
}

/* -----------------------------------------
   Typography: Drooleo Style Guide (Updated)
-------------------------------------------- */
body {
  font-family: var(--text-fonts, "Inter", sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--body-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-fonts, "Poppins", sans-serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

/* Desktop (Default) */
h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--h1-font-color);
}

h2 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--h2-font-color);
}

h3 {
  font-size: 38px;
  line-height: 1.3;
  color: var(--h3-font-color);
}

h4 {
  font-size: 28px;
  line-height: 1.4;
  color: var(--h4-font-color);
}

h5 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--h5-font-color);
}

h6 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--h6-font-color);
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  h2 {
    font-size: 34px;
    line-height: 1.2;
  }
  h3 {
    font-size: 30px;
    line-height: 1.35;
  }
  h4 {
    font-size: 24px;
    line-height: 1.4;
  }
  h5 {
    font-size: 18px;
    line-height: 1.5;
  }
  h6 {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* Mobile (≤768px) */
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
    line-height: 1.4;
  }
  h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  h4 {
    font-size: 20px;
    line-height: 1.4;
  }
  h5 {
    font-size: 16px;
    line-height: 1.5;
  }
  h6 {
    font-size: 14px;
    line-height: 1.5;
  }
}
p {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 1rem;
}

.description {
  margin-top: 20px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--highlight-color);
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

small {
  font-size: 0.875rem;
  color: var(--tagline-font-color);
}

blockquote {
  border-left: 4px solid var(--highlight-color);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: var(--dark-color);
}

@font-face {
  font-family: "drooleo-icon";
  src: url("./../fonts/icons/drooleo-icon.ttf?g1dlse") format("truetype"), url("./../fonts/icons/drooleo-icon.woff?g1dlse") format("woff"), url("./../fonts/icons/drooleo-icon.svg?g1dlse#drooleo-icon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=drooleo-icon], [class*=" drooleo-icon"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "drooleo-icon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.drooleo-icon-addition:before {
  content: "\e91e";
}

.drooleo-icon-arrow-left:before {
  content: "\e91f";
}

.drooleo-icon-arrow-right:before {
  content: "\e920";
}

.drooleo-icon-breakfast:before {
  content: "\e921";
}

.drooleo-icon-call-phone:before {
  content: "\e922";
}

.drooleo-icon-camera:before {
  content: "\e923";
}

.drooleo-icon-distance:before {
  content: "\e924";
}

.drooleo-icon-fax:before {
  content: "\e925";
}

.drooleo-icon-fitness:before {
  content: "\e926";
}

.drooleo-icon-giftbox:before {
  content: "\e927";
}

.drooleo-icon-globe:before {
  content: "\e928";
}

.drooleo-icon-mail:before {
  content: "\e929";
}

.drooleo-icon-no-smoking:before {
  content: "\e92a";
}

.drooleo-icon-notifications:before {
  content: "\e92b";
}

.drooleo-icon-pause:before {
  content: "\e92c";
}

.drooleo-icon-pet:before {
  content: "\e92d";
}

.drooleo-icon-pin:before {
  content: "\e92e";
}

.drooleo-icon-play:before {
  content: "\e92f";
}

.drooleo-icon-substract:before {
  content: "\e930";
}

.drooleo-icon-restaurant:before {
  content: "\e931";
}

.drooleo-icon-whatsapp:before {
  content: "\e932";
}

.drooleo-icon-bucket_chicken:before {
  content: "\e900";
}

.drooleo-icon-burger_cheese:before {
  content: "\e901";
}

.drooleo-icon-burger_cheeseburger:before {
  content: "\e902";
}

.drooleo-icon-burger_food:before {
  content: "\e903";
}

.drooleo-icon-burger_hamburguer:before {
  content: "\e904";
  color: #173156;
}

.drooleo-icon-burger_juice:before {
  content: "\e905";
}

.drooleo-icon-cheese_shot:before {
  content: "\e906";
}

.drooleo-icon-chicken:before {
  content: "\e907";
}

.drooleo-icon-delivery_food:before {
  content: "\e908";
}

.drooleo-icon-dessert_cake:before {
  content: "\e909";
}

.drooleo-icon-dessert_cream:before {
  content: "\e90a";
}

.drooleo-icon-dessert_snack:before {
  content: "\e90b";
}

.drooleo-icon-food_healthy:before {
  content: "\e90c";
}

.drooleo-icon-fork_knife:before {
  content: "\e90d";
}

.drooleo-icon-gastronomy_mexican:before {
  content: "\e90e";
  color: #173156;
}

.drooleo-icon-kitchen_oven:before {
  content: "\e90f";
}

.drooleo-icon-kitchen_oven2:before {
  content: "\e910";
}

.drooleo-icon-noodle_bowl:before {
  content: "\e911";
}

.drooleo-icon-pizza:before {
  content: "\e912";
}

.drooleo-icon-pizza_slice:before {
  content: "\e913";
}

.drooleo-icon-pizza_slice_cheese:before {
  content: "\e914";
}

.drooleo-icon-pizza_slice_cheese2:before {
  content: "\e915";
}

.drooleo-icon-pizza_slice2:before {
  content: "\e916";
  color: #173156;
}

.drooleo-icon-pizza2:before {
  content: "\e917";
}

.drooleo-icon-pizza3:before {
  content: "\e918";
}

.drooleo-icon-google-plus:before {
  content: "\e919";
}

.drooleo-icon-youtube:before {
  content: "\e91a";
}

.drooleo-icon-linkedin:before {
  content: "\e91b";
}

.drooleo-icon-instagram:before {
  content: "\e91c";
}

.drooleo-icon-facebook:before {
  content: "\e91d";
}

img {
  max-width: 100%;
  height: auto;
}

.image-hover-zoom {
  position: relative;
  overflow: hidden;
}
.image-hover-zoom img, .image-hover-zoom > div {
  transform: scale(1);
  transition: ease all 0.5s;
}
.image-hover-zoom:hover img {
  transform: scale(1.1);
}

section {
  padding: 40px 0;
}
@media (min-width: 960px) {
  section {
    padding: 80px 0;
  }
}

.section-head {
  position: relative;
  z-index: 1;
}
.section-head .uk-heading-line > ::after, .section-head .uk-heading-line > ::before {
  border-color: var(--border-light);
}

.tagline {
  position: relative;
  font-family: var(--stylish-fonts);
  color: var(--tagline-font-color);
  font-size: 38px;
  line-height: normal;
  filter: opacity(1);
}
@media (max-width: 1080px) {
  .tagline {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .tagline {
    font-size: 32px;
  }
}

.btn-group {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 30px;
  z-index: 9;
}
.btn-group.btn-center {
  justify-content: center;
}

.btn {
  min-width: 150px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  outline: none;
  z-index: 1;
}
.btn:hover {
  text-decoration: none;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
  z-index: -1;
}
.btn:hover::before {
  left: 0;
}

.btn-primary {
  background-color: var(--primary-cta-color);
  border-color: var(--primary-cta-color);
  color: var(--primary-cta-font-color);
}
.btn-primary:hover {
  background-color: var(--primary-cta-hover-color);
  color: var(--primary-cta-font-color);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--secondary-cta-color);
  color: var(--secondary-cta-font-color);
  filter: opacity(1);
}
.btn-secondary:hover {
  background-color: var(--secondary-cta-color);
  color: var(--secondary-cta-font-hover-color);
}

.slider-control-dots {
  position: relative;
  margin-top: 30px;
  z-index: 10;
}
.slider-control-dots .uk-dotnav {
  align-items: center;
}
.slider-control-dots .uk-dotnav > * > * {
  width: 8px;
  height: 8px;
  border-color: var(--secondary-color);
  background: transparent;
  transition: 0.5s ease;
}
@media (min-width: 768px) {
  .slider-control-dots .uk-dotnav > * > * {
    width: 10px;
    height: 10px;
  }
}
.slider-control-dots .uk-dotnav > .uk-active > * {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
@media (min-width: 768px) {
  .slider-control-dots .uk-dotnav > .uk-active > * {
    width: 20px;
    height: 20px;
  }
}

.uk-subnav > li {
  margin: 10px 0;
}
.uk-subnav > li > a {
  border-radius: 0 10px;
  padding: 5px 20px;
  color: var(--highlight-color) !important;
  background-color: transparent;
  border: solid 2px var(--highlight-color);
  transition: ease all 1s !important;
  filter: opacity(1);
}
.uk-subnav > li > a:hover {
  color: var(--white-color) !important;
  background-color: var(--highlight-color);
}
.uk-subnav > li.uk-active a, .uk-subnav > li.uk-active a:hover {
  color: var(--white-color) !important;
  background-color: var(--highlight-color);
}

.uk-dotnav > * > * {
  border-color: var(--highlight-color);
}

.uk-dotnav > .uk-active > * {
  background-color: var(--highlight-color);
}

.social {
  width: 100%;
  display: flex;
  justify-content: center;
}
.social ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.social ul li {
  margin-left: 15px;
}
.social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
  border: solid thin var(--primary-color);
  font-size: 18px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.social ul li a:hover, .social ul li a:focus {
  background: var(--white-color) !important;
  color: var(--secondary-color) !important;
  border-color: var(--secondary-color);
}
.social ul li:first-child {
  margin-left: 0;
}

:focus-visible {
  outline: 1px solid var(--secondary-dark);
  box-shadow: 0 0 2px var(--secondary-dark) inset;
  -webkit-box-shadow: 0 0 2px var(--secondary-dark) inset;
  -ms-box-shadow: 0 0 2px var(--secondary-dark) inset;
  -moz-box-shadow: 0 0 2px var(--secondary-dark) inset;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  background: var(--white-color);
  filter: opacity(1);
}

.formslable {
  display: none !important;
}

.section-bg-pattern-food {
  position: relative;
  margin: 0;
  padding: 50px 0;
}
.section-bg-pattern-food::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("./../../assets/images/bg-pattern-food.png");
  background-repeat: repeat;
  background-attachment: fixed;
  opacity: 0.05;
  z-index: 1;
}
.section-bg-pattern-food > div {
  position: relative;
  z-index: 2;
}

@media (min-width: 960px) {
  section.single-section {
    padding: 69px 0;
  }
}

@media (min-width: 960px) {
  .account-deletion-thanks-page .single-section {
    padding: 133px 0;
  }
}
@media (min-width: 1023px) {
  .account-deletion-thanks-page .single-section {
    padding: 105px 0;
  }
}

/* Form */
.input-box {
  margin: 10px 0;
}
.input-box input, .input-box textarea {
  border-color: var(--border-neutral);
}
.input-box .uk-textarea {
  min-height: 100px;
  resize: none;
}
@media (min-width: 960px) {
  .input-box {
    margin: 15px 0;
  }
}

.button-box {
  margin-top: 15px;
}
@media (min-width: 960px) {
  .button-box {
    margin-top: 25px;
  }
}

/* Contact */
.contact-info ul {
  margin: 10px 0 0;
}
.contact-info ul li {
  position: relative;
  padding-left: 30px;
}
.contact-info ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--icon-fonts);
  color: var(--primary-color);
}
.contact-info ul li.address::before {
  content: "\e92e";
}
.contact-info ul li.phone::before {
  content: "\e922";
}
.contact-info ul li.mail::before {
  content: "\e929";
}

/* About */
.about-snippet-section {
  margin-bottom: 0;
  padding: 50px 0;
  background: linear-gradient(135deg, #fffdf7 0%, #f9f5e7 100%);
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .about-snippet-section {
    padding: 80px 0;
  }
}

.without-banner header {
  background: var(--bg-header);
}
.without-banner main {
  padding-top: 80px;
}
@media (min-width: 1024px) {
  .without-banner main {
    padding-top: 126px;
  }
}

/* Pre-Loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--primary-cta-hover-color);
  transition: opacity 1s ease;
}
@media (max-width: 767px) {
  #preloader .uk-text-center {
    top: -50px;
    position: relative;
  }
}

.loader-logo {
  max-width: 200px;
}

.loader-spinner {
  color: var(--secondary-color);
}

.loader-text {
  color: var(--white-color);
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

/* Layout */
.header-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.top-bar {
  width: 100%;
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 5px 0;
  transition: all 0.5s ease;
}
.top-bar .uk-flex {
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .top-bar .uk-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}
.top-bar span {
  vertical-align: middle;
  font-size: 12px;
  filter: opacity(1);
}
@media (min-width: 768px) {
  .top-bar span {
    font-size: 14px;
  }
}
.top-bar a {
  color: var(--white-color);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease;
  filter: opacity(1);
}
.top-bar a:hover {
  color: var(--white-color);
}
.top-bar .social {
  width: auto;
  display: inline-block;
  margin-left: 15px;
}

header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
}
@media (min-width: 960px) {
  header {
    top: 46px;
  }
}
header .header-logo {
  width: 160px;
}
@media (min-width: 768px) {
  header .header-logo {
    width: 200px;
  }
}
header ul.uk-navbar-nav {
  display: none;
}
@media (min-width: 960px) {
  header ul.uk-navbar-nav {
    display: flex;
  }
}
header ul.uk-navbar-nav li a {
  font-family: var(--title-fonts);
  font-size: 16px;
  color: var(--white-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  filter: opacity(1);
}
header ul.uk-navbar-nav li a:hover, header ul.uk-navbar-nav li a.uk-active {
  color: var(--header-active-color);
  text-shadow: none;
}
@media (min-width: 768px) {
  header ul.uk-navbar-nav li a {
    font-size: 18px;
  }
}
header ul.uk-navbar-nav li.uk-active a {
  color: var(--header-active-color);
}
header .uk-navbar-toggle {
  color: var(--highlight-color);
}
header .uk-navbar-toggle svg {
  width: 30px;
  height: 30px;
}
header .uk-navbar-toggle:hover {
  color: var(--white-color);
}

.isSticky .top-bar {
  transform: translateY(-100%);
}
.isSticky header {
  background: var(--bg-header);
  top: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
}

.nav-mobile-canvas > div {
  width: 100%;
  background: var(--neutral-dark);
}
@media (min-width: 960px) {
  .nav-mobile-canvas > div {
    display: none;
  }
}
.nav-mobile-canvas .uk-close {
  color: var(--highlight-color);
  padding: 20px;
}
.nav-mobile-canvas .uk-close svg {
  width: 30px;
}
.nav-mobile-canvas .nav-mobile {
  padding-top: 60px;
}
.nav-mobile-canvas .nav-mobile li {
  line-height: 60px;
}
.nav-mobile-canvas .nav-mobile li a {
  font-size: 36px;
  font-family: var(--title-fonts);
  justify-content: center;
  color: var(--neutral-mid);
}
.nav-mobile-canvas .nav-mobile li a:hover {
  color: var(--highlight-color);
}

.currentPageActive {
  color: var(--header-active-color) !important;
  text-shadow: none;
}

/* _footer.scss */
footer {
  background: var(--bg-footer);
  padding: 60px 0;
  color: var(--white-color);
}
footer .footer-box:last-child {
  margin-bottom: 30px;
}
@media (min-width: 960px) {
  footer .footer-box:last-child {
    margin-bottom: 0;
  }
}
footer .footer-logo {
  display: inline-block;
  width: 250px;
  margin-bottom: 20px;
}
@media (min-width: 786px) {
  footer .footer-logo {
    width: 300px;
  }
}
footer .social {
  margin: 30px 0 0 !important;
}
@media (min-width: 960px) {
  footer .social {
    margin: 30px 0 20px !important;
  }
}
footer .opening-hours {
  color: var(--white-color);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
footer .footer-links a {
  color: var(--white-color);
  font-size: 14px;
  transition: color 0.3s ease;
}
footer .footer-links a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline;
}
footer .footer-links a.currentPageActive {
  color: var(--header-active-color);
  font-weight: 600;
}
footer .footer-copyrights {
  margin-top: 40px;
  font-size: 13px;
  color: var(--white-color);
  text-align: center;
  opacity: 0.8;
}

/* _grid.scss placeholder */
/* Components */
/* _heroSlider.scss */
.hero-slider {
  width: 100%;
  position: relative;
  padding: 0;
}
.hero-slider .uk-position-cover {
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-slider .uk-slideshow,
.hero-slider .uk-slideshow-items {
  height: 500px;
}
@media (min-width: 640px) {
  .hero-slider .uk-slideshow,
  .hero-slider .uk-slideshow-items {
    height: initial;
  }
}
.hero-slider .slider-control-navs {
  z-index: 2;
  display: none;
}
@media (min-width: 768px) {
  .hero-slider .slider-control-navs {
    display: block;
  }
}
.hero-slider .slider-control-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .hero-slider .slider-control-dots {
    bottom: 20px;
  }
}

.hero-slider-content {
  position: relative;
  z-index: 3;
}
.hero-slider-content * {
  color: var(--white-color);
}
.hero-slider-content .title,
.hero-slider-content .description {
  border: solid thin var(--white-color);
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: normal;
  padding: 5px 0 5px 10px;
  margin: 0;
  font-size: 12px;
  filter: opacity(1);
}
@media (min-width: 640px) {
  .hero-slider-content .title,
  .hero-slider-content .description {
    letter-spacing: 10px;
    padding: 5px 0 5px 12px;
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .hero-slider-content .title,
  .hero-slider-content .description {
    letter-spacing: 15px;
    padding: 5px 0 5px 15px;
    font-size: 16px;
  }
}
.hero-slider-content .description {
  text-transform: none;
}
@media (min-width: 768px) {
  .hero-slider-content .description {
    text-transform: uppercase;
  }
}
.hero-slider-content .heading {
  font-family: var(--stylish-fonts);
  font-size: 40px;
  line-height: 1.2;
  filter: opacity(1);
}
@media (min-width: 640px) {
  .hero-slider-content .heading {
    font-size: 80px;
  }
}
@media (min-width: 1024px) {
  .hero-slider-content .heading {
    font-size: 150px;
  }
}
.hero-slider-content .description {
  letter-spacing: 2px;
  padding-right: 8px;
  margin-top: 20px;
}
@media (min-width: 640px) {
  .hero-slider-content .description {
    letter-spacing: 2.5px;
    padding-right: 9px;
  }
}
@media (min-width: 1024px) {
  .hero-slider-content .description {
    letter-spacing: 3px;
    padding-right: 10px;
    margin-top: 30px;
  }
}

.hero-inner {
  width: 100%;
  height: 400px;
  position: relative;
  margin: 0;
}
.hero-inner .uk-position-cover {
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-inner img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 640px) {
  .hero-inner {
    height: 500px;
  }
}
@media (min-width: 1024px) {
  .hero-inner {
    height: 600px;
  }
}
@media (min-width: 1400px) {
  .hero-inner {
    height: 700px;
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    height: 750px;
  }
}

.overview-section .overview-content {
  margin-bottom: 40px;
}
@media (min-width: 960px) {
  .overview-section .overview-content {
    margin-bottom: 0;
  }
}
.overview-section .overview-image {
  height: 600px;
}
@media (min-width: 960px) {
  .overview-section .overview-image {
    padding-left: 60px;
  }
}
.overview-section .overview-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.snippet-large-bgscroll {
  position: relative;
  margin: 0;
  padding: 155px 0;
  text-align: center;
  color: var(--white-color);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}
.snippet-large-bgscroll::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  filter: blur(5px);
  z-index: 0;
}
.snippet-large-bgscroll::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.snippet-large-bgscroll .sl-inner-content {
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .snippet-large-bgscroll .sl-inner-content {
    padding: 0 50px;
  }
}
.snippet-large-bgscroll .sl-inner-content h2 {
  margin-bottom: 20px;
  color: var(--highlight-color);
  filter: opacity(1);
}
.snippet-large-bgscroll .sl-inner-content p {
  max-width: 600px;
  font-size: 30px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--inverse-font-color);
  filter: opacity(1);
}
.snippet-large-bgscroll .sl-inner-content .offer-grid ul {
  margin: 0;
}
.snippet-large-bgscroll .sl-inner-content .offer-grid ul li {
  color: var(--inverse-font-color);
  font-weight: 700;
  display: inline;
  list-style-type: disc;
  padding-left: 10px;
  font-size: 18px;
  filter: opacity(1);
}
.snippet-large-bgscroll .sl-inner-content .cta-btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white-color);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.snippet-large-bgscroll .sl-inner-content .cta-btn:hover {
  background: var(--secondary-cta-hover-color);
}
.snippet-large-bgscroll.offer-grid-section {
  padding: 40px 0;
}
@media (min-width: 960px) {
  .snippet-large-bgscroll.offer-grid-section {
    padding: 80px 0;
  }
}
.snippet-large-bgscroll.offer-grid-section .sl-inner-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 20px;
}
@media (min-width: 960px) {
  .snippet-large-bgscroll.offer-grid-section .sl-inner-content {
    flex-wrap: initial;
    padding: 0 30px;
  }
}
.snippet-large-bgscroll.offer-grid-section .sl-inner-content .offer-grid {
  width: 100%;
  padding: 30px;
  border: solid 3px var(--white-color);
}
.snippet-large-bgscroll.offer-grid-section .sl-inner-content .offer-grid p {
  margin-bottom: 0;
}
.snippet-large-bgscroll.offer-grid-section .btn-group.btn-center {
  margin-top: 40px;
}
@media (min-width: 960px) {
  .snippet-large-bgscroll.offer-grid-section .btn-group.btn-center {
    margin-top: 80px;
  }
}
.snippet-large-bgscroll.offer-slider-section {
  padding: 40px 0;
}
@media (min-width: 960px) {
  .snippet-large-bgscroll.offer-slider-section {
    padding: 80px 0;
  }
}
.snippet-large-bgscroll.offer-slider-section .offer-grid {
  width: 100%;
  padding: 30px;
  border: solid 3px var(--white-color);
}
.snippet-large-bgscroll.offer-slider-section .slider-control-dots {
  position: relative;
  bottom: inherit;
}

/* _menu-cards.scss placeholder */
.menu-section {
  position: relative;
  margin: 0;
  padding: 50px 0;
}
.menu-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("./../../assets/images/bg-pattern-food.png");
  background-repeat: repeat;
  background-attachment: fixed;
  opacity: 0.03;
  z-index: 1;
}
.menu-section .menu-wrap {
  position: relative;
  padding: 3em 1.5em 0.5em 1.5em;
  background: linear-gradient(135deg, #fffdf7 0%, #f9f5e7 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1.5px dashed var(--border-color);
  border-radius: 15px;
  transition: all 0.6s ease;
  z-index: 2;
}
.menu-section .menu-wrap:hover {
  border-color: var(--secondary-color);
}
@media (min-width: 768px) {
  .menu-section .menu-wrap {
    border-radius: 25px;
  }
}
.menu-section .menu-wrap .menu-heading {
  margin-bottom: 30px;
}
.menu-section .menu-wrap .menu-heading .tagline {
  color: var(--primary-color);
  font-size: 52px;
}
.menu-section .menu-wrap [class^=drooleo-icon-], .menu-section .menu-wrap [class*=" drooleo-icon-"] {
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  font-size: 45px;
  color: var(--border-neutral);
}
.menu-section .menu-wrap [class^=drooleo-icon-] svg, .menu-section .menu-wrap [class*=" drooleo-icon-"] svg {
  width: inherit;
}
.menu-section .menus .menu-list {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1.5px dashed var(--border-neutral);
  transition: all 0.3s ease;
}
.menu-section .menus .menu-list:last-child {
  border-bottom: none;
}
.menu-section .menus .menu-list.menu_outOfStock {
  opacity: 0.5;
}
@media (min-width: 540px) {
  .menu-section .menus .menu-list {
    align-items: center;
  }
}
.menu-section .menus .menu-list .menu-image {
  height: 100px;
}
.menu-section .menus .menu-list .menu-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 540px) {
  .menu-section .menus .menu-list .menu-image {
    height: 150px;
    border-radius: 10px;
  }
}
.menu-section .menus .menu-list .menu-image > div {
  height: inherit;
}
.menu-section .menus .menu-list .menu-text {
  padding: 0 15px;
}
@media (min-width: 540px) {
  .menu-section .menus .menu-list .menu-text {
    padding: 15px;
  }
}
.menu-section .menus .menu-list .menu-text p {
  margin: 0;
}
.menu-section .menus .menu-list .menu-text .price {
  color: var(--secondary-color);
}
.menu-section .menus .menu-list .menu-text .menu-list-status {
  filter: opacity(1);
}
.menu-section .menus .menu-list:hover {
  border-color: var(--secondary-color);
}
.menu-section .menus .menu-list:hover .title {
  color: var(--secondary-color);
}
.menu-section .menus .menu-list:hover .menu-image {
  overflow: hidden;
}
.menu-section .menus .menu-list:hover .menu-image > div {
  transform: scale(1.1);
}

/* _gallery.scss placeholder */
.gallery-section-home {
  background: var(--bg1);
}

.gallery-list a {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}
.gallery-list a img {
  transform: scale(1);
  transition: ease all 0.5s;
}
.gallery-list a:hover img {
  transform: scale(1.1);
}

.offer-detail-section {
  position: relative;
  margin: 0;
  padding: 50px 0;
}
.offer-detail-section .section-head {
  margin-bottom: 20px;
}

.offer-banner {
  width: 100%;
}
.offer-banner .offer-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 960px) {
  .offer-banner .offer-content {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.offer-banner .offer-left {
  position: relative;
  font-family: var(--text-fonts);
  background: linear-gradient(135deg, #fffdf7 0%, #f9f5e7 100%);
  padding: 2rem;
  border-radius: 25px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  order: 2;
  border: solid 1px var(--secondary-dark);
}
@media (min-width: 960px) {
  .offer-banner .offer-left {
    border-radius: 50px 0;
    order: 1;
    flex: 1;
  }
}
.offer-banner .offer-left-inner {
  position: relative;
  z-index: 2;
}
.offer-banner .offer-right {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 960px) {
  .offer-banner .offer-right {
    order: 2;
    flex: 1;
  }
}
.offer-banner .offer-content .uk-grid {
  margin-left: -10px;
  margin-right: -10px;
}
.offer-banner .offer-content .uk-grid > * {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
}
.offer-banner .offer-content .offer-list-image .image-hover-zoom {
  border-radius: 10px;
}
.offer-banner .offer-content h2 {
  font-family: var(--title-fonts);
  color: var(--h2-font-color);
  margin-bottom: 0.5rem;
}
.offer-banner .offer-content h3 {
  font-family: var(--title-fonts);
  color: var(--h3-font-color);
  margin-bottom: 1rem;
}
.offer-banner .offer-content p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.offer-banner .offer-content .features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.offer-banner .offer-content .features .feature-box {
  width: 100%;
  position: relative;
  background: var(--white-color);
  color: var(--secondary-dark);
  padding: 14px 20px 14px 60px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  border: solid thin var(--secondary-dark);
  filter: opacity(1);
}
@media (min-width: 640px) {
  .offer-banner .offer-content .features .feature-box {
    width: auto;
  }
}
.offer-banner .offer-content .features .feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.offer-banner .offer-content .features .feature-box [class^=drooleo-icon-], .offer-banner .offer-content .features .feature-box [class*=" drooleo-icon-"] {
  color: var(--secondary-dark);
  font-size: 28px;
  padding-right: 10px;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.offer-banner .offer-content .contact-order {
  margin-top: 20px;
  font-weight: 600;
}
.offer-banner .offer-content .contact-order a {
  color: var(--primary-color);
  text-decoration: none;
}
.offer-banner .offer-content .contact-order a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.offer-banner .offer-content .contact-order .whatsappLink {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .offer-banner .offer-content .contact-order .whatsappLink {
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    bottom: -60px;
    margin-top: 0;
    z-index: 999;
    box-shadow: 1px -5px 12px rgba(9, 108, 108, 0.3803921569);
    transition: ease all 0.5s;
  }
}
.offer-banner .offer-content .contact-order .whatsappLink .btn {
  text-decoration: none;
}
@media (max-width: 767px) {
  .offer-banner .offer-content .contact-order .whatsappLink .btn {
    background: var(--primary-color);
    width: 100%;
    border-radius: 0;
    margin: 0;
    border-color: var(--primary-color);
    color: var(--highlight-color);
    font-size: 26px;
    line-height: 40px;
  }
}
.offer-banner .offer-content .contact-order .whatsappLink .btn span {
  vertical-align: middle;
}
.offer-banner .offer-content .contact-order .whatsappLink .btn span[class^=drooleo-icon-], .offer-banner .offer-content .contact-order .whatsappLink .btn span[class*=" drooleo-icon-"] {
  font-size: 24px;
}
.offer-banner .offer-content .website a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.offer-banner .offer-content .website a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Hide mobile slider by default */
.offer-slider-mobile {
  display: none;
}

/* Show slider ONLY for screen widths < 767px */
@media (max-width: 959px) {
  .offer-slider-mobile {
    display: block;
  }
  .offer-grid-desktop {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .isSticky .offer-banner .offer-content .contact-order .whatsappLink {
    bottom: 0;
  }
}
/* Pages */
/* _home.scss placeholder */
/* _contact.scss placeholder *//*# sourceMappingURL=style.css.map */