@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap");

html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  /* font-family: "Poppins", sans-serif; */
  font-family: "Mulish", sans-serif;
  /* font-family: "Merienda", cursive; */
  background: #fff;
  overflow: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
  --white: #ffffff;
  --black: #000;
  --gary-color: #727272;
  --lightgary-color: #b2b9bd;
  --primary: #ffcb17;
  --secondary: #ec2125;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: var(--black);
}

h1,
h2,
h3,
h4,
a,
button {
  font-family: "Oswald", sans-serif;
  color: #000;
}

h5,
h6 {
  font-family: "Mulish", sans-serif;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* .preLoader img {
  width: 500px;
} */


.preLoader img {
  width: 100%;
  max-width: 250px; /* Laptop screen par limit */
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Mobile devices ke liye aur chhoti image */
@media (max-width: 768px) {
  .preLoader img {
    max-width: 150px;
  }
}

/* loader */

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
  background: var(--secondary);
  font-size: 1.25rem;
  color: var(--white) !important;
  text-transform: capitalize;
  font-weight: 400;
  display: inline-block;
  padding: 0.5em 1.99em;
  border-radius: 5px;
  line-height: normal;
  position: relative;
  overflow: hidden;
}

.themeBtn::after {
  position: absolute;
  width: 200%;
  height: 200%;
  content: "";
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
  background: var(--primary);
  -webkit-transition: 0.7s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.7s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.7s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.7s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.7s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.7s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.themeBtn span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

.themeBtn:hover span {
  color: var(--white);
}

.themeBtn:hover::after {
  top: -40%;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
  animation: bounce 0.9s infinite alternate;
  -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from {
    transform: translateY(0px);
  }

  to {
    transform: translateY(-15px);
  }
}

.mouse {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 11;
  text-align: center;
}

/* mouse animation css  */

/* navigation css */
header {
  position: relative;
  z-index: 11;
}

.cal-list {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 0 3rem;
}

.cal-list h2 {
  font-size: 18px;
  font-weight: 500;
  color: #696969;
  margin: 0 0 6px;
}

.cal-list i {
  font-size: 55px;
  color: #ec2125;
}

.cal-list a {
  font-size: 18px;
  font-weight: 500;
  color: #ffcb17;
}

.cal-list a:hover {
  color: var(--secondary);
}

a.logo-heading {
  display: table;
  margin: auto;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
}

.topcal {
  padding-top: 0.25rem;
}

.logo-heading img {
  width: 190px;
}



.cal-list.reverse {
  flex-flow: row-reverse;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
}

.cal-list.reverse h2 {
  text-align: right;
}

nav.navbar {
  background: var(--black);
  border-radius: 5px;
  padding: 1rem 20px 1rem 3rem;
  margin: 25px 0 -40px;
}

.form-inline {
  gap: 0.7rem;
}

a.themeBtn.yelowBtn {
  background: var(--primary);
}

a.themeBtn.yelowBtn::after {
  background: var(--secondary);
}

.form-inline .themeBtn {
  text-transform: uppercase;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0.94em 2.38em;
}

.form-inline .themeBtn i {
  font-size: 1.5rem;
}

/* navigation css */

/* slider css */

.sliderSec {
  width: 100%;
  height: 100vh;
  padding: 0;
}

.sliderSec .swiper-slide-image {
  position: absolute;
  object-fit: cover;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sliderSec .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  /* background-color: rgba(0, 0, 0, 0); */
  border-radius: 0px;
}

.sliderSec .swiper-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 68%);
}

.sliderSec .swiper-slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sliderSec .swiper {
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
}

.sliderSec .swiper-slide-content h2 {
  font-size: 70px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-family: "Merienda", cursive;
}

.sliderSec .swiper-slide-content h3 {
  font-size: 180px;
  font-weight: 400;
  color: var(--white);
  font-family: "Merienda", cursive;
  margin: 0 0 3rem;
}

.sliderSec .swiper .swiper-button-prev {
  background: rgb(0 0 0 / 0.8);
  width: 40px;
  height: 40px;
  left: 3%;
}

.sliderSec .swiper .swiper-button-prev:after,
.sliderSec .swiper .swiper-button-next:after {
  font-size: 14px;
  color: var(--white);
}

.sliderSec .swiper .swiper-button-next {
  background: rgb(0 0 0 / 0.8);
  width: 40px;
  height: 40px;
  right: 3%;
}

/* slider css */

figure.abt-img {
  position: relative;
}

figure.abt-img .abt-fusion {
  position: absolute;
  bottom: 0;
  right: 30px;
  box-shadow: rgba(209, 210, 210, 0.5) 6px 9px 30px 0px,
    rgba(255, 255, 255, 0) -6px -1px 0px 0px;
  max-width: 305px;
  min-height: 232px;
  margin: 30px 0 -45px;
  padding: 35px 35px 27px;
  background-color: #fff;
}

figure.abt-img .grlimg {
  width: 72%;
  border-radius: 27% 0 0 0;
}

figure.abt-img .abt-fusion figure {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.7rem;
}

figure.abt-img .abt-fusion figure h2 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0;
}

figure.abt-img .abt-fusion p {
  color: var(--black);
  line-height: 27px;
  margin: 0 0 0.5rem;
}

figure.abt-img .star {
  color: var(--secondary);
}
/* ================= Mobile Responsive Fix ================= */
@media (max-width: 767px) {
  figure.abt-img .grlimg {
    width: 100%;
    border-radius: 0;
  }

  figure.abt-img .abt-fusion {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px 0 0;
    padding: 20px;
    max-width: 100%;
    min-height: auto;
    box-shadow: none; /* optional: ya halka shadow de sakte ho */
    background-color: transparent; /* optional: ya white bhi rakh sakte ho */
  }

  figure.abt-img .abt-fusion figure {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  figure.abt-img .abt-fusion p {
    text-align: center;
  }
}
.lineimg {
  position: absolute;
  top: -23.5%;
  right: 18%;
  z-index: -1;
}

.about-main {
  padding: 8rem 0 9rem;
}

.sub-heading {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary);
  position: relative;
  padding-left: 4.3rem;
  margin: 0 0 1.3rem;
}

.sub-heading:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 1px;
  background: var(--secondary);
  left: 0;
  bottom: 8px;
}

.sub-heading:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: var(--secondary);
  left: 20px;
  top: 6px;
}

.heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 47px;
  margin: 0 0 1.6rem;
}

.abt-chef {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin: 1.5rem 0 2.5rem;
}

.abt-chef ul li {
  color: #0e1317;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.abt-chef ul li i {
  width: 25px;
  height: 25px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
}

.abt-chef ul li+li {
  margin-top: 20px;
}

.about-content p {
  margin: 0;
}

.about-content .themeBtn {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 0.6rem;
}

.about-content .themeBtn i {
  line-height: unset;
}

.item--inner {
  position: relative;
}

.ct-fancy-box-layout6 .item--inner .item--icon {
  max-width: 270px;
  -webkit-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  opacity: 1;
}

.item--inner .item--icon img {
  border-radius: 7px;
}

.item--inner .item--meta {
  position: absolute;
  top: 40px;
  transform: scale(0);
  -webkit-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.item--inner .item--meta .image-content {
  position: relative;
  max-width: 270px;
}

.item--inner .item--meta .image-content:before {
  position: absolute;
  content: "";
  top: -5px;
  left: -5px;
  width: 280px;
  height: 280px;
  border-radius: 100%;
  border: 1px solid #ec2125;
  opacity: 0;
  -webkit-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.2s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.item--inner .item--meta .image-content img {
  border-radius: 100%;
}

.item--inner .item--meta .item--title--box {
  text-align: center;
  position: absolute;
  top: 50%;
  left: -60%;
  z-index: 2;
  -webkit-transition: 0.25s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.25s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.25s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.25s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.25s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.25s cubic-bezier(0.24, 0.74, 0.58, 1);
  transform: translateY(-50%);
  opacity: 0;
}

.item--inner .item--meta .item--title--box .sub-title {
  background-color: #fff;
  color: #ffcb17;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 10px;
  width: max-content;
  /* line-height: 1; */
  margin: 0 0 9px auto;
}

.item--inner .item--meta .item--title--box .title-box {
  padding: 9px 20px;
  background-color: #ec2125;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

.item--inner .item--meta .image-content:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 26, 34, 0.4);
  border-radius: 100%;
  mix-blend-mode: multiply;
}

.item--inner:hover .item--icon {
  opacity: 0;
  transform: translateY(-30px);
}

.item--inner:hover .item--meta {
  transform: scale(1);
  top: 0;
  transition-delay: 0.2s;
  opacity: 1;
}

.item--inner:hover .item--meta .image-content:before {
  transition-delay: 0.4s;
  opacity: 1;
  width: 300px;
  height: 300px;
  top: -15px;
  left: -15px;
}

.item--inner:hover .item--meta .item--title--box {
  opacity: 1;
  left: -45px;
  transition-delay: 0.23s;
}

.choose-main {
  background-color: #090c0f;
  padding: 110px 0px 120px 0px;
  overflow: hidden;
}

.foodsub-heading {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary);
  position: relative;
  margin: 0 0 1.2rem;
  display: inline-block;
}

.foodsub-heading .left,
.foodsub-heading .right {
  position: relative;
  display: inline-block;
  height: 10px;
}

.foodsub-heading .left:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #ec2125;
  top: 0;
  width: 30px;
  left: -50px;
}

.foodsub-heading .left:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #ec2125;
  bottom: 2px;
  width: 50px;
  left: -70px;
}

.foodsub-heading .right:before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #ec2125;
  top: 0;
  width: 30px;
  right: -50px;
}

.foodsub-heading .right:after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #ec2125;
  bottom: 2px;
  width: 50px;
  right: -70px;
}

.title .heading {
  font-weight: 300;
  font-size: 2.625rem;
}

.choose-main .title {
  margin-bottom: 5rem;
}

.leftline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
}

.rightline {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5%;
}

figure.wedo-img {
  position: relative;
}

figure.wedo-img .wedovector {
  position: absolute;
  left: -27%;
  top: -45px;
  z-index: -1;
}

.wedo-main {
  padding-top: 8rem;
}

.wedo-content .heading {
  font-size: 3.75rem;
  line-height: 76px;
  text-transform: capitalize;
  margin: 0 0 1.5rem;
}

.chef-main {
  display: flex;
  align-items: flex-start;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 2rem 0;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
}

.chef-main .d-flex {
  justify-content: space-between;
  align-items: center;
  flex: 0 0 47%;
  gap: 13px;
}

.chef-main .d-flex h3 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 6px;
}

.chef-main .d-flex p {
  margin: 0;
  line-height: 29px;
}

.themeBtn.learnBtn {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  font-size: 15px;
  text-transform: uppercase;
  padding: 1.1em 2.76em;
}

a.light-box {
  position: relative;
  display: block;
}

a.light-box:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(18, 22, 25, 0.8);
  transition: 0.3s cubic-bezier(0.48, 0.57, 0.33, 0.89);
  z-index: 20;
}

a.light-box .item-hover-custom {
  width: 65px;
  height: 65px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  z-index: 12;
  z-index: 100;
}

a.light-box .item-hover-custom:before {
  height: 65px;
  width: 2px;
}

a.light-box .item-hover-custom:after {
  height: 2px;
  width: 65px;
}

a.light-box:hover:before {
  bottom: 0;
  height: 100%;
}

a.light-box:hover .item-hover-custom {
  top: 50%;
  opacity: 1;
  transition-delay: 0.3s;
}

a.light-box .item-hover-custom:before,
a.light-box .item-hover-custom:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.category-main {
  padding: 5rem 5rem;
  z-index: 11;
}

.food-choose {
  background: url(../img/restaurantbg.jpg) no-repeat top center/ cover;
  position: relative;
  margin-top: -298px;
  padding-top: 20rem;
  padding-bottom: 8rem;
  z-index: 1;
}

.food-choose:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #090c0f;
  opacity: 0.97;
  z-index: -1;
}

.food-choose .title .heading {
  font-size: 3.125rem;
  text-transform: uppercase;
  font-weight: 500;
}

.food-choose .title {
  margin-bottom: 4.5rem;
}

.best-food {
  background: var(--white);
  border-radius: 7px;
  display: flex;
  align-items: flex-start;
  padding: 0 4rem;
  justify-content: space-between;
  position: relative;
}

.best-food .d-flex {
  flex: 0 0 42%;
  margin: 1rem 0 3.5rem;
}

.best-food .d-flex ul li {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #ededed;
  padding: 1.8rem 0;
}

.best-food .d-flex ul li h2 {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 300;
  margin-bottom: 5px;
}

.best-food .d-flex ul li p {
  width: 280px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0;
}

.best-food .d-flex ul {
  width: 100%;
}

.best-food .d-flex ul li span {
  font-size: 2.625rem;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1.4;
}

.best-food .d-flex ul li span sup {
  font-size: 24px;
  font-weight: 300;
  top: 0;
  left: 5px;
}

.best-food:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: #ededed;
  width: 1px;
}

.btn-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4rem 0 0;
  gap: 2rem;
}

.btn-flex .themeBtn.learnBtn+.themeBtn.learnBtn {
  background: var(--white);
  color: var(--black) !important;
}

.leadimg {
  position: absolute;
  right: 14%;
  animation: animationFramesFive 11s infinite linear alternate;
  top: 23%;
}

@keyframes animationFramesFive {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(40px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.food-lineleft {
  position: absolute;
  bottom: 0;
  left: 6%;
}

.food-lineright {
  position: absolute;
  right: 6%;
  bottom: 0;
}

figure.offer-img {
  text-align: right;
  position: relative;
  margin-bottom: -7rem;
}

figure.offer-img .offer2 {
  position: absolute;
  bottom: 13rem;
  left: 0;
}

figure.offer-img .offer3 {
  display: table;
  margin-left: auto;
  margin-right: -6rem;
  width: 70%;
  position: relative;
  z-index: 1;
}

.offer-leaf {
  position: absolute;
  left: 0;
  animation: animationFramesFive 11s infinite linear alternate;
  z-index: 1;
}

.offer1 {
  width: 470px;
}

ul.offer-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 1.5rem 0 0;
}

ul.offer-list li figure {
  width: 85px;
  height: 85px;
  background: var(--secondary);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
}

ul.offer-list li h2 {
  font-size: 1.125rem;
  font-weight: 400;
  color: #0e1317;
}

.offer-food .about-content .heading {
  line-height: 53px;
  margin: 0 0 1.3rem;
}

.review-main {
  background: url(../img/testimonialbg.png) no-repeat top center/ cover;
  background-color: #eeeeee;
  padding-top: 10rem;
  position: relative;
}

.review-main .leadimg {
  right: 15.5%;
  z-index: 2;
  top: 27%;
}

.offer-food {
  padding-bottom: 0;
}

.review-title .heading {
  font-size: 45px;
  font-weight: 500;
  line-height: 58px;
}

.review-card {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.review-card figure {
  flex-shrink: 0;
  margin: 2.2rem 0 0;
}

.review-card figure img {
  border-radius: 50%;
  border: 7px solid #fff;
  box-shadow: 0 0 30px #dedede;
}

.review-card .review-content {
  background: var(--white);
  box-shadow: 0 0 16px #e4e4e4;
  padding: 3rem 3.8rem 3rem 3.5rem;
  position: relative;
}

.review-card .review-content .d-flex {
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.7rem;
}

.review-card .review-content .d-flex h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.review-card .review-content .d-flex span {
  color: var(--secondary);
}

.review-card .review-content p {
  font-size: 30px;
  font-weight: 300;
  line-height: 45px;
  font-family: "Oswald", sans-serif;
}

.review-card .review-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.review-card .review-content:before {
  content: "";
  position: absolute;
  top: 73px;
  left: -39px;
  border-right: 39px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  z-index: 2;
}

.review-title {
  margin-bottom: 3.5rem;
}

.reviewSlider-button-prev.swiper-button-prev {
  top: 100%;
  left: 54%;
}

.reviewSlider-button-next.swiper-button-next {
  top: 100%;
  right: 39%;
}

.reviewSlider-button-prev:after {
  background: var(--white);
  padding: 1rem 1rem;
  border-radius: 5px;
  font-size: 14px;
  color: var(--primary);
  box-shadow: 0 0 16px #e4e4e4;
}

.reviewSlider-button-next:after {
  background: var(--white);
  padding: 1rem 1rem;
  border-radius: 5px;
  font-size: 14px;
  color: var(--primary);
  box-shadow: 0 0 16px #e4e4e4;
}

:is(.reviewSlider-button-prev, .reviewSlider-button-next):hover::after {
  background: var(--secondary);
  color: var(--white);
}

/* booking-section css */

.bookingSection {
  position: relative;
}

.reservationCard {
  background: #090c0f;
  padding: 5rem;
}

.reservationInput {
  margin-top: 30px;
}

.inputBox {
  position: relative;
}

.inputBox input {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
  padding: 0 15px;
  background: #090c0f;
  outline: none;
  color: #fff;
  border: 1px solid #21282f;
  border-radius: 5px;
  font-family: "Mulish", sans-serif;
}

.inputBox input::placeholder {
  font-family: "Mulish", sans-serif;
  color: #fff;
}

.inputBox i {
  position: absolute;
  right: 18px;
  color: #fff;
  bottom: 51px;
}

.inputBox select {
  width: 100%;
  height: 60px;
  padding: 0 15px;
  margin-bottom: 30px;
  background: #090c0f;
  outline: none;
  color: #fff;
  border: 1px solid #21282f;
  border-radius: 5px;
}

.inputBox select option {
  font-family: "Mulish", sans-serif;
}

.reservationBtn {
  padding-bottom: 30px;
}

.reservationBtn .themeBtn.learnBtn {
  width: 100%;
  height: 60px;
  padding-left: 6.5rem;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.bookingImg {
  position: relative;
}

.bookingImg .booking-leaf {
  top: 18rem;
  right: -119px;
  position: absolute;
  animation: animationFramesFive 11s infinite linear alternate;
  z-index: 1;
}

/* booking-section css */

/* blog-section css */

.blogSection {
  position: relative;
}

.row.blogwrapper {
  margin-right: -25rem;
}

/* .blogSection::before{
  content: "";
  background: url(../img/blogimg.png)no-repeat center/contain;
  width: 600px;
  height: 930px;
  position: absolute;
  z-index: -2;
  left: 0;
} */

.blog-info {
  padding: 26px 40px;
  background-color: #fff;
}

.blog-info a {
  display: block;
  font-size: 24px;
}

.blog-info a:hover {
  color: #ffcb17;
}

.blog-info a+a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
}

.blog-info a+a:hover {
  color: #ec2125;
}

.blog-info a+a i {
  font-size: 20px;
  margin-top: 4px;
}

.blogSection .blg-img {
  position: absolute;
  bottom: -107px;
  left: 0;
  width: 33%;
}

/* blog-section css */

/* footer css */

.footCrd {
  background: #ffcb17;
  padding: 2rem 0.625rem;
  position: relative;
  z-index: 3;
  margin-bottom: -5.6rem;
}

.footCrd::before {
  content: "";
  background: #ec2125;
  width: 70px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -4rem;
  z-index: 1;
}

.footCrd::after {
  content: "";
  background: #ec2125;
  width: 70px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -4rem;
  z-index: 1;
}

.footCrd a {
  width: 100%;
  height: 80px;
  display: block;
  text-align: center;
  overflow: hidden;
}

.footCrd a:hover figure img {
  transform: translateY(-100%);
}

.footCrd a figure img {
  transition: all 300ms ease-in-out;
}

footer {
  background-color: #090c0f;
  padding-top: 9.5rem;
  position: relative;
}

.footvector .leftLine {
  position: absolute;
  top: 0;
  left: 10rem;
}

.footvector .rightLine {
  position: absolute;
  right: 10rem;
  top: 0;
}

.footlogo-info h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  text-transform: uppercase;
}

.footlogo-info p {
  color: #fff;
  margin: 20px 30px 0 0;
}

.quickLinks {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.quickLinks li a {
  background: #2f3c46;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #999ca5;
}

.quickLinks li a:hover {
  background-color: var(--secondary);
  transition: 300ms ease-in-out;
}

.quickLinks li a:hover i {
  color: var(--white);
  transition: all 300ms ease-in-out;
}

.quickList h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 300;
}

.quickList ul li {
  margin-bottom: 15px;
}

.quickList ul li a {
  color: #fff;
  font-family: "Mulish", sans-serif;
  display: block;
}

.quickList ul li a:hover {
  color: var(--secondary);
  transform: translateX(10px);
}

.quickList ul li a i {
  margin-right: 0.25rem;
}

.calFoter ul li {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 10px;
}

.calFoter ul li i {
  font-size: 30px;
  color: var(--secondary);
}

.cal-info h6 {
  margin: 0;
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 5px;
  font-family: "Mulish", sans-serif;
}

.cal-info a {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
}

.cal-info a:hover {
  color: var(--secondary);
}

.copyRight {
  border-top: 1px solid #272b2f;
  margin-top: 40px;
  padding: 25px 0;
  text-align: center;
}

.copyRight p {
  color: #fff;
  font-family: "Mulish", sans-serif;
}

.copyRight p a {
  color: var(--secondary);
  font-family: "Mulish", sans-serif;
}

.copyRight p a:hover {
  color: var(--primary);
}

/* footer css */

/* inner pages css start */
.inner-banner {
  background: var(--primary);
  padding: 6.05rem 0;
  text-align: center;
}

.inner-banner h6 {
  margin: 0;
  font-size: 60px;
  font-weight: 800;
  color: var(--secondary);
}

.about-page {
  padding: 7rem 19rem;
}

.wedo-main.about-page .wedo-content .heading {
  font-size: 40px;
  line-height: normal;
}

.wedo-main.about-page .wedo-content .sub-heading {
  margin: 0 0 0.7rem;
}

.wedo-main.about-page .wedo-content p {
  margin: 0;
}

.wedo-main.about-page .wedo-content p+p {
  margin-top: 4rem;
}

.about-page.abtpg-opening {
  padding: 7rem 19.5rem;
  background-color: #eeeeee;
}

.about-page.abtpg-opening+.footerCard {
  background-color: #eeeeee;
}

.menu-page {
  padding: 7rem 14rem;
}

.menu-page__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.menu-page__list li a {
  font-size: 1.25rem;
  text-decoration: underline !important;
}

.menu-page__list li a:hover {
  color: var(--secondary);
}

.menu-card .menupg-content {
  background-color: #fff;
  border-radius: 7px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
    rgba(50, 50, 50, 0.2) 0px 10px 50px -20px,
    rgba(0, 0, 0, 0) 0px 50px 50px -50px;
  padding: 26px 30px 31px;
  margin: -60px 20px 0;
  position: relative;
  z-index: 1;
}

.menu-card .menupg-content .d-flex {
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.6rem;
}

.menu-card .menupg-content .d-flex h2 {
  font-weight: 300;
  color: var(--primary);
  font-size: 24px;
  margin: 0;
}

.menu-card .menupg-content .d-flex span {
  font-weight: 400;
  color: var(--secondary);
  font-size: 24px;
  font-family: "Oswald", sans-serif;
}

.menu-card .menupg-content p {
  height: 65px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.menu-card {
  margin-bottom: 2rem;
}

.menu-card a.light-box {
  z-index: 1;
}

.menu-card:hover a.light-box:before {
  bottom: 0;
  height: 100%;
}

.menu-card a.light-box img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.menu-card:hover a.light-box .item-hover-custom {
  top: 50%;
  opacity: 1;
  transition-delay: 0.3s;
}

.menu-card a.light-box .item-hover-custom:before {
  height: 25px;
  width: 2px;
}

.menu-card a.light-box .item-hover-custom:after {
  height: 2px;
  width: 25px;
}

.menu-page.photosvideo-page .menu-card a.light-box img {
  width: 100%;
  height: 306px;
  object-fit: cover;
}

.videopg-main {
  background-color: #eeeeee;
  padding: 4rem 14rem;
}

.videopg-main iframe {
  width: 100%;
  height: 251px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.about-page.eventpage {
  padding: 7rem 20rem;
}

.about-page.careerpage {
  padding: 7rem 14rem;
}

/* Contact Section Start */

.contact-page form :is(input, textarea) {
  display: block;
  width: 100%;
  height: 50px;
  padding: 1rem;
  /* margin-top: 0rem; */
}

.contact-page textarea {
  height: 70px;
}

.contact-page label {
  margin-top: 1rem;
}

.contact-page .themeBtn {
  margin-top: 1rem;
  width: 100%;
}

/* Contact Section End */

/* inner pages css end */

@media (max-width:769px) {
  .blogSection .blg-img{
    display: none;
  }
  .blog-card .blog-img img{
    width: 57%;
  }  
  /* .footerCard .container .footCrd figure img:nth-child(2){
    display: none;
  } 
   .footCrd a:hover figure img {
    transform: none;
  } */
/* }
@media (max-width:600px) { */
  

.container .foodmenu{
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  /* gap: 20px; */
  /* flex-wrap: wrap; */
  width: auto;
}
.container .foodmenu img{
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 70px;
    height: 75px;

}

.footCrd .row{
  width:100%;
  overflow-x: scroll;
  flex-wrap:nowrap !important;
  margin-left:0px;
}

.review-card .review-content p{
  font-size: 14px;
  line-height: normal;
}
.review-card .review-content h2{
  font-size: 14px;
}
.sliderSec .swiper-slide-content h3{
  font-size: 110px;
}

.item--inner:hover .item--meta .item--title--box{
  left: -27px;
}
.item--inner .item--meta .item--title--box .title-box{
  font-size: 7px;
}
.item--inner .item--meta .item--title--box .sub-title{
  font-size: 8px;

}

.choose-main .container .row{
  justify-content: center;
}

.wedo-main .container .wedo-img .header-image{
  height: 410px;
  width: 100%;
  max-width: none;
}
.category-main .container-fluid .row .col-md-3{
  flex: 0 0 25%;
  max-width: 25%;
}
/* .wedo-main{
  padding: 10rem 0;
} */
 .category-main{
  padding: 6rem 0rem;
 }
}
@media (max-width: 768px) {
  .best-food {
    flex-direction: column;
    padding: 1rem; /* Reduce padding for smaller screens */
  }

  .best-food .d-flex {
    flex: 0 0 100%;
    width: 100%;
    margin: 1rem 0;
  }

  .best-food .d-flex ul li {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .best-food .d-flex ul li p {
    width: 100%;
    -webkit-line-clamp: unset;
    display: block;
    margin-top: 0.5rem;
  }

  .best-food .d-flex ul li span {
    align-self: flex-end;
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }

  .best-food:before {
    display: none; /* Hide the center divider on small screens */
  }
}
@media (max-width: 992px) {
  .best-food {
    flex-direction: column;
    padding: 2rem;
  }

  .best-food .d-flex {
    flex: 0 0 100%;
    width: 100%;
    margin: 1rem 0;
  }

  .best-food .d-flex ul li {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 0;
  }

  .best-food .d-flex ul li p {
    width: 100%;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    margin-top: 0.5rem;
  }

  .best-food .d-flex ul li span {
    align-self: flex-end;
    font-size: 2rem;
    margin-top: 0.5rem;
  }

  .best-food:before {
    display: none; /* Hide the vertical divider on tablet screens */
  }

  .navbar-toggler {
    font-family: "Oswald", sans-serif;
    color: #fff;
  }
}
