@font-face {
  font-family: Lato-Regular;
  src: url(../fonts/Lato-Regular.woff) format("woff"),
		url(../fonts/Lato-Regular.woff2) format("woff2");
}
@font-face{
	font-family: Poppins;
	src:url(../fonts/Poppins.woff) format("woff"),
		url(../fonts/Poppins.woff2) format("woff2");
}
@font-face{
	font-family: Brume;
	src:url(../fonts/Brume-Regular.woff) format("woff"),
		url(../fonts/Brume-Regular.woff2) format("woff2");
}
@font-face{
	font-family: chela;
	src:url(../fonts/ChelaOne-Regular.woff) format("woff"),
		url(../fonts/ChelaOne-Regular.woff2) format("woff2");
}
* {
  box-sizing: border-box;
  margin: 0; padding: 0;
}
:active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
}

h1,h2,h3,h4,h5,h6,p{
	margin:0;
	padding:0;
}
body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a{
	text-decoration:none;
	
}
dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0 !important;
}
:root {
  --red: #d62828;
  --red-dark: #C01010;
  --white: #ffffff;
  --black: #000000;
  --yellow:#ffd304;
  --green: #0bbd08;
  --darkgreen: #0f5e0d;
  --font-main: 'Poppins';
  --font-secondary: 'Lato-Regular';
}
p{
  font-family: var(--font-main);
  color: var(--white);
}

ul{
  padding: 0px !important;
  text-decoration: none ;
}
  
    ::before,
    ::after {
      position: absolute;
      content: "";
    }

    .btn {
      position: relative;
      display: inline-block;
      width: auto; height: auto;
      background-color: transparent;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }

    .btn span {         
      position: relative;
      display: inline-block;
      top: 0; left: 0;
      width: 100%;
      transition: 0.3s;
    }

    .btn-2::before {
      background-color: var(--red);
      transition: 0.4s ease-out;
      z-index: 0;
    }

    .btn-2 span {
      transition: 0.2s;
      position: relative;
      z-index: 1;
    }  

    .btn-2 span:hover {
      color: rgb(255,255,255);
      transition: 0.2s 0.1s;
    }

    .btn.hover-slide-down::before {
      top: 0; left: 0; right: 0; 
      height: 0%; width: 100%;
    }

    .btn.hover-slide-down:hover::before {
      height: 100%;
    }

    /* Extra for demo */
    ul { list-style: none; padding: 0; }
    li.main-btn { text-align: center; }

.header-top{
  background-color: transparent;
  padding: 12px 0px 0px;
}
.white-text{
  color: var(--white);
}
.container{
  max-width: 85% !important;
  margin: auto;
}
.header-top-right{
  text-align: right;
}
.clg-15{
  column-gap: 15px;
}
.clg-12{
  column-gap: 12px;
}
.header-top-left {
  justify-content: left;
}
.header-top-right{
  justify-content: flex-end;
}
.socialMedia-row a{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 7px;
  text-decoration: none;
  color: var(--red);
  cursor: pointer;
}
.header-top-right a{
  font-weight: 600;
}
.header-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.menu-list{

  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.menu-list a{
  color: var(--red);
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
    display: block;
}
.menu-list a:hover{
  color: var(--red);
}
.main-logo{
  max-width: 125px;
}
.footer-logo img{
   max-width: 170px;
}
.menu-center{
  margin-left: 80px;
  margin-right: 80px;
}
.header {
    background-color: var(--white);
    color: var(--red);
    padding: 10px 0px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
.menu-left, .menu-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.menu-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-subList{
  position: relative;
  white-space: nowrap;
}
.menu-subList ul {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--red);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 100;
  border-radius: 4px;
}

/* On hover: animate dropdown */
.menu-subList:hover ul {
  max-height: 500px; /* Enough to show all submenu items */
  opacity: 1;
  transform: translateY(0);
  padding: 10px 0px !important;
}

.menu-subList ul a{
  display: block;
  padding: 7px 15px;
  color: var(--white);
  text-decoration: none;
  width: 100%; 
  cursor: pointer;
  
}
.menu-subList ul a:hover{
  color: var(--white);
  text-decoration: underline;
}
.main-btn a{
 border: 2px solid var(--red);
 padding: 3px 7px;
    border-radius: 4px;
    cursor: pointer;
}
.main-btn a:hover{
 border: 2px solid var(--red);
 background-color: var(--red);
 color: var(--white);
}
.header-menu-mob{
  display: none;
}
.bg-video {
  width: 100%;
  height: 100%;
  object-fit: none;
  display: block;
}
.intro-section{
  /* background-image: url('../images/foodeza-background.png'); */
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  background-color: var(--red);
}
section{
  padding: 70px 0px;
}
h1.title{
  color: var(--white);
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: Brume;
  letter-spacing: 7px;
}
.intro-section h1.title{
  width: 90%;
}
.w-100{
  width: 100%;
}
.img-border{
  border: 5px solid #fff;
}
.slider-box{
  position: relative;
}
.slider-box .carousel-indicators button{
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
.align-c{
  align-items: center;
}
.white-btn.main-btn a{
 color: var(--red);
 background-color: var(--white);
 padding: 15px;
    border: 0px solid #ffff;
    font-weight: 600;
    margin-top: 20px;
}
.white-btn.main-btn a:hover{
 border: 0px solid var(--black);
 background-color: var(--black);
 border-radius: 4px;
 color: var(--white);
}
.white-btn.main-btn .btn-2::before {
     background-color: var(--black);
     border-radius: 4px;
}
.link-btn a:hover svg path{
  stroke: #ffffff;
}
.badge-row{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 180px;
  margin: 70px 0px !important;
}
.badge-circle{
  background-color: var(--white);
  border-radius: 50%;
  padding: 20px;
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 600;
}
.red-badge{
  color: var(--red);
   border: 7px dotted var(--red);
}
.green-badge{
  color: var(--darkgreen);
  border: 7px dotted var(--darkgreen);
}
.sub-title {
    color: var(--white);
    font-family: Brume;
    font-size: 60px;
    text-align: center;
    line-height: 60px;
    text-transform: capitalize;
    
}
.title-width{
  max-width: 70% !important;
  margin: auto;
}
.food-tab{
  margin: 70px 0px 30px !important;
}
.food-tab .tab{
  background-color: var(--white);
  padding: 35px 50px 30px;
  border-radius: 5px;
  display: flex;
    align-items: center;
    justify-content: space-between;
}
.tablinks{
  border: 0px;
  background-color: var(--white);
}
.menu-name{
  color: var(--red);
  font-family: Brume;
  padding-top: 10px;
  opacity:0;
}
.tablinks.active .menu-name{
 opacity: 1;
}
.food-tab .tabcontent{
  padding-top: 50px;
  display: none;
}
.food-tab .tabcontent h3{
  font-family: Brume;
  font-size: 40px;
  padding-bottom: 20px;
  color: var(--white);
}
.food-tab .tabcontent p{
  color: var(--white);
  font-family: var(--font-main) ;
  line-height: 25px;
}
.tabcontent-detail{
  display: flex;
  justify-content: space-between;
  column-gap: 20%;
}
.dish-img img{
  border: 5px solid var(--white);
}

.tabcontent-detail > div:first-child {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.tabcontent-detail .dish-img {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.6s ease;
}

.tabcontent-detail.active > div:first-child,
.tabcontent-detail.active .dish-img {
  transform: translateX(0);
  opacity: 1;
}
.pb-90{
  padding-bottom: 90px;
}
.img-border{
  border: 5px solid #fff;
}
.about-img{
  width: auto;
}
.pb-30{
  padding-bottom: 30px;
}
.pb-20{
  padding-bottom: 20px;
}
.pb-25{
  padding-bottom: 25px;
}
.about-section{
  display: flex;
  align-items: flex-start;
  column-gap: 90px;
}
.title-red{
  color: var(--red);
}
.testimonial-section{
  display: grid;
  place-items: center;
  position: relative;
}
/***************testmonial-slider****************/
.testimonial-slider{
  padding-top: 80px;
}
.testimonial-section p{
  color: var(--black);
}
.swiper-container {
  border-radius: 5px;
  width: 70vw;
  overflow: hidden;
  height: fit-content;
  height: fit-content;
  font-size: 50px;
  position: relative;
  padding-bottom: 80px;
}

.swiper-slide {
  width: auto;
  height: fit-content;
  display: flex;
  height: auto;
  border-radius: 5px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px;
  font-family: var(--font-main);
  background-color: #efefef;

}

.swiper-slide .ImgHolder {
  background-color: var(--red);
  display: flex;
  width: 100%;
  height: auto;
  padding: 30px;
  border-bottom-left-radius: 20px;

}
.swiper-pagination-bullet-active {
    background: var(--red,var(--red)) !important;
}

.ContentHolder::before {
  background-color: var(--red);
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: -5px;
  z-index: -1;
  right: 0px;
}

.ContentHolder {
  position: relative;
  padding: 20px 20px 15px;
  background-color: #efefef;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius:20px ;
}

.swiper-pagination-bullet {
  background-color: white;
  opacity: 1;
  border: 0px solid var(--red);
}

.swiper-pagination-bullet-active {
  background-color: var(--red);
}

.swiper-button {
  border: 1px solid white;
}

.swiper-slide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  object-fit: cover;
  border: 3px solid var(--red);
  outline: 2px solid white;
}

.swiper-slide h3 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: bold;
}

.swiper-slide p {
  font-size: 13px;
  padding: 5px;
  padding-top: 15px;
}

@media (max-width:638px) {
  .swiper-container {
    width: 100%;
  }
}

@media (max-width:500px) {
  .swiper-container {
    width: 70vw;
  }
}

@media (max-width:300px) {
  .swiper-container {
    width: 100%;
  }

  .swiper-slide {
    border-radius: 0px;
  }

  .swiper-container .ImgHolder {
    border-radius: 0px;
  }
  .ContentHolder{
    border-radius: 0px;
  }
}

/***************testmonial-slider****************/
.map-section{
  position: relative;
   overflow: hidden;
   width: 100%;
} 
section.map-section{
  padding: 0px;
}
.glob-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1; 
  }
 

.content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.glob {
    width: 100%;
    height: auto;
}

.truck {
  position: absolute;
  bottom: 28%;
  left: 0;
  width: 220px;
  offset-path: path("M 0 500 A 900 500 0 0 1 900 0"); 
  offset-rotate: auto;
}
.truck.animate {
  animation: drive 4s linear forwards;
}

@keyframes drive {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}
.bg-video{
  border-radius: 20px;

}
.video-section{
    padding-bottom: 45px;
}
footer{
  background-color: var(--red);
  padding: 50px 0px 0px;
}
.footer-end-text{
    font-family: chela;
    font-size: 350px;
    color: #ffffff;
    text-align: center;
    opacity: 0.4;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: normal;

}
.service-section{
  background-color: var(--red);
}
footer{
  color: var(--white);
}
.footer-title{
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--white);
  font-size: 18px;
  padding-bottom: 20px;
}
.follow-icons{
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.footer-contact a{
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  column-gap: 5px;
  font-size: 15px;
}
.footer-submenu .submenu-title{
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.footer-contact a:hover{
  text-decoration: underline;
}
.footer-submenu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  
}

.footer-submenu.open .submenu {
  max-height: 500px; /* adjust according to your submenu height */
  margin:10px 0px 10px 10px !important;
}

/* Optional: rotate arrow when open */
.footer-submenu .toggle-arrow {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.footer-submenu.open .toggle-arrow {
  transform: rotate(180deg);
}
.footer-logo{
      height: 100%;
    display: flex;
    align-items: center;
}
.service-title-row{
  display: flex;
  align-items: center;
  column-gap: 35px;
}
.service-row{
  padding-top: 70px;
}
.service-title{
  color: var(--white);
  font-family: Brume;
  font-size: 20px;
}
.service-content{
  font-family: var(--font-main);
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 3px dotted #fff;
}
.service-box{
  margin-bottom: 50px;
}
.copyright-content {
    color: #fff;
    font-size: 14px;
    background-color: var(--red);
    text-align: center;
    padding: 20px 20px 20px;
    border-top: 1px solid #d5d5d57d;
    margin-top: 30px;
}
.animate-section {
  opacity: 0;
  transform: translateY(50px); /* start from below */
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 .animate-badge {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.animate-badge.show {
  opacity: 1;
  transform: translateY(0);
}
.about-section {
  opacity: 0;
  transform: translateY(50px); /* Start from below */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-section.show {
  opacity: 1;
  transform: translateY(0);
}

/* start hidden & slightly below */
.animate-title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
}

/* becomes visible when in view */
.inview {
  opacity: 1;
  transform: translateY(0);
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate-title { opacity: 1; transform: none; transition: none; }
}
.phone-col{
  position: fixed;
  bottom: 80px;
  right: 30px;
}
.phone-col .phone-icon{
  border-radius: 15px;
  /* background-color: #65b8f1; */
  background-color: #1106a2;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0px 0px 12px 3px #ffffff6b; */
    border: 3px solid #ffff;
}
.whatsapp-col{
 position: fixed;
  bottom: 20px;
  right: 30px;
}
.phone-col, .whatsapp-col{
  display: none;
}



/* Color Variables */
:root {
  --primary-color: #fff;
  --secondary-color: #3498db;
  --background-color: #ecf0f1;
  --text-color: #333;
  --hover-color: #2980b9;
}

/* Base Styles */
.mob-menu{
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999999;
}



/* Responsive Adjustments */
@media (min-width: 768px) {
  .nav-menu {
    width: 750px;
  }
}
/*Medium Screens */
@media (min-width: 922px) {
  .nav-menu {
    width: 970px;
  }
}
/*Large Screens */
@media (min-width: 1200px) {
  .nav-menu {
    width: 1170px;
  }
}

/* Burger Icon Container */
.burger-container {
    position: absolute;
    top: 35px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    row-gap: 5px;
    column-gap: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px 4px #0000001a;
    margin-left: auto;
}

/* Burger Icon Lines */
.burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--red);
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
}

/* Checkbox Hack */
#burger-toggle {
  display: none;
}

/* Navigation Styles */
.nav-menu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #fff 100%);
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: -4px 0 15px #00000033;
  overflow-y: auto;
  padding-top: 60px;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff0d;
  backdrop-filter: blur(10px);
}

.nav-menu ul {
  list-style-type: none;
}

.nav-menu ul li {
  margin: 0 15px;
  border-bottom: 1px solid #94939387;
}

.nav-menu ul li a {
  color: var(--red);
  text-decoration: none;
  display: block;
  padding: 15px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  transition: left 0.3s ease;
}

.nav-menu ul li a:hover::after {
  left: 0;
}

/* Burger Icon Animation on Checkbox Checked */
#burger-toggle:checked ~ .burger-container .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#burger-toggle:checked ~ .burger-container .burger-line:nth-child(2) {
  opacity: 0;
}

#burger-toggle:checked ~ .burger-container .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Slide In */
#burger-toggle:checked ~ .nav-menu {
  right: 0;
}
.mob-socila-icons ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
.nav-menu .mob-socila-icons ul li a{
  padding: 0px;
}
.nav-menu .mob-socila-icons ul li{
  margin: 0px;
  border: 0px;
  border-bottom: 0px;
}
.nav-menu .mob-socila-icons ul li a::after {

  width: 0%;
  height: 0px;
  background-color: #fff;
}
.mob-socila-icons{
  padding: 15px;
}
.header-mob{
  display: none;
}

/* width */
.nav-menu::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.nav-menu::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.nav-menu::-webkit-scrollbar-thumb {
  background: #888; 
}

.sub-menu-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  margin-left: 5px;
}

.subdropdown-menu {
  display: none;
  list-style: none;
  background: #fff;
  padding: 10px 0;
}

.subdropdown-menu li {
  padding: 5px 15px;
}

.subdropdown-menu li a {
  text-decoration: none;
  color: #333;
}

.sub-menu-dropdown.open .subdropdown-menu {
  display: block;
}

.sub-menu-dropdown .mob-dropdown-menu{
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  border: 0px;
  box-shadow: 0px 0px 0px 0px;
  background-color: transparent;
}
.sub-menu-dropdown .dropdown-toggle::after{
    border-top: .5em solid var(--red);
    border-right: .5em solid transparent;
    border-left: .5em solid transparent;
}
.nav-menu ul.subdropdown-menu li{
  margin: 0px;
  padding:0px;
}
.nav-menu ul.subdropdown-menu li a{
  padding-left: 15px;
  padding-right: 15px;
}
.nav-menu ul li.sub-menu-dropdown.open {
    border-bottom: 0px solid #94939387;
}
.mob-dropdown-menu{
  position: relative;
    text-decoration: none;
    display: block;
    overflow: hidden;
}
.mob-dropdown-menu a{
  display: block;
  width: 100%;
}
.mob-dropdown-menu button{
margin-right: 20px;
}
.nav-menu ul li .mob-dropdown-menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--red);
    transition: left 0.3s ease;
}
.nav-menu ul li .mob-dropdown-menu:hover::after {
    left: 0;
}
.nav-menu ul li .mob-dropdown-menu a::after {
   width: 0%;
    height: 0px;
}
.mob-phone-row{
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.mob-phone-row .pr-0{
  padding-right: 0px;
}
.mob-phone-row .pl-0{
  padding-left: 0px;
}
.burger-container.active{
  background: transparent;
    box-shadow: 0 0px 0px #ffffffff;
}
.btn span.lg-none{
  display: none;
}
.socialMedia-icons img, .follow-icons img{
   transition: transform .2s;
}
.socialMedia-icons img:hover, .follow-icons img:hover {
  -ms-transform: scale(1.19); /* IE 9 */
  -webkit-transform: scale(1.19); /* Safari 3-8 */
  transform: scale(1.19); 
}
.google-rating{
  background-color: var(--red);
  padding: 4px 6px;
  display: flex;
  align-items: center;
  column-gap: 7px;
  border-radius: 5px;
}
footer .google-rating{
  background-color: #fff;
}
.rating-tag{
  display: inline-flex;
}
.mob-rating{
  display: inline-flex;
}
.mob-rating .google-rating{
  column-gap: 2px;
}

.mob-menu {
 
  overflow: hidden; /* default hidden */
}

.mob-menu.menu-open {
  overflow-y: auto; /* enable vertical scroll inside mob-menu */
}
.slider-badge-row{
 position: absolute;
  top: -45px;
  right: -25px;
  rotate: 24deg;
}
.badge-on-slider.badge-circle{
 
  width: 140px;
  height: 140px;
}


@media screen and (max-width: 1800px){
.truck {

  offset-path: path("M 0 500 A 800 500 0 0 1 800 0");
}
.footer-end-text{
    font-size: 300px;
}
}
@media screen and (max-width: 1520px){
.container{
  max-width: 90% !important;
  margin: auto;
}
.menu-list a, .btn span{
  font-size: 20px;
}
.menu-center{
  margin-left: 40px;
  margin-right: 40px;
}
.badge-row{
  column-gap: 130px;
}
.flag{
  top: -25%;
}
.truck {

  offset-path: path("M 0 500 A 690 500 0 0 1 700 0");
  bottom: 24%; 
    width: 250px;
    offset-rotate: auto;
    animation: drive 4s linear forwards;
}
}
@media screen and (max-width: 1300px){
.menu-list a, .btn span{
  font-size: 18px;
}
.main-logo {
    max-width: 100px;
}
.footer-logo img{
   max-width: 150px;
}
h1.title{
  font-size: 60px;
}
.intro-section h1.title{
  width: 90%;
}
.white-btn.main-btn a{
 padding: 7px 10px;
}
.badge-row{
  column-gap: 100px;
}
.sub-title {
    font-size: 50px;   
    line-height: 50px; 
}
.title-width{
  max-width: 80% !important;
}
.tabcontent-detail{
  column-gap: 80px;
}
.about-section{
  column-gap: 60px;
}
.flag{
  top: -32%;
}
.truck {

  offset-path: path("M 0 500 A 725 500 8 0 1 660 0"); 
}
.footer-end-text{
    font-size: 275px;
}
section{
  padding: 80px 0px;
}
}
@media screen and (max-width: 1250px){
.menu-center {
    margin-left: 30px;
    margin-right: 30px;
}
.container {
  max-width: 95% !important;
}
}
@media screen and (max-width: 1200px){
  .badge-row{
    column-gap: 60px;
  }
  .sub-title {
    font-size: 40px;   
    line-height: 40px; 
  }
  .title-width{
    max-width: 80% !important;
  }
  .truck {
    offset-path: path("M 0 500 A 900 500 19 0 1 590 0");
    bottom: 22%;
  }
  .bg-video {
    object-fit: contain;
  }
}
@media screen and (max-width: 992px){
  .header, .header-top{
    display: none;
  }
  .header-menu-mob{
    display: block;
  }
  .header-mob .menu-list{
    column-gap: 15px;
  }
  .header-mob .menu-left .menu-list{
    justify-content: left;
  }
  .header-mob .menu-right .menu-list{
    justify-content: right;
  }
  section {
    padding: 80px 0px;
  }
  .intro-section h1.title {
    width: 100%;
  }
  h1.title {
    font-size: 46px;
    letter-spacing: 5px;
  }
  .pb-m-25{
    padding-bottom: 25px;
  }
  .intro-section .link-btn{
    margin-top: 25px;
    text-align: center;
  }
  .white-btn.main-btn a {
    padding: 10px 15px;
  }
  h1.title{
    text-align: center;
  }
  .badge-row{
  column-gap: 40px;
  flex-wrap: wrap;
  row-gap: 30px;
  }
  .badge-circle {
    width: 150px;
    height: 150px;
  }
  .sub-title {
    font-size: 35px; 
    line-height: 35px;  
}
.title-width{
  max-width: 100% !important;
}
.tabcontent-detail{
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: center;
  text-align: center;
}
.food-tab .tab{
  column-gap: 70px;
  padding: 30px 30px 30px;
  overflow-x: auto;
}
.food-tab .tabcontent h3 {
    font-size: 30px;
    padding-bottom: 10px;
}
.food-tab .tabcontent {
    padding-top: 50px;
}
.food-tab {
    margin: 50px 0px 10px!important;
}
.food-tab .tab::-webkit-scrollbar {
  width: 1px;
}

.food-tab .tab::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
.food-tab .tab::-webkit-scrollbar-thumb {
  background: #c0c0c0; 
}
.pb-md-60{
  padding-bottom: 60px;
}
.about-section{
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.about-section .sub-title, .about-section p{
  text-align: center !important;
}
.about-section .about-img{
  margin: auto;
  margin-top: 40px;
}
.testimonial-slider{
  padding-top: 50px;
}
.flag{
  top: -42%;
}
.truck {
    offset-path: path("M 0 500 A 900 500 19 0 1 590 0");
    bottom: 22%;
}
.video-section{
  padding-bottom: 60px;
}
footer .col-lg-4.col-sm-12{
  width: fit-content;
}
footer .row{
  width: 100%;
  justify-content: space-between;
}
.phone-col, .whatsapp-col{
  display: block;
}
.header-mob{
  display: block;
}
.header-mob .main-logo {
    max-width: 80px;
}
.header-mob .menu-list .main-btn .btn span {
        font-size: 15px;
        top: -2px;
    }
    .header-mob .menu-list .main-btn a {
        padding: 3px 5px;
    }
    .header-mob .header-menu{
      padding: 15px 0px;
    }
}
@media screen and (max-width: 767px){
  section {
        padding: 50px 0px;
    }  
    .carousel-indicators {
  
    margin-bottom: 10px !important;
    }
    .badge-row{
      margin: 50px 0px !important;
    }
    .about-img {
        width: auto;
        max-width: 100%;
    }
    .flag{
      top: -52%;
    }
     .truck {
        offset-path: path("M 0 500 A 1115 500 27 0 1 350 0");
        width: 180px;
    }
     .video-section{
      padding-bottom: 40px;
    }
    .food-tab .tab {
        column-gap: 60px;
        padding: 20px 20px 20px;
    }
}
@media screen and (max-width: 680px){
    .truck {
        offset-path: path("M 0 500 A 980 500 50 0 1 260 0");
        bottom: 18%;
    }
  }
@media screen and (max-width: 650px){
  footer .col-sm-12.footer-logo-row{
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .row{
  width: 100%;
  justify-content: space-between;
}
}
@media screen and (max-width: 575px){
  h1.title {
    font-size: 40px;
    letter-spacing: 5px;
  }
      section {
        padding: 35px 0px;
    }
    .sub-title {
    font-size: 28px;   
    line-height: 30px; 
}
    .food-tab .tabcontent h3 {
        font-size: 25px;
    }
    .dish-img img {
    width: 100%;
}
.pb-sm-40{
  padding-bottom: 40px;
}
.about-section{
  padding-top: 20px;
}
.testimonial-slider{
  padding-top: 30px;
}
section.testimonial-section{
  padding-top: 35px;
}
.flag{
  top: -72%;
}
.truck {
    offset-path: path("M 0 500 A 1070 500 50 0 1 261 0");
    width: 120px;
}
  .video-section{
      padding-bottom: 25px;
    }
    .phone-col .phone-icon{
      width: 44px;
      height: 44px;
    }
     .phone-col .phone-icon svg{
      width: 18px;
      height: 18px;
    }
    .whatsapp-col .whatsapp-icon img{
      width: 40px;
      height: 40px;
      display: block;
    }
}
@media screen and (max-width: 500px){
  .btn span.md-none{
    display: none;
  }
  .btn span.xs-block{
    display: block;
  }
  .header-mob .main-btn{
    background-color: var(--white);
    border-radius: 7px;
  }
  .header-mob .menu-list .main-btn a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 3px;
  }
  .header-mob .menu-list .main-btn .btn span {
        top: 0px;
    }
}
@media screen and (max-width: 480px){
    .truck {
        offset-path:path("M 0 500 A 1270 500 50 0 1 220 0");
        width: 120px;
    }
}
@media screen and (max-width: 420px){
.flag{
  top: -92%;
}
    .truck {
        offset-path: path("M 0 500 A 1450 500 34 0 1 170 0");
        width: 80px;
        
    }
    .truck.animate {
      animation: drive 3s linear forwards;
  }
      .footer-logo img {
        max-width: 100px;
    }
    .footer-title {
 
    font-size: 16px;
    padding-bottom: 15px;
}
footer {
    padding: 30px 0px 0px;
}
.footer-contact a{
  font-size: 14px;
}
.nav-menu {
    right: -360px;
    width: 360px;
}
.mob-phone-row {
    flex-wrap: wrap;
}
.nav-menu a{
  font-size: 14px;
}
.mob-socila-icons ul {
   
    flex-wrap: wrap;
    row-gap: 10px;
}
}
@media screen and (max-width: 375px){
.flag{
  top: -120%;
}
.nav-menu {
    right: -300px;
    width: 300px;
}
.mob-phone-row .xs-pt-0{
  padding-top: 0px;
}
}
/**************************Foodeza***********************/
.meal-banner img{
  width: 100%;
}
.meal-banner {
  position: relative;
}
.meal-content{
  position: absolute;
  top: 15%;
  left: 0px;
  right: 0px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.meal-banner-btn{
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  border-radius: 30px;
  background-color: var(--yellow);
  padding: 7px 15px;
}
.banner-order-btn button{
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  border-radius: 30px;
  background-color: var(--yellow);
  padding: 7px 15px;
  cursor: pointer;
  border: 0px;
}
.meal-content h1{
  font-family: brume;
  font-size: 44px;
  color: #fff;
  font-weight: 600;
  padding: 10px 0px;
  margin-bottom: 0px;
}
.meal-wrap-sub-title{
  font-family: var(--font-main);
  color: #fff;
  font-size: 16px;
  width: 400px;
    text-align: center
}
.banner-footer-text{
  font-family: var(--font-main);
  color: var(--red);
  font-size: 16px;
  padding-top: 15px;
    text-align: center
}
.meal-banner-ftr{
  position: absolute;
  bottom: 10%;
  left: 0px;
  right: 0px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.mob-mealbanner{
  display: none;
}
.mid-card-section {
	background-color: var(--bg);
	padding-bottom: 30px;
}

.card h2 {
	color: #000;
	font-size: 26px;
  text-align: center;
  font-weight: 600;
  font-family: brume;
}

.card p {
	color: #000;
}

.card ul {
	padding: 0px;
	padding-left: 20px;
}

.text-red {
	color: var(--red);
}
.grid {
	display: grid;
	gap: 16px
}

.grid-3 {
	grid-template-columns: repeat(3, 1fr)
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr)
}

.center {
	text-align: center
}

.muted {
	color: var(--muted)
}

img.hero-img {
	width: 100%;
	border-radius: 22px;
	border: 6px solid #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}
.mid-card-section .card{
  padding: 30px 25px 25px;
  border: 3px solid var(--red);
  border-radius: 10px;
}
.mid-card-section{
  background-image: url(../meal-box/images/leaf-background1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.card-paragraph{
  text-align: center;
  padding-top: 15px;
  padding-bottom: 40px;
  width: 90%;
  margin: 0px auto;
}
.mid-card-section ul{
  width: 60%;
  margin:0px auto;
  padding-bottom: 20px !important;
}
.mid-card-section ul li{
  flex-direction: column;
  row-gap: 2px;
  justify-content: center;
  align-items: center;
}
.bullet-content{
  position: relative;
}
.bullet-content::before{
    content: ".";
    position: absolute;
    top: -37px;
    left: -14px;
    color: #000;
    width: 6px;
    height: 6px;
    font-size: 45px;
}
.location-time {
	background-image: url("../images/location-background.png");
	background-repeat: repeat;
	background-size: contain;
	padding: 70px 0px 50px;
}
.location-time .text-black {
	padding-bottom: 30px;
  padding-top: 10px;
}
.h2-title {
	color: var(--red);
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 10px;
  font-family: brume;
}

.text-black {
	color: #000;
}

.item .muted {
	color: #666666;
  font-size: 18px;
}
.location-time .text-black {
	padding-bottom: 30px;
}
.item .btn {
	width: fit-content;
	padding: 7px 15px;
	border-radius: 5px;
	margin-top: 15px;
}

.delivery-details {
	min-height: 72px;
  font-size: 18px;
}

.notice-text {
	color: #000;
	margin-top: 25px;
}
.center {
    text-align: center;
}
.price {
	font-weight: 800;
	font-size: 24px
}

.schedule .item {
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 16px;
	padding: 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: 0px 0px 15px 7px #00000026;
}

.schedule .date {
	font-weight: 800
}

.schedule .city {
	font-weight: 700;
	color: #111;
	padding-bottom: 5px;
}

.pill {
	display: inline-block;
	color: var(--red);
	font-size: 20px;
	font-weight: 700
}
.how {
	background: #fff;
	padding: 24px;
	border: 1px solid #eee;
	border-radius: 18px
}

form {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 20px;
	padding: 20px;
	display: grid;
	gap: 14px
}
.item .btn {
	width: fit-content;
	padding: 7px 15px;
	border-radius: 5px;
	margin-top: 15px;
}
.location-time .btn {
	position: relative;
	/* let ::before position inside */
	display: inline-block;
	background: var(--red);
	color: #fff;
	padding: 7px 15px;
	border-radius: 5px;
	font-weight: 700;
	border: 2px solid var(--red);
	transition: .2s;
	cursor: pointer;
	overflow: hidden;
	/* clip the shine to pill shape */
	isolation: isolate;
	/* keep blend effects contained */
	box-shadow: 0 8px 20px rgba(225, 34, 34, .20);
}

.location-time .btn:hover {
	background: var(--red-dark);
	border-color: var(--red-dark);
  color: #fff;
}

.location-time .btn-outline {
	background: transparent;
	color: var(--red);
	border-color: var(--red)
}
.detail-section{
  background-image: url(../meal-box/images/leaf-background2.webp);
  background-repeat: no-repeat;
	background-size: cover;
	padding: 70px 0px 50px;
}
.image-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
}

.detail-section .card {
	background-color: #fff;
	padding: 25px 25px 25px 40px; 
}

.image-list ul li {
	padding-bottom: 10px;
}

.image-list ul {
	margin-top: 0px;
}
.detail-box .card h2{
  text-align: left;
  padding-bottom: 20px;
  color: var(--red);
}
.detail-box .image-list ul {
    list-style-type: disc;
}
.notice {
	background: #f5f2bbab;
	border: 1px solid #ffe100;
	padding: 12px;
	border-radius: 12px;
	margin-bottom: 10px;
  margin-top: 20px;
}
.notice-text {
	color: #000;
	margin-top: 25px;
}
@media screen and (max-width: 1400px){
.meal-content{
  top: 60px;
}
}
@media screen and (max-width: 1200px){
.meal-content{
  top: 40px;
}
.meal-content h1{
  font-size: 36px;
}
.meal-banner-btn{
  font-size: 13px;
}
.meal-banner-ftr{
  bottom: 5%;
}
.location-time {
	padding: 40px 0px 40px;
}
.detail-section {
   
    padding: 40px 0px 40px;
}
}
@media screen and (max-width: 992px){
  .desktop-mealbanner{
    display: none;
  }
  .mob-mealbanner{
    display: block;
  }
  .meal-content {
        top: 20%;
    }
        .meal-banner-ftr {
        bottom: 20%;
    }
    .card-paragraph {
      padding-bottom: 20px;
    }

	.hero .wrap {
		grid-template-columns: 1fr
	}

	.grid-3 {
		grid-template-columns: 1fr
	}

	.grid-2 {
		grid-template-columns: 1fr
	}

	.inline {
		grid-template-columns: 1fr
	}
  .location-time {
    padding: 30px 0px 30px;
  }
  .detail-section {
 
    padding: 30px 0px 30px;
}
  .image-list {
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.image-list img {
		width: 100%;
	}

}
@media screen and (max-width: 575px){
  
  .meal-content {
        top: 15%;
    }
        .meal-banner-ftr {
        bottom: 15%;
    }
    .card h2 {
      font-size: 22px;
    }
    .mid-card-section .card {
      padding: 20px 20px;
    }
    .item .muted {
      font-size: 16px;
  }
  .detail-section .card {
    padding: 25px 25px 25px 25px;
}
.notice{
  font-size: 14px;
}
}
@media screen and (max-width: 420px){
.meal-content h1 {
        font-size: 30px;
    }
    .meal-wrap-sub-title {
    font-size: 14px;
    width: 90%;
    margin: auto;
    }
    .meal-banner-btn, .banner-order-btn button {
  
      padding: 5px 10px;
  }
  .meal-content {
        top: 7%;
        width: 98%;
        margin: auto;
    }
    .meal-banner-ftr {
        bottom: 7%;
    }
    .banner-footer-text {
    font-size: 14px;
    }
}