@charset "UTF-8";
:root {
  --PrimaryFontSize: 55px;
  --BlogTitleSize: 32px;
  --BlogDescSize: 20px;
  --SecondaryFontSize: 21px;
  --ColorPrimary: #E5504C;
  --ColorPrimaryInvert: #ffffff;
  --BlogColor: #E5504C54;
  --SecondaryColor: #ffffff;
  --Black: #000000;
  --FontHeading: "CormorantGaramond";
  --FontBody: "Jost";
  --SectionPadding: 70px;
}

/* ==============================
   Reset + Base
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "CormorantGaramond";
  src: url(../fonts/CormorantGaramond-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Jost";
  src: url(../fonts/Jost-VariableFont_wght.ttf);
}
html {
  scroll-behavior: auto;
}

.WebBtn {
  font-size: var(--SecondaryFontSize);
  font-family: var(--FontBody);
  padding: 10px 27px;
  font-weight: 400;
  background: var(--ColorPrimary);
  color: var(--SecondaryColor);
  border: none;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.WebBtn button .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
.WebBtn .label {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.WebBtn .label img {
  width: 30px;
  transition: 500ms all ease;
}
.WebBtn .transition {
  transition: 500ms cubic-bezier(0, 0, 0.2, 1);
  background-color: var(--SecondaryColor);
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.WebBtn:hover {
  color: var(--ColorPrimary);
}
.WebBtn:hover img {
  filter: brightness(0) invert(1);
}
.WebBtn:hover .transition {
  width: 14em;
  height: 14em;
}
.WebBtnWhite {
  font-size: var(--SecondaryFontSize);
  font-family: var(--FontBody);
  padding: 10px 27px;
  font-weight: 400;
  background: var(--SecondaryColor);
  color: var(--ColorPrimary);
  border: none;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.WebBtnWhite button .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: inherit;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
.WebBtnWhite .label {
  position: relative;
  top: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.WebBtnWhite .label img {
  width: 30px;
  transition: 500ms all ease;
}
.WebBtnWhite .transition {
  transition: 500ms cubic-bezier(0, 0, 0.2, 1);
  background: var(--ColorPrimary);
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.WebBtnWhite:hover {
  color: var(--SecondaryColor);
}
.WebBtnWhite:hover img {
  filter: brightness(0) invert(1);
}
.WebBtnWhite:hover .transition {
  width: 14em;
  height: 14em;
}
::-moz-selection {
  background: var(--ColorPrimary) !important;
  color: var(--SecondaryColor) !important;
  text-shadow: none;
}
::selection,
::-moz-selection {
  background: var(--ColorPrimary) !important;
  color: var(--SecondaryColor) !important;
  text-shadow: none;
}

html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}

body {
  background: url(../images/PageBg.svg);
  background-size: cover;
  font-family: var(--FontBody);
  font-weight: 300;
  /* stops native scroll */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--FontHeading);
}

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

img {
  width: 100%;
}

section {
  padding: var(--SectionPadding) 0;
  overflow: hidden;
}

.SectionTitle {
  margin-bottom: 27px;
}
.SectionTitle .Title {
  font-size: var(--PrimaryFontSize);
  color: var(--ColorPrimary);
  margin-bottom: 12px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}
.SectionTitle .Title::after {
  content: "";
  background: url("../images/TitleDecor.svg") no-repeat;
  background-size: contain;
  height: 50px;
  width: 50px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.SectionTitle p {
  font-size: var(--SecondaryFontSize);
  color: var(--SecondaryColor);
  font-weight: 200;
  max-width: 60%;
}

/* HEADER SECTION */
#Header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  /* From Uiverse.io by Cevorob */
  /* MENU + ANIMATIONS REMAIN SAME */
  /*
  * More from me link 🔥
  */
  /* Highlight the selected flag */
  /* Muted / inactive flag look */
}
#Header.darkHeader {
  background: url(../images/PageBg.svg) no-repeat;
  background-size: cover;
  position: fixed;
}
#Header.darkHeader .HeaderLogo {
  padding: 0;
}
#Header.darkHeader .HeaderLogo img {
  width: 120px;
}
#Header.darkHeader .HeaderMain {
  border-bottom: 1px solid transparent;
}
#Header.darkHeader .HeaderMain::after {
  opacity: 0;
}
#Header .WebBtn {
  margin: 0;
}
#Header .burger {
  position: relative;
  width: 40px;
  height: 34px;
  background: transparent;
  cursor: pointer;
  display: block;
}
#Header .burger input {
  display: none;
}
#Header .burger span {
  display: block;
  position: absolute;
  height: 5.5px;
  width: 100%;
  background: var(--SecondaryColor);
  border-radius: 30px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#Header .burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}
#Header .burger span:nth-of-type(2) {
  top: 50%;
  margin-left: 10px;
  transform: translateY(-50%);
  transform-origin: left center;
}
#Header .burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}
#Header .burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}
#Header .burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
#Header .burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}
#Header .HeaderMain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid var(--ColorPrimary);
  padding: 0 15px;
  position: relative;
  transition: 400ms all ease;
}
#Header .HeaderMain::after {
  content: "";
  position: absolute;
  bottom: -12px;
  height: 1px;
  width: 98%;
  background-color: var(--ColorPrimary);
  transition: 400ms all ease;
}
#Header .HeaderMain .Menu {
  width: 30%;
}
#Header .HeaderMain .Menu img {
  width: 60px;
}
#Header .HeaderLogo {
  width: 30%;
  padding: 5px 14px 10px;
  text-align: center;
  position: relative;
  z-index: 100;
  transition: 400ms all ease;
}
#Header .HeaderLogo img {
  width: 80%;
  max-width: 150px;
  transition: 400ms all ease;
}
#Header .SocialMedia {
  display: flex;
  gap: 24px;
  width: 30%;
  justify-content: end;
  position: relative;
  z-index: 100;
  align-items: center;
}
#Header .SocialMedia a {
  transition: 600ms ease;
}
#Header .SocialMedia {
  display: flex;
  gap: 24px;
  width: 30%;
  justify-content: end;
  position: relative;
  z-index: 100;
  align-items: center;
}
#Header .SocialMedia a {
  transition: 600ms all ease;
}
#Header .MenuWrapper {
  position: relative;
  z-index: 100;
  width: 30%;
  display: flex;
  gap: 32px;
  align-items: center;
}
#Header .MenuBtn {
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 100;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Header .MenuBtn i {
  margin-top: 3px;
}
#Header .MenuBtn img {
  width: 100%;
}
#Header .MenuBtn.active .btn i::before {
  content: "\f00d" !important;
}
#Header .btn i {
  font-size: 42px;
  color: #fff;
}
#Header .main-menu.open .btn i::before {
  content: "\f00d";
}
#Header .main-menu {
  position: fixed;
  top: -50%;
  left: -50%;
  height: 200%;
  width: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  visibility: hidden;
  z-index: 2;
  background-size: auto;
  transform: rotate(-15deg) translate3d(0, 0, 0);
}
#Header .main-menu::before, #Header .main-menu::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 80%;
  transform-origin: center center;
  transition: all 500ms ease;
  will-change: transform;
  z-index: -1;
  background: var(--Black);
  background-size: auto;
}
#Header .main-menu::before {
  top: 51%;
  transform: translate(100%, -100%) translate3d(0, 0, 0);
}
#Header .main-menu::after {
  top: 49%;
  transform: translate(-150%, 0%) translate3d(0, 0, 0);
  transition-delay: 100ms;
}
#Header .main-menu .nav {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 60px;
  list-style: none;
  counter-reset: menu-counter;
  margin-top: 65px;
  max-width: 1381px;
  width: 100%;
  justify-content: center;
  transform: rotate(15deg);
  gap: 14px 54px;
  font-family: "Analogist";
}
#Header .main-menu .nav__item {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-15px) translate3d(0, 0, 0);
  transition: all 100ms ease 100ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#Header .main-menu .nav__item a {
  -webkit-text-stroke: 8px rgba(245, 131, 31, 0);
  paint-order: stroke fill;
  color: var(--ColorPrimary);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 4px;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
  transition: 300ms all ease;
}
#Header .main-menu .nav .nav__item:hover a {
  color: var(--ColorPrimaryInvert);
}
#Header .main-menu.open {
  visibility: visible;
}
#Header .main-menu.open::before {
  animation: menu-in-left 500ms ease;
  transform: translate(-50%, -100%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
#Header .main-menu.open::after {
  animation: menu-in-right 500ms ease 100ms;
  transform: translate(-50%, 0%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
#Header .main-menu.open .nav__item {
  opacity: 1;
  transform: translateX(0px) translate3d(0, 0, 0);
  transition: all 250ms ease;
}
#Header .main-menu.open .nav__item:nth-child(0n) {
  transition-delay: 250ms;
}
#Header .main-menu.open .nav__item:nth-child(1n) {
  transition-delay: 300ms;
}
#Header .main-menu.open .nav__item:nth-child(2n) {
  transition-delay: 350ms;
}
#Header .main-menu.open .nav__item:nth-child(3n) {
  transition-delay: 400ms;
}
#Header .main-menu.open .nav__item:nth-child(4n) {
  transition-delay: 450ms;
}
#Header .main-menu.open .nav__item:nth-child(5n) {
  transition-delay: 500ms;
}
#Header .main-menu.open .nav__item:nth-child(6n) {
  transition-delay: 550ms;
}
#Header .main-menu.open .nav__item:nth-child(7n) {
  transition-delay: 600ms;
}
#Header .main-menu.open .nav__item:nth-child(8n) {
  transition-delay: 650ms;
}
#Header .main-menu.open .nav__item:nth-child(9n) {
  transition-delay: 700ms;
}
#Header .main-menu.open .nav__item:nth-child(10n) {
  transition-delay: 750ms;
}
#Header .main-menu.open .nav__item:nth-child(11n) {
  transition-delay: 800ms;
}
#Header .main-menu.open .nav__item:nth-child(12n) {
  transition-delay: 850ms;
}
#Header .main-menu.open .nav__item:nth-child(13n) {
  transition-delay: 900ms;
}
#Header .main-menu.open .nav__item:nth-child(14n) {
  transition-delay: 950ms;
}
#Header .main-menu.open .nav__item:nth-child(15n) {
  transition-delay: 1000ms;
}
#Header .main-menu.open .nav__item:nth-child(16n) {
  transition-delay: 1050ms;
}
#Header .main-menu.open .nav__item:nth-child(17n) {
  transition-delay: 1100ms;
}
#Header .main-menu.open .nav__item:nth-child(18n) {
  transition-delay: 1150ms;
}
#Header .main-menu.open .nav__item:nth-child(19n) {
  transition-delay: 1200ms;
}
#Header .main-menu.open .nav__item:nth-child(20n) {
  transition-delay: 1250ms;
}
#Header .main-menu.open .nav__item a {
  transition: all 250ms ease;
}
@keyframes menu-in-left {
  0% {
    transform: translate(-150%, -100%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, -100%) translate3d(0, 0, 0);
  }
}
@keyframes menu-in-right {
  0% {
    transform: translate(100%, 0%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, 0%) translate3d(0, 0, 0);
  }
}
#Header .content {
  max-width: 400px;
}
#Header .content h1 {
  font-size: 1.6em;
}
#Header .content p {
  line-height: 1.5;
}
#Header .more {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 7px 21px;
  border-radius: 8px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  animation: reveal 5000ms cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
#Header .more::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 20%;
  height: 100%;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0);
  transition: max-width 0ms ease 250ms, background-color 250ms ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#Header .more:hover::before {
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 250ms ease;
}
@keyframes reveal {
  0%, 90% {
    bottom: -30px;
  }
  100% {
    bottom: 15px;
  }
}
#Header .social-media {
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1000;
  position: fixed;
  bottom: 37%;
  left: 24%;
  transform: rotate(15deg) !important;
}
#Header .social-media a {
  transition: 500ms;
}
#Header .social-media a:hover {
  transform: scale(1.05);
}
#Header .ContactItem {
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1000;
  position: fixed;
  bottom: 16.5%;
  right: 29%;
  transform: rotate(15deg) !important;
}
#Header .ContactItem .HeaderItem {
  display: flex;
  align-items: center;
  gap: 14px;
}
#Header .ContactItem .HeaderItem a {
  font-size: 24px !important;
}
#Header .ContactItem .HeaderItem a:hover {
  color: #F5821F;
}
#Header .CountryToggle {
  height: -moz-min-content;
  height: min-content;
  background: #000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: 2px solid var(--SecondaryColor);
  overflow: hidden;
}
#Header .Flag {
  -o-object-fit: cover;
     object-fit: cover;
  padding: 7px;
  background: transparent;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
#Header .ActiveFlag {
  background: var(--SecondaryColor);
  border-color: var(--SecondaryColor);
  filter: brightness(1);
}
#Header .Flag:not(.ActiveFlag) {
  opacity: 0.5;
}

#Hero {
  position: relative;
  height: 100vh;
  /* Smooth upscale + down animation */
}
#Hero .HeroContent {
  padding: 130px 0;
}
#Hero .HeroContent .SectionTitle .Title {
  color: var(--SecondaryColor);
  margin: 0;
  margin-bottom: 12px;
}
#Hero .HeroContent .SectionTitle .Title::after {
  display: none;
}
#Hero .WebBtn {
  overflow: hidden;
  display: inline-block;
}
#Hero .SocialMediaStrip {
  bottom: 23%;
  width: 58%;
  padding: 20px;
  background: rgba(229, 80, 76, 0.1215686275);
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 42px;
  z-index: 0;
}
#Hero .SocialMediaStrip a img {
  transition: 500ms all ease;
  width: 70px;
}
#Hero .SocialMediaStrip a:hover img {
  transform: scale(0.9);
}
#Hero .HeroImages {
  position: relative;
  width: 100%;
  z-index: 10;
}
#Hero .HeroImages .BgHero img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px 0 150px 0;
}
#Hero .HeroImages .BowlRight {
  position: absolute;
  max-width: 300px;
  bottom: 20px;
  left: -240px;
  max-width: 500px;
  z-index: 10;
}
#Hero .HeroImages .BowlBottom {
  position: absolute;
  top: 20px;
  right: -165px;
  max-width: 320px;
  z-index: 10;
}
#Hero .BowlRight img,
#Hero .BowlBottom img {
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: auto;
  /* enables hover */
}
#Hero .HeroImages {
  position: relative;
  overflow: visible;
}
#Hero .HeroDecor {
  max-width: 300px;
  position: absolute;
  bottom: 60px;
  left: -60px;
  z-index: 10;
  /* Animation settings */
  transform-origin: left bottom;
  animation: decorScaleFloat 6s ease-in-out infinite;
}
@keyframes decorScaleFloat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
    /* soft luxury scale */
  }
  100% {
    transform: scale(1);
  }
}

#AboutUs {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  height: 100vh;
  position: relative;
  /* --- LINE DRAWING ANIMATION --- */
  /* === GLOBAL SVG FLOATING / SWIRL === */
  /* === DRAW + BOUNCE FOR ALL PATHS IMMEDIATELY === */
  /* Draw Effect */
  /* Bounce Loop */
  /* Floating Swirl */
}
#AboutUs .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 82vh;
  position: relative;
}
#AboutUs .AboutUsImg {
  position: absolute;
  right: 0;
  bottom: -50px;
}
#AboutUs::before {
  content: "";
  background: #EBEBEB;
  height: 48%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#AboutUs .AboutUsContent .SectionTitle {
  text-align: right;
}
#AboutUs .AboutUsContent .SectionTitle .Title {
  color: var(--Black);
  margin: 40px 0 12px;
  margin-left: auto;
}
#AboutUs .AboutUsContent .SectionTitle p {
  margin-left: auto;
  text-align: right !important;
  color: var(--Black);
  font-weight: 300;
  max-width: 750px;
}
#AboutUs .GoalsContent {
  position: relative;
}
#AboutUs .GoalsContent .SectionTitle {
  text-align: left;
}
#AboutUs .GoalsContent .SectionTitle .Title {
  color: var(--Black);
  margin: 40px 0 12px;
}
#AboutUs .GoalsContent .SectionTitle p {
  color: var(--Black);
  font-weight: 300;
  max-width: 750px;
}
#AboutUs #food-svg {
  position: absolute;
  top: 48%;
  left: 42%;
  transform: translate(-50%, -50%) !important;
  width: 90%;
}
#AboutUs #food-svg {
  animation: float 6s ease-in-out infinite;
  transform-origin: center center;
  transform-box: fill-box;
}
#AboutUs #food-svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bounce 2.6s ease-in-out infinite 3s;
}
#AboutUs #food-svg path:nth-child(1) {
  animation-delay: 0s;
}
#AboutUs #food-svg path:nth-child(2) {
  animation-delay: -0.2s;
}
#AboutUs #food-svg path:nth-child(3) {
  animation-delay: -0.4s;
}
#AboutUs #food-svg path:nth-child(4) {
  animation-delay: -0.6s;
}
#AboutUs #food-svg path:nth-child(5) {
  animation-delay: -0.8s;
}
#AboutUs #food-svg path:nth-child(6) {
  animation-delay: -1s;
}
#AboutUs #food-svg path:nth-child(7) {
  animation-delay: -1.2s;
}
#AboutUs #food-svg path:nth-child(8) {
  animation-delay: -1.4s;
}
#AboutUs #food-svg path:nth-child(9) {
  animation-delay: -1.6s;
}
#AboutUs #food-svg path:nth-child(10) {
  animation-delay: -1.8s;
}
#AboutUs #food-svg path:nth-child(11) {
  animation-delay: -2s;
}
#AboutUs #food-svg path:nth-child(12) {
  animation-delay: -2.2s;
}
#AboutUs #food-svg path:nth-child(13) {
  animation-delay: -2.4s;
}
#AboutUs #food-svg path:nth-child(14) {
  animation-delay: -2.6s;
}
#AboutUs #food-svg path:nth-child(15) {
  animation-delay: -2.8s;
}
#AboutUs #food-svg path:nth-child(16) {
  animation-delay: -3s;
}
#AboutUs #food-svg path:nth-child(17) {
  animation-delay: -3.2s;
}
#AboutUs #food-svg path:nth-child(18) {
  animation-delay: -3.4s;
}
#AboutUs #food-svg path:nth-child(19) {
  animation-delay: -3.6s;
}
#AboutUs #food-svg path:nth-child(20) {
  animation-delay: -3.8s;
}
#AboutUs #food-svg path:nth-child(21) {
  animation-delay: -4s;
}
#AboutUs #food-svg path:nth-child(22) {
  animation-delay: -4.2s;
}
#AboutUs #food-svg path:nth-child(23) {
  animation-delay: -4.4s;
}
#AboutUs #food-svg path:nth-child(24) {
  animation-delay: -4.6s;
}
#AboutUs #food-svg path:nth-child(25) {
  animation-delay: -4.8s;
}
#AboutUs #food-svg path:nth-child(26) {
  animation-delay: -5s;
}
#AboutUs #food-svg path:nth-child(27) {
  animation-delay: -5.2s;
}
#AboutUs #food-svg path:nth-child(28) {
  animation-delay: -5.4s;
}
#AboutUs #food-svg path:nth-child(29) {
  animation-delay: -5.6s;
}
#AboutUs #food-svg path:nth-child(30) {
  animation-delay: -5.8s;
}
#AboutUs #food-svg path:nth-child(31) {
  animation-delay: -6s;
}
#AboutUs #food-svg path:nth-child(32) {
  animation-delay: -6.2s;
}
#AboutUs #food-svg path:nth-child(33) {
  animation-delay: -6.4s;
}
#AboutUs #food-svg path:nth-child(34) {
  animation-delay: -6.6s;
}
#AboutUs #food-svg path:nth-child(35) {
  animation-delay: -6.8s;
}
#AboutUs #food-svg path:nth-child(36) {
  animation-delay: -7s;
}
#AboutUs #food-svg path:nth-child(37) {
  animation-delay: -7.2s;
}
#AboutUs #food-svg path:nth-child(38) {
  animation-delay: -7.4s;
}
#AboutUs #food-svg path:nth-child(39) {
  animation-delay: -7.6s;
}
#AboutUs #food-svg path:nth-child(40) {
  animation-delay: -7.8s;
}
#AboutUs #food-svg path:nth-child(41) {
  animation-delay: -8s;
}
#AboutUs #food-svg path:nth-child(42) {
  animation-delay: -8.2s;
}
#AboutUs #food-svg path:nth-child(43) {
  animation-delay: -8.4s;
}
#AboutUs #food-svg path:nth-child(44) {
  animation-delay: -8.6s;
}
#AboutUs #food-svg path:nth-child(45) {
  animation-delay: -8.8s;
}
#AboutUs #food-svg path:nth-child(46) {
  animation-delay: -9s;
}
#AboutUs #food-svg path:nth-child(47) {
  animation-delay: -9.2s;
}
#AboutUs #food-svg path:nth-child(48) {
  animation-delay: -9.4s;
}
#AboutUs #food-svg path:nth-child(49) {
  animation-delay: -9.6s;
}
#AboutUs #food-svg path:nth-child(50) {
  animation-delay: -9.8s;
}
#AboutUs #food-svg path:nth-child(51) {
  animation-delay: -10s;
}
#AboutUs #food-svg path:nth-child(52) {
  animation-delay: -10.2s;
}
#AboutUs #food-svg path:nth-child(53) {
  animation-delay: -10.4s;
}
#AboutUs #food-svg path:nth-child(54) {
  animation-delay: -10.6s;
}
#AboutUs #food-svg path:nth-child(55) {
  animation-delay: -10.8s;
}
#AboutUs #food-svg path:nth-child(56) {
  animation-delay: -11s;
}
#AboutUs #food-svg path:nth-child(57) {
  animation-delay: -11.2s;
}
#AboutUs #food-svg path:nth-child(58) {
  animation-delay: -11.4s;
}
#AboutUs #food-svg path:nth-child(59) {
  animation-delay: -11.6s;
}
#AboutUs #food-svg path:nth-child(60) {
  animation-delay: -11.8s;
}
#AboutUs #food-svg path:nth-child(61) {
  animation-delay: -12s;
}
#AboutUs #food-svg path:nth-child(62) {
  animation-delay: -12.2s;
}
#AboutUs #food-svg path:nth-child(63) {
  animation-delay: -12.4s;
}
#AboutUs #food-svg path:nth-child(64) {
  animation-delay: -12.6s;
}
#AboutUs #food-svg path:nth-child(65) {
  animation-delay: -12.8s;
}
#AboutUs #food-svg path:nth-child(66) {
  animation-delay: -13s;
}
#AboutUs #food-svg path:nth-child(67) {
  animation-delay: -13.2s;
}
#AboutUs #food-svg path:nth-child(68) {
  animation-delay: -13.4s;
}
#AboutUs #food-svg path:nth-child(69) {
  animation-delay: -13.6s;
}
#AboutUs #food-svg path:nth-child(70) {
  animation-delay: -13.8s;
}
#AboutUs #food-svg path:nth-child(71) {
  animation-delay: -14s;
}
#AboutUs #food-svg path:nth-child(72) {
  animation-delay: -14.2s;
}
#AboutUs #food-svg path:nth-child(73) {
  animation-delay: -14.4s;
}
#AboutUs #food-svg path:nth-child(74) {
  animation-delay: -14.6s;
}
#AboutUs #food-svg path:nth-child(75) {
  animation-delay: -14.8s;
}
#AboutUs #food-svg path:nth-child(76) {
  animation-delay: -15s;
}
#AboutUs #food-svg path:nth-child(77) {
  animation-delay: -15.2s;
}
#AboutUs #food-svg path:nth-child(78) {
  animation-delay: -15.4s;
}
#AboutUs #food-svg path:nth-child(79) {
  animation-delay: -15.6s;
}
#AboutUs #food-svg path:nth-child(80) {
  animation-delay: -15.8s;
}
#AboutUs #food-svg path:nth-child(81) {
  animation-delay: -16s;
}
#AboutUs #food-svg path:nth-child(82) {
  animation-delay: -16.2s;
}
#AboutUs #food-svg path:nth-child(83) {
  animation-delay: -16.4s;
}
#AboutUs #food-svg path:nth-child(84) {
  animation-delay: -16.6s;
}
#AboutUs #food-svg path:nth-child(85) {
  animation-delay: -16.8s;
}
#AboutUs #food-svg path:nth-child(86) {
  animation-delay: -17s;
}
#AboutUs #food-svg path:nth-child(87) {
  animation-delay: -17.2s;
}
#AboutUs #food-svg path:nth-child(88) {
  animation-delay: -17.4s;
}
#AboutUs #food-svg path:nth-child(89) {
  animation-delay: -17.6s;
}
#AboutUs #food-svg path:nth-child(90) {
  animation-delay: -17.8s;
}
#AboutUs #food-svg path:nth-child(91) {
  animation-delay: -18s;
}
#AboutUs #food-svg path:nth-child(92) {
  animation-delay: -18.2s;
}
#AboutUs #food-svg path:nth-child(93) {
  animation-delay: -18.4s;
}
#AboutUs #food-svg path:nth-child(94) {
  animation-delay: -18.6s;
}
#AboutUs #food-svg path:nth-child(95) {
  animation-delay: -18.8s;
}
#AboutUs #food-svg path:nth-child(96) {
  animation-delay: -19s;
}
#AboutUs #food-svg path:nth-child(97) {
  animation-delay: -19.2s;
}
#AboutUs #food-svg path:nth-child(98) {
  animation-delay: -19.4s;
}
#AboutUs #food-svg path:nth-child(99) {
  animation-delay: -19.6s;
}
#AboutUs #food-svg path:nth-child(100) {
  animation-delay: -19.8s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-3px, 4px) rotate(1deg);
  }
  50% {
    transform: translate(3px, -3px) rotate(-1deg);
  }
  75% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

#BookTable .col-lg-4 {
  width: 30%;
  padding: 20px;
}
#BookTable .FormMain {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
#BookTable .FormMain .WebBtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: 2px solid var(--ColorPrimary);
  margin: auto;
  margin-top: 14px;
}
#BookTable .FormMain .WebBtn:hover input {
  color: var(--ColorPrimary);
}
#BookTable .FormMain .WebBtn input {
  background: transparent;
  border: none;
  padding: 6px 32px;
  color: var(--SecondaryColor);
  transition: 400ms all ease;
}
#BookTable .FormMain .BookingBox {
  width: 100%;
  background: var(--SecondaryColor);
  padding: 35px 50px;
  border-radius: 6px 144px 6px 144px;
  text-align: center;
  font-family: var(--FontBody);
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
#BookTable .FormMain .BookingBox .SectionTitle .Title {
  color: var(--Black);
  margin-top: 0;
}
#BookTable .FormMain .BookingBox .BookingForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#BookTable .FormMain .BookingBox .BookingForm .FormGroup select,
#BookTable .FormMain .BookingBox .BookingForm .FormGroup input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-bottom: 1.5px solid #ccc;
  font-size: var(--SecondaryFontSize);
  outline: none;
  background: transparent;
  transition: 0.3s ease;
  font-size: var(--SecondaryFontSize);
  font-family: var(--FontBody);
}
#BookTable .FormMain .BookingBox .BookingForm .FormGroup select:focus,
#BookTable .FormMain .BookingBox .BookingForm .FormGroup input:focus {
  border-color: var(--ColorPrimary);
}
#BookTable .FormMain .BookingBox .BookingForm .FormGroup {
  position: relative;
}
#BookTable .FormMain .BookingBox .BookingForm .FormGroup label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #000;
  pointer-events: none;
  background: #fff;
  padding: 0 6px;
  transition: 0.25s ease;
  width: 100%;
  text-align: left;
  font-weight: 400;
  font-size: var(--SecondaryFontSize);
  font-family: var(--FontBody);
}
#BookTable .FormMain .BookingBox .BookingForm .FormGroup input:focus + label,
#BookTable .FormMain .BookingBox .BookingForm .FormGroup input:valid + label {
  top: -8px;
  font-size: var(--SecondaryFontSize);
  color: #000;
  opacity: 0;
  font-family: var(--FontBody);
}
#BookTable .FormMain .BookingBox .BookingForm .BtnBook {
  background: var(--ColorPrimary);
  color: var(--ColorPrimary) -Invert;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: var(--SecondaryFontSize);
  font-family: var(--FontBody);
  transition: 0.3s;
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
}
#BookTable .FormMain .BookingBox .BookingForm .BtnBook:hover {
  background: color-mix(in srgb, var(--ColorPrimary) 90%, black);
}

#VideoSection {
  padding: 0;
}
#VideoSection video {
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin: 0;
  -o-object-position: bottom;
     object-position: bottom;
}

#Gallery .SectionTitle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
#Gallery .SectionTitle .Title {
  margin: 0;
  color: var(--SecondaryColor);
}
#Gallery .SectionTitle p {
  text-align: right;
}
#Gallery .swiper-slide {
  opacity: 1 !important;
}
#Gallery img {
  box-shadow: 0px 0px 4px 2px rgba(255, 255, 255, 0.2509803922);
  border-radius: 6px;
  margin: 4px;
}

#Menu {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Menu .WebBtn {
  display: inline-block;
  margin-top: 42px;
}
#Menu .MenuInner {
  position: relative;
  text-align: center;
  /* Images inside the section */
}
#Menu .MenuInner .SectionTitle {
  margin-bottom: 42px;
}
#Menu .MenuInner .SectionTitle .Title {
  color: var(--SecondaryColor);
}
#Menu .MenuInner .SectionTitle p {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 12px;
}
#Menu .MenuInner .MenuList {
  padding: 0;
  list-style: none;
  width: 100%;
  border-top: 1px solid #3A3939;
  border-bottom: 1px solid #3A3939;
}
#Menu .MenuInner .MenuList .MenuItem.active .MenuName {
  color: #fff;
}
#Menu .MenuInner .MenuList .MenuItem {
  width: 100%;
  padding: 36px 0;
  cursor: pointer;
  border-top: 1px solid #3A3939;
  transition: color 0.3s ease;
}
#Menu .MenuInner .MenuList .MenuItem:first-child {
  border-top: none;
}
#Menu .MenuInner .MenuList .MenuItem .MenuLabel {
  font-size: 12px;
  opacity: 0.55;
  letter-spacing: 0.22em;
}
#Menu .MenuInner .MenuList .MenuItem .MenuName {
  display: block;
  font-size: 32px;
  margin-top: 4px;
  letter-spacing: 2px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5411764706);
}
#Menu .MenuInner .MenuList .MenuItem:hover .MenuName {
  color: #fff;
}
#Menu .MenuInner .MenuButton {
  margin-top: 35px;
  padding: 12px 32px;
  background: #ff8a66;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
}
#Menu .MenuInner .MenuImgContainer .MenuImg {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px) scale(1.04);
  box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.2509803922);
}
#Menu .MenuInner .MenuImgContainer .MenuImg.ImgA {
  width: 160px;
  left: 30%;
  top: 32%;
}
#Menu .MenuInner .MenuImgContainer .MenuImg.ImgB {
  right: 4%;
  top: 28%;
  width: 300px;
}
#Menu .MenuInner .MenuImgContainer .MenuImg.ImgC {
  left: 10%;
  bottom: 10%;
  width: 250px;
}

#OpeningHours {
  background: var(--SecondaryColor);
}
#OpeningHours .InfoWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}
#OpeningHours .InfoWrapper .ItemTypes {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 40px 0;
}
#OpeningHours .InfoWrapper .ItemTypes .ItemName {
  text-align: center;
  font-size: var(--SecondaryFontSize);
  margin-top: 18px;
}
#OpeningHours .InfoWrapper .SectionTitle {
  padding: 0 24px 100px;
}
#OpeningHours .InfoWrapper .SectionTitle .Title {
  margin: 0 0 42px;
  color: var(--Black);
}
#OpeningHours .InfoWrapper .SectionTitle p {
  font-weight: 400;
  color: var(--Black);
  max-width: 100%;
}

#Blogs .SectionTitle {
  text-align: center;
  padding-bottom: 20px;
}
#Blogs .SectionTitle .Title {
  color: var(--SecondaryColor);
}
#Blogs .WebBtn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: 2px solid var(--ColorPrimary);
  margin: auto;
  margin-top: 14px;
}
#Blogs .WebBtn:hover input {
  color: var(--ColorPrimary);
}
#Blogs .WebBtn input {
  background: transparent;
  border: none;
  padding: 6px 32px;
  color: var(--SecondaryColor);
  transition: 400ms all ease;
}
#Blogs.BlogPage {
  padding-top: 0;
}
#Blogs.BlogPage .BlogsMain {
  max-width: 100%;
}
#Blogs.BlogPage .BlogsMain .WebBtnWhite {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  border: 2px solid var(--SecondaryColor);
  margin: auto;
  margin-top: 14px;
}
#Blogs.BlogPage .BlogsMain .WebBtnWhite:hover input {
  color: var(--SecondaryColor);
}
#Blogs.BlogPage .BlogsMain .WebBtnWhite input {
  background: transparent;
  border: none;
  padding: 6px 32px;
  color: var(--ColorPrimary);
  transition: 400ms all ease;
}
#Blogs .BlogsMain {
  max-width: 1280px;
  margin: auto;
}
#Blogs .BlogsMain .BlogCard {
  background: #F3F2F0;
  overflow: hidden;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
  transition: 500ms all ease;
}
#Blogs .BlogsMain .BlogCard:hover {
  transform: translateY(-5px);
}
#Blogs .BlogsMain .BlogCard:hover .BlogDesc .ReadMore {
  color: var(--ColorPrimary) !important;
}
#Blogs .BlogsMain .BlogCard .BlogImageWrapper {
  position: relative;
}
#Blogs .BlogsMain .BlogCard .BlogImageWrapper .BlogImage {
  width: 100%;
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#Blogs .BlogsMain .BlogCard .BlogImageWrapper .BlogTag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--ColorPrimary);
  color: var(--SecondaryColor);
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 4px;
}
#Blogs .BlogsMain .BlogCard .BlogContent {
  padding: 20px;
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogTitle {
  font-size: var(--BlogTitleSize);
  font-weight: 600;
  margin-bottom: 10px;
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogDesc {
  color: rgba(0, 0, 0, 0.7019607843);
  font-size: var(--SecondaryFontSize);
  margin-bottom: 20px;
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogDesc .ReadMore {
  color: var(--BlogColor);
  font-weight: 400;
  text-decoration: none;
  transition: 400ms all ease;
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogDesc .ReadMore:hover {
  color: var(--ColorPrimary);
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogFooter .Publisher {
  display: flex;
  align-items: center;
  gap: 14px;
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogFooter .Publisher .PublisherImg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  aspect-ratio: 1/1;
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogFooter .Publisher .PublisherName {
  font-size: 16px;
  color: var(--Black);
}
#Blogs .BlogsMain .BlogCard .BlogContent .BlogFooter .BlogDate {
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  height: 22px;
  color: rgba(0, 0, 0, 0.5843137255);
}
#Blogs .BlogsMain .categories-box {
  width: 100%;
  padding: 32px 14px;
  border-radius: 18px;
  box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.1803921569);
  text-align: center;
  background: var(--SecondaryColor);
}
#Blogs .BlogsMain .categories-box .SectionTitle {
  margin: 0;
}
#Blogs .BlogsMain .categories-box .SectionTitle .Title {
  color: var(--Black);
  margin: 0 auto 0 !important;
}
#Blogs .BlogsMain .categories-box .SectionTitle .Title::after {
  display: none;
}
#Blogs .BlogsMain .categories-box .category-item {
  margin: 14px 0;
  background: rgba(255, 255, 255, 0.5019607843);
  padding: 16px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 14px;
  transition: 300ms all ease;
  border: 1.5px solid var(--ColorPrimary);
  opacity: 0.7;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}
#Blogs .BlogsMain .categories-box .category-item:hover {
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.0784313725), 0px 0px 14px 0px rgba(0, 0, 0, 0.0784313725);
  background-color: #ffffff;
  opacity: 1;
  transform: scale(0.97);
}
#Blogs .BlogsMain .BlogForm {
  width: 100%;
}
#Blogs .BlogsMain .BlogForm .SectionTitle {
  margin: 0;
}
#Blogs .BlogsMain .BlogForm .SectionTitle .Title {
  margin: 0 auto 0;
}
#Blogs .BlogsMain .BlogForm .SectionTitle .Title::after {
  display: none;
}
#Blogs .BlogsMain .BookingBox {
  width: 100%;
  background: var(--ColorPrimary);
  padding: 20px 20px;
  border-radius: 18px;
  text-align: center;
  font-family: var(--FontBody);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 36px 0 0;
}
#Blogs .BlogsMain .BookingBox .SectionTitle {
  margin: 0;
}
#Blogs .BlogsMain .BookingBox .SectionTitle .Title {
  margin: 0 auto 0;
}
#Blogs .BlogsMain .BookingBox .SectionTitle .Title::after {
  display: none;
}
#Blogs .BlogsMain .BookingBox .BookingForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup select,
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-bottom: 1.5px solid #000;
  font-size: var(--SecondaryFontSize);
  outline: none;
  background: transparent;
  transition: 0.3s ease;
  color: var(--Black);
  filter: invert(1);
}
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup select:focus,
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup input:focus {
  border-color: var(--Black);
}
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup {
  position: relative;
}
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #fff;
  pointer-events: none;
  background: var(--ColorPrimary);
  padding: 0 6px;
  transition: 0.25s ease;
  width: 100%;
  text-align: left;
}
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup input:focus + label,
#Blogs .BlogsMain .BookingBox .BookingForm .FormGroup input:valid + label {
  top: -8px;
  font-size: 12px;
  color: #000;
  opacity: 0;
}

#Footer {
  background: url(../images/FooterBg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 10px;
}
#Footer .CallIcon {
  transition: 500ms all ease;
  color: #fff;
}
#Footer .CallIcon img {
  transition: 500ms all ease;
}
#Footer .CallIcon:hover {
  color: var(--ColorPrimary);
}
#Footer .CallIcon:hover img {
  transform: scale(1.1);
}
#Footer .WebBtn {
  display: inline-block;
  margin: auto;
  margin-bottom: 24px;
}
#Footer .SectionTitle {
  text-align: center;
}
#Footer .SectionTitle p {
  max-width: 100%;
  margin-bottom: 0;
}
#Footer .SectionTitle h3 {
  color: var(--SecondaryColor);
  padding-bottom: 20px;
}
#Footer .SectionTitle .Text {
  max-width: 100%;
}
#Footer .SectionTitle .Button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
#Footer .SocialIcon {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  padding: 20px 0 40px;
}
#Footer .SocialIcon a {
  transition: 500ms all ease;
}
#Footer .SocialIcon a:hover {
  transform: scale(0.9);
}
#Footer .FooterBottom {
  text-align: center;
}
#Footer .FooterBottom p {
  color: var(--SecondaryColor);
  margin-bottom: 0;
}

#Testimonials {
  background: var(--SecondaryColor);
  padding: 20px 0 70px;
  /* Owl Wrapper */
  /* Each Slide Wrapper */
  /* Active Center Item */
  /* Testimonial Card */
  /* Remove the logo overlay from original code */
}
#Testimonials .SectionTitle {
  text-align: center;
}
#Testimonials .SectionTitle .Title {
  color: var(--Black);
  font-weight: 600;
}
#Testimonials .owl-carousel {
  margin-top: 40px;
  position: relative;
}
#Testimonials .item {
  opacity: 1;
  width: 100%;
  margin: 0 20px;
  transition: 0.4s ease;
}
@media (max-width: 1000px) {
  #Testimonials .item {
    margin: 0;
    transform: scale(0.9);
  }
}
#Testimonials .TestimonialCard {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 25px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#Testimonials .profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#Testimonials .Review {
  font-size: --SecondaryFontSize;
  color: #555;
  margin-bottom: 10px;
}
#Testimonials .Stars {
  font-size: 18px;
  color: #ff4d4d;
}
#Testimonials .owl-carousel::after {
  display: none !important;
}

/* Peek effect for left + right slides */
.swiper-slide {
  opacity: 0.6;
  transition: 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1.03);
}

#BannerSection {
  padding: 60px 0;
}
#BannerSection .BannerImg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
#BannerSection .BannerImg::after {
  content: "";
  background: rgba(0, 0, 0, 0.2941176471);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
#BannerSection .BannerImg video,
#BannerSection .BannerImg img {
  max-height: 350px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#BannerSection .SectionTitle {
  position: absolute;
  top: 47%;
  left: 12%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#BannerSection .SectionTitle .Title {
  margin: 0;
  color: var(--SecondaryColor);
}

#ContactMap {
  padding: 20px 0 70px;
  position: relative;
  /* RESPONSIVE */
}
#ContactMap iframe {
  border-radius: 24px;
  filter: grayscale(100%);
}
#ContactMap .DetailsCard {
  position: absolute;
  bottom: 120px;
  background: var(--ColorPrimary);
  padding: 20px;
  border-radius: 8px;
  width: 20%;
  z-index: 5;
  margin: 52px 40px -10px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  color: var(--ColorPrimaryInvert);
}
#ContactMap .DetailsCard .CardHeading {
  font-weight: 600;
  font-size: var(--BlogDescSize);
  margin-bottom: 12px;
}
#ContactMap .DetailsCard .DetailsList {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}
#ContactMap .DetailsCard .DetailsList li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: var(--SecondaryFontSize);
}
#ContactMap .DetailsCard .TimingRow {
  font-size: var(--SecondaryFontSize);
  margin-bottom: 18px;
}
#ContactMap .DetailsCard .TimingRow span {
  font-weight: 600;
  margin-left: 6px;
}
#ContactMap .DetailsCard .SocialIcon {
  margin-top: 20px;
}
#ContactMap .DetailsCard .SocialIcon a {
  font-size: var(--SecondaryFontSize);
  color: #000;
  transition: 0.3s;
}
#ContactMap .DetailsCard .SocialIcon a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  #ContactMap .DetailsCard {
    margin: 0 0 25px 0;
    padding: 25px;
  }
  #ContactMap .MapWrapper {
    height: 300px;
  }
}

#ContactInfo {
  background: var(--ColorPrimaryInvert);
  text-align: center;
}
#ContactInfo .SectionTitle .Title {
  color: var(--Black);
}
#ContactInfo .SectionTitle p {
  text-align: center;
  max-width: 100%;
  color: var(--Black);
}
#ContactInfo .row {
  max-width: 1200px;
  margin: auto;
}
#ContactInfo .info-box {
  padding: 50px;
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 500ms all ease;
}
#ContactInfo .info-box:hover {
  transform: scale(0.95);
  background: #EBEBEB;
}
#ContactInfo .info-box:hover .info-text {
  font-weight: 500;
}
#ContactInfo .info-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  opacity: 0.85;
}
#ContactInfo .info-title {
  font-size: var(--BlogTitleSize);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ColorPrimary);
}
#ContactInfo .info-text {
  font-size: var(--SecondaryFontSize);
  margin: 0;
  color: var(--Black);
  line-height: 22px;
  transition: 500ms all ease;
}

#ContactForm {
  padding: 100px 0 !important;
  text-align: center;
}
#ContactForm .MapWrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
#ContactForm .MapWrapper .DetailsCard {
  position: absolute;
  bottom: 40px;
  right: 0;
  background: var(--ColorPrimary);
  padding: 20px;
  border-radius: 8px;
  width: 50%;
  z-index: 5;
  margin: 52px 40px -10px;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  color: var(--ColorPrimaryInvert);
}
#ContactForm .MapWrapper .DetailsCard a {
  text-align: center;
}
#ContactForm .MapWrapper .DetailsCard .CardHeading {
  font-weight: 600;
  font-size: var(--BlogDescSize);
  margin-bottom: 12px;
}
#ContactForm .MapWrapper .DetailsCard .DetailsList {
  padding-left: 0;
  list-style: none;
  margin-bottom: 25px;
}
#ContactForm .MapWrapper .DetailsCard .DetailsList li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: var(--SecondaryFontSize);
}
#ContactForm .MapWrapper .DetailsCard .TimingRow {
  font-size: var(--SecondaryFontSize);
  margin-bottom: 18px;
}
#ContactForm .MapWrapper .DetailsCard .TimingRow span {
  font-weight: 600;
  margin-left: 6px;
}
#ContactForm .MapWrapper .DetailsCard .SocialIcon {
  margin-top: 20px;
}
#ContactForm .MapWrapper .DetailsCard .SocialIcon a {
  font-size: var(--SecondaryFontSize);
  color: #000;
  transition: 0.3s;
}
#ContactForm .MapWrapper .DetailsCard .SocialIcon a:hover {
  opacity: 0.6;
}
#ContactForm .MapWrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px;
}
#ContactForm .SectionTitle .Title {
  text-align: left;
  color: var(--ColorPrimaryInvert);
}
#ContactForm .ContactBox {
  padding: 20px;
  border-radius: 12px;
}
#ContactForm .ContactBox .subtitle {
  margin-top: 8px;
  max-width: 100%;
  font-size: var(--SecondaryFontSize);
  color: var(--SecondaryColor);
}
#ContactForm .ContactBox .contact-form {
  max-width: 1180px;
  margin: auto;
}
#ContactForm .ContactBox .custom-input {
  background: #d1d1d1;
  border: 1px solid #eee;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 15px;
}
#ContactForm .ContactBox .custom-input:focus {
  border-color: #d1d1d1;
  box-shadow: none;
}
#ContactForm .ContactBox textarea.custom-input {
  resize: none;
}
#ContactForm .ContactBox .submit-btn {
  font-size: var(--SecondaryFontSize);
  font-family: var(--FontBody);
  padding: 10px 27px;
  font-weight: 400;
  background: var(--ColorPrimary);
  color: var(--SecondaryColor);
  border: none;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

#WhoWeAre {
  padding-bottom: 0;
}
#WhoWeAre .WebBtn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 42px auto 0;
}
#WhoWeAre .SectionTitle .Title {
  color: var(--SecondaryColor);
  margin-bottom: 14px;
}
#WhoWeAre .SectionTitle p {
  text-align: center;
  margin: auto;
}
#WhoWeAre .WhoWeAreWrapper {
  text-align: center;
  margin-top: 42px;
  aspect-ratio: 1/1;
  border: 1px solid #3FC270;
  border-radius: 100%;
  width: -moz-fit-content;
  width: fit-content;
  padding: 60px;
  margin: auto;
  position: relative;
  background: url("../images/PageBg.svg");
  width: 300px;
  height: 300px;
}
#WhoWeAre .WhoWeAreWrapper::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #d1d1d1;
  top: 50%;
  right: -400px;
  transform: translate(-50%, -50%);
  z-index: -1;
}
#WhoWeAre .WhoWeAreWrapper .Icon {
  width: 80px;
  margin: auto;
  margin: 24px auto 14px;
}
#WhoWeAre .row > .col-lg-3:last-child .WhoWeAreWrapper::after {
  display: none;
}
#WhoWeAre .Name {
  color: var(--SecondaryColor);
  font-size: var(--SecondaryFontSize);
}

#Teams {
  background: url(../images/teams-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#Teams .SectionTitle .Title {
  color: var(--ColorPrimaryInvert);
}
#Teams .SectionTitle p {
  margin: auto;
  text-align: center;
}
#Teams .card {
  border-radius: 0px;
  display: block;
  transition: 0.7s;
  background: #F3F2F0;
  overflow: hidden;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
  transition: 500ms all ease;
}
#Teams .card:hover {
  transform: scale(0.95);
}
#Teams .card:hover .card-img-top {
  filter: grayscale(0) !important;
}
#Teams .card:hover .social-media {
  filter: contrast(100%);
}
#Teams .card-img-top {
  filter: grayscale(1) !important;
  transition: 0.7s;
}
#Teams .card-body .card-title {
  font-size: var(--BlogTitleSize);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--FontHeading);
}
#Teams .card-body .Designation {
  color: var(--ColorPrimary);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--FontBody);
}
#Teams .card-body .experience {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.7019607843);
  font-size: var(--SecondaryFontSize);
  margin-bottom: 20px;
}
#Teams .card-body .experience p {
  margin: 0;
}
#Teams .card-body .social-media {
  display: flex;
  gap: 14px;
  align-items: center;
  filter: contrast(0);
  transition: 300ms all ease;
}
#Teams .card-body .social-media img {
  width: 24px;
}
#Teams .card-body .social-media img:hover {
  transform: translateY(-3px);
  transition: 300ms all ease;
}

#AboutVideo .SectionTitle {
  width: 80%;
  margin: 0 auto 48px;
}
#AboutVideo .SectionTitle .Title {
  color: var(--SecondaryColor);
  text-align: center;
}
#AboutVideo .Video {
  position: relative;
}
#AboutVideo .Video video {
  width: 100%;
  max-height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
}
#AboutVideo .Video .PlayIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
  border-radius: 100%;
  transition: 600ms all ease;
}
#AboutVideo .Video .PlayIcon:hover {
  transform: translate(-50%, -50%) scale(0.95);
}

#Stats {
  padding-top: 0;
}
#Stats .SectionTitle .Title {
  color: var(--SecondaryColor);
}
#Stats .SectionTitle p {
  margin: auto;
}
#Stats .CounterMain {
  margin-top: 42px;
}
#Stats .CounterMain .Countericon {
  width: 90px;
  margin: auto;
  opacity: 0.7;
}
#Stats .CounterMain .CounterDetails .CounterNo {
  font-family: var(--FontHeading);
  color: var(--ColorPrimary);
  font-size: 42px;
}
#Stats .CounterMain .CounterDetails .CounterTitle {
  color: var(--ColorPrimaryInvert);
  font-size: var(--SecondaryFontSize);
  margin: 14px 0 0px;
}

#Story {
  padding: 20px 0 0;
}
#Story .SectionTitle p {
  max-width: 100%;
  text-align: center;
}
#Story .WebBtn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 0;
}
#Story .DecorText {
  max-width: 65%;
  margin: auto;
  padding: 20px;
  background: url("../images/SemiCircle.svg") no-repeat;
  background-size: contain;
  height: 305px;
  margin-bottom: -270px;
  position: relative;
  background-position: bottom;
  z-index: 10;
}
#Story .DecorText .Title {
  max-width: 65%;
  margin: auto;
  text-align: center;
  margin-top: 30px;
  color: var(--ColorPrimaryInvert);
}
#Story .AboutUsImage {
  border-radius: 24px;
  overflow: hidden;
}
#Story .AboutUsImage:hover img {
  transform: scale(1.1);
}
#Story .AboutUsImage img {
  border-radius: 24px;
  transition: 600ms all ease;
  position: relative;
  z-index: 0;
}

/* ================================
   GALLERY SECTION
================================ */
.GallerySection {
  position: relative;
  min-height: 100vh;
  padding: 120px 80px;
  overflow: hidden;
}

/* ================================
   GRID
================================ */
.GalleryWrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
  align-items: center;
  place-items: center;
  /* ================================
     GALLERY ITEMS
  ================================ */
}
.GalleryWrapper a {
  display: block;
}
.GalleryWrapper .GalleryItem {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px) scale(0.92);
  transform-origin: center;
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease;
}
.GalleryWrapper .GalleryItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.GalleryWrapper .GalleryItem:hover img {
  transform: scale(1.08);
}
.GalleryWrapper .GalleryItem.Visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.TallItem {
  border-radius: 11.75vmax 0 0 0;
}

.RoundedOne {
  border-radius: 12vmax 12vmax 0 0;
}

.OvalItem {
  border-radius: 12vmax;
}

/* DELAYS */
.DelayOne {
  transition-delay: 0.2s;
}

.DelayTwo {
  transition-delay: 0.4s;
}

/* ================================
   BACKGROUND GRID LINES
================================ */
@keyframes qode-bg-line {
  0% {
    transform: translateY(-15vh);
  }
  100% {
    transform: translateY(115vh);
  }
}
.qodef-background-grid-lines--enabled .qodef-m-background-grid-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.qodef-background-grid-lines--enabled .qodef-m-background-grid-lines .qodef-m-background-grid-line {
  position: absolute;
  top: 0px;
  width: 1px;
  height: 100%;
  background-color: var(--qode-grid-lines-color, rgba(255, 255, 255, 0.1));
}
.qodef-background-grid-lines--enabled .qodef-m-background-grid-lines .qodef-m-background-grid-line::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 15vh;
  transform: translateY(-15vh);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--qode-grid-lines-decoration-color, rgba(255, 255, 255, 0.3)) 50%, var(--qode-grid-lines-decoration-color, rgba(255, 255, 255, 0.3)) 90%, rgba(255, 255, 255, 0) 100%);
  animation: qode-bg-line 6s infinite cubic-bezier(0.4, 0.26, 0.16, 0.98);
  animation-fill-mode: forwards;
}
.qodef-background-grid-lines--enabled .qodef-m-background-grid-lines .qodef-m-background-grid-line:nth-child(1)::after {
  animation-delay: 1.8s;
}
.qodef-background-grid-lines--enabled .qodef-m-background-grid-lines .qodef-m-background-grid-line:nth-child(2)::after {
  animation-delay: 3.6s;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .GalleryWrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .GallerySection {
    padding: 80px 30px;
  }
}
#MenuCategory {
  background-color: #ffffff;
  padding: 0;
  position: relative;
}
#MenuCategory::before {
  content: "";
  position: absolute;
  background: url(../images/MenuBg.png) no-repeat;
  background-size: contain;
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
}
#MenuCategory::after {
  content: "";
  position: absolute;
  background: url(../images/MenuBg.png) repeat;
  background-size: contain;
  z-index: 0;
  height: 100%;
  width: 50%;
  bottom: 0;
  left: 0;
}
#MenuCategory .owl-nav button {
  font-size: 30px;
}
#MenuCategory .MenuImageWrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
#MenuCategory .MenuImageWrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
#MenuCategory .MenuImageWrapper .MenuCta {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
#MenuCategory .MenuImageWrapper .MenuCta .SectionTitle {
  width: 100%;
}
#MenuCategory .MenuImageWrapper .MenuCta .SectionTitle .Title {
  color: var(--ColorPrimaryInvert);
}
#MenuCategory .MenuImageWrapper .MenuCta .SectionTitle p {
  text-align: center;
  margin: auto;
}
#MenuCategory .MenuImageWrapper .MenuCta .SectionTitle .WebBtn {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 32px auto 0;
}
#MenuCategory .MenuListWrapper {
  max-width: 700px;
  margin: auto;
  padding-top: 30px;
}
#MenuCategory .MenuListWrapper .SectionTitle .Title {
  color: var(--Black);
}
#MenuCategory .MenuListWrapper .MenuList {
  display: flex;
  align-items: flex-start;
  /* ✅ REQUIRED */
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  height: 50vh;
  position: relative;
  overscroll-behavior: auto;
  z-index: 1;
  /* prevents page scroll chaining */
}
#MenuCategory .MenuListWrapper .MenuList ul {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
#MenuCategory .MenuListWrapper .MenuList ul .MenuItem {
  padding: 0px 0;
  max-width: 90%;
}
#MenuCategory .MenuListWrapper .MenuList ul .MenuItem:last-child {
  border-bottom: none;
}
#MenuCategory .MenuListWrapper .MenuList ul .MenuItem .MenuContent h4 {
  margin: 0;
  font-size: var(--BlogTitleSize);
  color: var(--ColorPrimary);
  letter-spacing: 0.3px;
  border-bottom: 1px dashed #ddd;
  padding: 12px 10px 0;
  font-weight: 700;
}
#MenuCategory .MenuListWrapper .MenuList ul .MenuItem .MenuContent p {
  margin-top: 8px;
  font-size: 14px;
  max-width: 90%;
  padding: 0 12px;
}

.MobileGallery {
  display: none;
}

.MobileGallery .Item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Show carousel only on mobile */
@media (max-width: 767px) {
  .MobileGallery {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */