:root {
  --primary-color: #0f9d58;
  --background-color: #f0f3f7;
  --secon-color: #9da2ad;
  --grey: #7a7a7b;
  --white: #ffffff;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@media only screen and (min-height: 680px) {
  #menu{
    background-image: url(assets/menu-back.webp);
  }
}

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

body {
  background-color: var(--background-color);
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}
html {
  background-color: var(--background-color);
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

#home{
  background-image: url(assets/home-bg.webp)
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--background-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.menu-wrap {
  max-width: 1366px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item {
  margin-left: 1rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--grey);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu-item:hover,
.menu-item.active {
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
}

.cart-btn {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.cart-tel {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding-right: 5rem;
}

.cart-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 1rem;
}

.fullheight {
  height: 100vh;
}

.align-items-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-img-fixed {
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

section {
  padding: 9rem 0;
}

.slogan {
  text-align: left;
}

.slogan h1 {
  font-size: 4rem;
  text-align: center;
  color: var(--primary-color);
}

#about-slogan-span {
  font-size: 20px;
  margin: 5px;
  display: block;
  margin-top: 10px;
  color: orange;
  font-weight: 600;
}

#intro {
  font-size: 1.4rem;
  text-align: center;
  color: rgb(232, 85, 85);
}

#call-us {
  font-size: 20px;
}

.slogan span {
  display: inline-block;
  padding: 1rem 3rem;
  outline: none;
  border: none;
  background-color: var(--background-color);
  border: 0.125rem solid var(--primary-color);
  border-radius: 2rem;
  color: var(--primary-color);
  margin: 3rem 0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.5s ease-in-out;
}

.slogan span:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.fullwidth-cook {
  width: 80%;
}

.fullwidth {
  width: 100%;
}

#about img {
  border-radius: 2rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    width: 85%;
}

.about-slogan {
  padding: 4rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.about-slogan.start {
  transform: translateX(-10rem) !important;
}

.about-slogan h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--grey);
}

#slogan-para {
  font-size: 20px;
  font-weight: 500;
}

.primary-color {
  color: var(--primary-color);
}

.food-menu {
  padding: 4rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.food-menu h2 {
  color: var(--grey);
  font-size: 2rem;
}

.food-menu p {
  margin: 2rem 0;
}

.food-category {
  display: flex;
}

.food-category button {
  padding: 0.5rem 2.5rem;
  margin: 0 1rem;
  outline: none;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.food-category button:hover,
.food-category button.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.food-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 3rem;
}

.food-item {
  width: 25%;
  height: 30rem;
  padding: 1rem;
}

.item-wrap {
  height: 100%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  border-radius: 2rem;
}

.item-wrap:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.item-img {
  height: 60%;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.img-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
  border-radius: 2rem;
}

.img-holder:hover {
  transform: scale(2) rotate(45deg);
}

.item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 0 1rem;
}

.item-info h3 {
  color: var(--grey);
}

.item-info > div:first-child {
  text-align: left;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  margin: 2rem 0;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 2rem;
  border: 1px solid #888;
  border-radius: 35px;
  width: 80%;
}

.grid-box {
  display: grid;
  grid-template-columns: repeat(3, auto);
}
.grid-box p {
  margin: 2px;
}

.modal-h2 {
  color: var(--primary-color);
  width: 25vh;
  align-items: center;
  margin: 2rem auto;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.review-wrap {
  width: 100%;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 3rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.review-wrap.active {
  transform: scale(1.2) !important;
}

.review-content {
  padding: 3rem;
  border-bottom: 0.125rem solid var(--grey);
  position: relative;
  text-align: center;
}

.review-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.review-info {
  padding: 3rem;
  text-align: center;
}

.rating {
  margin-top: 2rem;
}

.rating i {
  color: var(--primary-color);
}

.footer {
  color: var(--white);
}

.footer h1 {
  color: var(--primary-color);
}

.margin-contact {
  margin: 1rem;
}

.input-group {
  padding: 1rem;
  border: 0.125rem solid var(--primary-color);
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.input-group input {
  flex: auto;
  outline: none;
  border: none;
  color: var(--primary-color);
  background-color: transparent;
}

.input-group button {
  padding: 0.5rem 1rem;
  outline: none;
  border: none;
  background-color: var(--primary-color);
  border-radius: 1rem;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  bottom: 70px;
  right: 70px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 0.5rem;
  z-index: 99;
  display: none;
}

.food-item-wrap > div {
  display: none;
}

.food-item-wrap.all > div {
  display: block;
}

.food-item-wrap.salad > div.salad-type {
  display: block;
}

.food-item-wrap.lorem > div.lorem-type {
  display: block;
}

.food-item-wrap.ipsum > div.ipsum-type {
  display: block;
}

.food-item-wrap.dolor > div.dolor-type {
  display: block;
}

/* ANIMATION */

.left-to-right {
  transform: translateX(-150%);
  transition: 1s ease-in-out;
}

.left-to-right.start {
  transform: translateX(0);
}

.right-to-left {
  transform: translateX(150%);
  transition: 1s ease-in-out;
}

.right-to-left.start {
  transform: translateX(0);
}

.zoom {
  transform: scale(0);
  transition: 0.6s ease-in-out;
}

.zoom.start {
  transform: unset;
}

.bottom-up {
  transform: translateY(30%);
  transition: 0.8s ease-in-out;
}

.bottom-up.start {
  transform: translateY(0);
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-10 {
  transition-delay: 0.1s;
}

.delay-12 {
  transition-delay: 0.12s;
}

/* GRID SYSTEM */

.row {
  display: flex;
  flex-wrap: wrap;
}

[class*="col-"] {
  padding: 1rem;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.mb-nav {
  display: none;
}

:root {
  --primary-color: #e56a23;
  --background-color: #f0f3f7;
  --secon-color: #9da2ad;
  --grey: #7a7a7b;
  --white: #ffffff;
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body,
html {
  background-color: var(--background-color);
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--background-color);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.menu-wrap {
  max-width: 1366px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item {
  margin-left: 1rem;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  color: var(--grey);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu-item:hover,
.menu-item.active {
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
}

.cart-btn {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.cart-tel {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding-right: 5rem;
}

.cart-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 1rem;
}

.fullheight {
  height: 100vh;
}

.align-items-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-img-fixed {
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

section {
  padding: 9rem 0;
}

.slogan {
  text-align: left;
}

.slogan h1 {
  font-size: 4rem;
  text-align: center;
  color: var(--primary-color);
}

#about-slogan-span {
  font-size: 20px;
  margin: 5px;
  display: block;
  margin-top: 10px;
  color: orange;
  font-weight: 600;
}

#intro {
  font-size: 1.4rem;
  text-align: center;
}

#call-us {
  font-size: 20px;
}

.bx-phone,
.bxl-chrome,
.bx-mail-send {
  font-size: 16px;
}

.slogan span {
  display: inline-block;
  padding: 1rem 3rem;
  outline: none;
  border: none;
  background-color: var(--background-color);
  border: 0.125rem solid var(--primary-color);
  border-radius: 2rem;
  color: var(--primary-color);
  margin: 3rem 0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.5s ease-in-out;
}

.slogan span:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.fullwidth-cook {
  width: 80%;
}

.fullwidth {
  width: 100%;
}

#about img {
  border-radius: 2rem;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.about-slogan {
  padding: 4rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

.about-slogan.start {
  transform: translateX(-10rem) !important;
}

.about-slogan h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--grey);
}

#slogan-para {
  font-size: 20px;
  font-weight: 500;
}

.primary-color {
  color: var(--primary-color);
}

.food-menu {
  padding: 4rem;
  background-color: var(--white);
  border-radius: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.food-menu > p:first-child {
  color: var(--grey);
  font-size: 2rem;
  font-weight: 600;
}

.food-menu p {
  margin: 2rem 0;
}

.food-category {
  display: flex;
}
.food-category::-webkit-scrollbar {
  display: none;
}

.food-category button {
  padding: 0.5rem 2.5rem;
  margin: 0 1rem;
  outline: none;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-weight: 600;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.food-category button:hover,
.food-category button.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.food-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 3rem;
}

.food-item {
  width: 25%;
  height: 30rem;
  padding: 1rem;
}

.item-wrap {
  height: 100%;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  border-radius: 2rem;
}

.item-wrap:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.item-img {
  height: 60%;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.img-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
  border-radius: 2rem;
}

.img-holder:hover {
  transform: scale(2) rotate(45deg);
}

.item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding: 0 1rem;
}

.item-info h3 {
  color: var(--grey);
}

.item-info > div:first-child {
  text-align: left;
}

.review-wrap {
  width: 100%;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 3rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.review-wrap.active {
  transform: scale(1.2) !important;
}

.review-content {
  padding: 3rem;
  border-bottom: 0.125rem solid var(--grey);
  position: relative;
  text-align: center;
}

.review-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 2rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.review-info {
  padding: 3rem;
  text-align: center;
}

.rating {
  margin-top: 2rem;
}

.rating i {
  color: var(--primary-color);
}

.footer {
  color: var(--white);
  padding: 1rem 1rem 4rem 1rem;
}

.footer h1 {
  color: var(--primary-color);
}

.input-group {
  padding: 1rem;
  border: 0.125rem solid var(--primary-color);
  border-radius: 2rem;
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.input-group input {
  flex: auto;
  outline: none;
  border: none;
  color: var(--primary-color);
  background-color: transparent;
}

.input-group button {
  padding: 0.5rem 1rem;
  outline: none;
  border: none;
  background-color: var(--primary-color);
  border-radius: 1rem;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  bottom: 70px;
  right: 70px;
  border-radius: 10px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  padding: 0.5rem;
  z-index: 99;
  display: none;
}

.food-item-wrap > div {
  display: none;
}

.food-item-wrap.all > div {
  display: block;
}

.food-item-wrap.sweet > div.sweet-type {
  display: block;
}

.food-item-wrap.special > div.special-type {
  display: block;
}

.food-item-wrap.veg > div.veg-type {
  display: block;
}

.food-item-wrap.breakfast > div.breakfast-type {
  display: block;
}

.food-item-wrap.chat > div.chat-type {
  display: block;
}

/* ANIMATION */

.left-to-right {
  transform: translateX(-150%);
  transition: 1s ease-in-out;
}

.left-to-right.start {
  transform: translateX(0);
}

.right-to-left {
  transform: translateX(150%);
  transition: 1s ease-in-out;
}

.right-to-left.start {
  transform: translateX(0);
}

.zoom {
  transform: scale(0);
  transition: 0.6s ease-in-out;
}

.zoom.start {
  transform: unset;
}

.bottom-up {
  transform: translateY(30%);
  transition: 0.8s ease-in-out;
}

.bottom-up.start {
  transform: translateY(0);
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-10 {
  transition-delay: 0.1s;
}

.delay-12 {
  transition-delay: 0.12s;
}

/* GRID SYSTEM */

.row {
  display: flex;
  flex-wrap: wrap;
}

[class*="col-"] {
  padding: 1rem;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.mb-nav {
  display: none;
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-height: 680px) {
  .slogan h1 {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  * {
    font-size: 13px;
  }
  #home {
    background-image: url(/assets/home-bg-mb.webp) !important;
  }

  .grid-box {
    grid-template-columns: repeat(1, auto);
  }

  .modal-h2 {
    color: var(--primary-color);
    margin: 2rem 2rem;
  }

  section {
    padding: 2rem 0;
  }

  h1 {
    font-size: 3rem !important;
  }

  .margin-contact {
    margin: 5px;
  }

  .bxs-phone-call {
    font-size: 30px;
  }

  span {
    font-size: inherit;
  }

  .cart-btn i {
    font-size: 2rem;
  }

  .about {
    background-image: url(assets/menu-back.webp);
    background-attachment: fixed;
  }

  .about-slogan.start {
    transform: translateX(0) !important;
  }
  .about-slogan {
    padding: 1rem;
  }

  .food-menu {
    padding: 4rem 0;
  }

  .food-item {
    width: 50%;
    height: 25rem;
  }

  .food-category {
    overflow-y: scroll;
  }

  .food-category button {
    width: max-content;
  }

  .back-to-top {
    bottom: 6rem;
    right: 1rem;
  }

  .review-wrap.active {
    transform: unset !important;
  }

  .bx-up-arrow-circle {
    font-size: 22px;
  }

  /* MOBILE NAV */

  .mb-nav {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    z-index: 99;
    overflow: hidden;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .mb-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 25%;
    padding: 1rem 0;
  }

  .mb-nav-item i,
  .mb-nav-item a {
    font-size: 2rem;
    color: var(--secon-color);
    z-index: 2;
    transition: 0.5s ease-in-out;
  }

  .mb-nav-item.active i {
    color: var(--white);
  }
  .mb-nav-item.active {
    color: var(--white);
    background-color: var(--primary-color);
  }

  .mb-move-item {
    position: absolute;
    left: 0;
    width: 25%;
    height: 100%;
    /* background-color: var(--primary-color); */
    transition: 0.5s ease-in-out;
  }

  /* END MOBILE NAV */

  .col-xs-1 {
    width: 8.33%;
  }

  .col-xs-2 {
    width: 16.66%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-4 {
    width: 33.33%;
  }

  .col-xs-5 {
    width: 41.66%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-7 {
    width: 58.33%;
  }

  .col-xs-8 {
    width: 66.66%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-10 {
    width: 83.33%;
  }

  .col-xs-11 {
    width: 91.66%;
  }

  .col-xs-12 {
    width: 100%;
  }

  .h-xs-about {
    display: none;
  }

  .h-xs {
    width: 100%;
  }
}

@media only screen and (max-width: 340px) {
  .row {
    flex-direction: column;
  }
}

@media only screen and (max-width: 600px) {
  * {
    font-size: 13px;
  }

  h1 {
    font-size: 3rem !important;
  }

  span {
    font-size: inherit;
  }

  .cart-btn i {
    font-size: 2rem;
  }

  .about {
    background-image: url(assets/all-back.webp);
    background-attachment: fixed;
  }

  .about-slogan.start {
    transform: translateX(0) !important;
  }
  .about-slogan {
    padding: 1rem;
  }

  .food-menu {
    padding: 4rem 0;
  }

  .food-item {
    width: 50%;
    height: 25rem;
  }

  .food-category {
    overflow-y: scroll;
  }

  .food-category button {
    width: max-content;
  }

  .back-to-top {
    bottom: 6rem;
    right: 1rem;
  }

  .review-wrap.active {
    transform: unset !important;
  }
  .fullheight {
    height: 100vh;
  }

  /* MOBILE NAV */

  .mb-nav {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    z-index: 99;
    overflow: hidden;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .mb-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 25%;
    padding: 1rem 0;
  }

  .mb-nav-item i,
  .mb-nav-item a {
    font-size: 2rem;
    color: var(--secon-color);
    z-index: 2;
    transition: 0.5s ease-in-out;
  }

  .mb-nav-item.active i {
    color: var(--white);
  }

  .mb-move-item {
    position: absolute;
    left: 0;
    width: 25%;
    height: 100%;
    /* background-color: var(--primary-color); */
    transition: 0.5s ease-in-out;
  }

  /* END MOBILE NAV */

  .col-xs-1 {
    width: 8.33%;
  }

  .col-xs-2 {
    width: 16.66%;
  }

  .col-xs-3 {
    width: 25%;
  }

  .col-xs-4 {
    width: 33.33%;
  }

  .col-xs-5 {
    width: 41.66%;
  }

  .col-xs-6 {
    width: 50%;
  }

  .col-xs-7 {
    width: 58.33%;
  }

  .col-xs-8 {
    width: 66.66%;
  }

  .col-xs-9 {
    width: 75%;
  }

  .col-xs-10 {
    width: 83.33%;
  }

  .col-xs-11 {
    width: 91.66%;
  }

  .col-xs-12 {
    width: 100%;
  }

  .h-xs-about {
    display: none;
  }

  .h-xs {
    width: 100%;
  }
}
