@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
  --green: #ff6348;
  --black: #192a56;
  --light-color: #666;
  --box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

* {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  transition: all 0.2s linear;
}

html {
  font-size: 0.65rem;
  overflow-x: hidden;
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
}

section {
  padding: 2rem 9%;
}

section:nth-child(even) {
  background: #eee;
}

.sub-heading {
  text-align: center;
  color: #ff6348;
  font-size: 2rem;
  padding-top: 1rem;
}

.heading {
  text-align: center;
  color: var(--black);
  font-size: 3rem;
  text-transform: uppercase;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  font-size: 1.7rem;
  color: #fff;
  background: var(--black);
  border-radius: 0.5rem;
  cursor: pointer;
  padding: 0.8rem 3rem;
}

.btn:hover {
  background: #ff6348;
  letter-spacing: 0.1rem;
}

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: var(--box-shadow);
}

header .logo {
  color: var(--black);
  font-size: 2.5rem;
  font-weight: bolder;
}

header .logo i {
  color: #ff6348;
}

header .navbar a {
  font-size: 1.7rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  color: var(--light-color);
}

header .navbar a.active,
header .navbar a:hover {
  color: #fff;
  background: #ff6348;
}

header .icons i,
header .icons a {
  cursor: pointer;
  margin-left: 0.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  width: 4.5rem;
  text-align: center;
  font-size: 1.7rem;
  color: var(--black);
  border-radius: 50%;
  background: #eee;
}

header .icons i:hover,
header .icons a:hover {
  color: #fff;
  background: #ff6348;
  transform: rotate(360deg);
}

header .icons #menu-bars {
  display: none;
}

/* tìm kiếm */

#search-form {
  position: fixed;
  top: -110%;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1004;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

#search-form.active {
  top: 0;
}

#search-form #search-box {
  width: 50rem;
  border-bottom: 0.1rem solid #fff;
  padding: 1rem 0;
  color: #fff;
  font-size: 3rem;
  text-transform: none;
  background: none;
}

#search-form #search-box::placeholder {
  color: #eee;
}

#search-form #search-box::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

#search-form label {
  color: #fff;
  cursor: pointer;
  font-size: 3rem;
}

#search-form label:hover {
  color: #ff6348;
}

#search-form #close {
  position: absolute;
  color: #fff;
  cursor: pointer;
  top: 2rem;
  right: 3rem;
  font-size: 5rem;
}

/* trang chủ */

.home .home-slider .slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 9rem;
}

.home .home-slider .slide .content {
  flex: 1 1 45rem;
}

.home .home-slider .slide .image {
  flex: 1 1 45rem;
}

.home .home-slider .slide .image img {
  width: 100%;
}

.home .home-slider .slide .content span {
  color: #ff6348;
  font-size: 2.5rem;
}

.home .home-slider .slide .content h3 {
  color: var(--black);
  font-size: 7rem;
}

.home .home-slider .slide .content p {
  color: var(--light-color);
  font-size: 2.2rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.swiper-pagination-bullet-active {
  background: #ff6348;
}

/* Sản phẩm nổi bật */
.box-container .box,
.box-container .all {
  max-width: 380px;
}

.dishes .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.dishes .box-container .box {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}

.dishes .box-container .box .image {
  height: 25rem;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.dishes .box-container .box .image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.dishes .box-container .box .image .fa-heart {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--black);
}

.dishes .box-container .box .image .fa-heart:hover {
  background-color: #ff6348;
  color: #fff;
}

.dishes .box-container .box .content {
  padding: 2rem;
  padding-top: 0;
}

.dishes .box-container .box .content .stars {
  padding-bottom: 1rem;
}

.dishes .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #ff6348;
}

.dishes .box-container .box .content h3 {
  color: var(--black);
  font-size: 2.5rem;
}

.dishes .box-container .box .content p {
  color: var(--light-color);
  font-size: 1.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.dishes .box-container .box .content .price {
  color: #ff6348;
  margin-left: 1rem;
  font-size: 2.5rem;
}
/* giới thiệu */
.about .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.about .row .image {
  flex: 1 1 45rem;
}

.about .row .image img {
  width: 100%;
}

.about .row .content {
  flex: 1 1 45rem;
}

.about .row .content h3 {
  color: var(--black);
  font-size: 4rem;
  padding: 0.5rem 0;
}

.about .row .content h4 {
  color: var(--black);
  font-size: 3rem;
  padding: 0.5rem 0;
}

.about .row .content p {
  color: var(--light-color);
  font-size: 1.5rem;
  padding: 0.5rem 0;
  line-height: 2;
}

.about .row .content .icons-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-top: 0.5rem;
}

.about .row .content .icons-container .icons {
  background: #eee;
  border-radius: 0.5rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  flex: 1 1 17rem;
  padding: 1.5rem 1rem;
}

.about .row .content .icons-container .icons i {
  font-size: 2.5rem;
  color: #ff6348;
}

.about .row .content .icons-container .icons span {
  font-size: 1.5rem;
  color: var(--black);
}

/* Gà */
/* category Gà */
.main-container > h2 {
  text-align: center;
  font-size: 32px;
}
.main-container > p {
  font-weight: 300;
  opacity: 0.7;
  text-align: center;
}

.category-head {
  background: rgb(248, 244, 244);
  margin: 10px 0 10px 0;
  height: 120px;
  width: 100%;
}
.category-head ul li > div.active {
  background: #ff6348;
  color: #fff;
}
.category-head {
  height: inherit;
}

@media (max-width: 768px) {
  .category-head li img {
    max-width: 100%;
    height: initial;
  }
  .category-head {
    margin-bottom: 3rem;
  }
  .category-head li {
    max-width: 50%;
    text-align: center;
    flex: 1;
  }
  .category-head ul {
    justify-content: center !important;
  }
  .category-head li div {
    height: 100% !important;
    padding: 10px !important;
  }
}
.category-head li .span {
  font-size: 1.3rem;
}
.category-title-ga {
  justify-content: center;
  color: #000;
  transition: all 0.4s ease;
  height: 120px;
  padding: 6px 40.55px 42px 40.55px;
}

.category-head ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.category-title-ga:hover {
  opacity: 0.7;
}
.category-title-ga li {
  font-size: 18px;
  padding: 1px 22px 3px 22px;

  justify-content: center;
}

.category-title-ga span {
  color: #222;
}

.category-title-ga:hover {
  background: #ff6348;
}
/* post gà */
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}

.menu .box-container .box .image {
  height: 25rem;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.menu .box-container .box .image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.menu .box-container .box .image .fa-heart {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--black);
}

.menu .box-container .box .image .fa-heart:hover {
  background-color: #ff6348;
  color: #fff;
}

.menu .box-container .box .content {
  padding: 2rem;
  padding-top: 0;
}

.menu .box-container .box .content .stars {
  padding-bottom: 1rem;
}

.menu .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #ff6348;
}

.menu .box-container .box .content h3 {
  color: var(--black);
  font-size: 2.5rem;
}

.menu .box-container .box .content p {
  color: var(--light-color);
  font-size: 1.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.menu .box-container .box .content .price {
  color: #ff6348;
  margin-left: 1rem;
  font-size: 2.5rem;
}

.menu .box-container .ga {
  display: none;
}
.menuheo .box-container .heo {
  display: none;
}
/* moreload Gà */
.btn1,
.btn-loadmore {
  background: royalblue;
  border: none;
  color: #fff;
  display: block;
  font-size: 1.3rem;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  margin: 1em auto 0 !important;

  width: 136px;
  height: 35px;
  border-radius: 5px;
}

.btn1:hover,
.btn-loadmore:hover {
  opacity: 0.8;
}

/* hiệu ứng hover sản phẩm */

.image {
  position: relative;
  width: 400px;
}

.image__img {
  display: block;
  width: 100%;
}

.image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.image__overlay--blur {
  backdrop-filter: blur(5px);
}

.image__overlay--primary {
  border-radius: 1rem;
}

.image__overlay > * {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.image__overlay:hover {
  opacity: 1;
}

.image__overlay:hover > * {
  transform: translateY(0);
}

.image__title {
  font-size: 2em;
  font-weight: bold;
}

.image__description {
  font-size: 1.25em;
  margin-top: 0.25em;
}

/* Heo */
/* category heo */
.main-container > h2 {
  text-align: center;
  font-size: 32px;
}
.main-container > p {
  font-weight: 300;
  opacity: 0.7;
  text-align: center;
}

.category-title-heo {
  justify-content: center;
  color: #000;
  transition: all 0.4s ease;
  height: 120px;
  padding: 6px 40.55px 42px 40.55px;
}

.category-head ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.category-head li {
  font-size: 1.6rem;
  cursor: pointer;
}

.category-head img {
  height: 100%;
  display: block;
  margin: 0 auto;
  padding: 5px 0;
  /* width: 100%; */
  position: relative;
}

.category-title-heo:hover {
  opacity: 0.7;
}

.category-title-heo li {
  font-size: 18px;
  padding: 1px 22px 3px 22px;

  justify-content: center;
}

.category-title-heo span {
  color: #222;
}

.category-title-heo:hover {
  background: #ff6348;
}

/* post heo */
.menuheo .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menuheo .box-container .box {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}

.menuheo .box-container .box .image {
  height: 25rem;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.menuheo .box-container .box .image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.menuheo .box-container .box .image .fa-heart {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--black);
}

.menuheo .box-container .box .image .fa-heart:hover {
  background-color: #ff6348;
  color: #fff;
}

.menuheo .box-container .box .content {
  padding: 2rem;
  padding-top: 0;
}

.menuheo .box-container .box .content .stars {
  padding-bottom: 1rem;
}

.menuheo .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #ff6348;
}

.menuheo .box-container .box .content h3 {
  color: var(--black);
  font-size: 2.5rem;
}

.menuheo .box-container .box .content p {
  color: var(--light-color);
  font-size: 1.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.menuheo .box-container .box .content .price {
  color: #ff6348;
  margin-left: 1rem;
  font-size: 2.5rem;
}

.menuheo .box-container .heo {
  display: none;
}

/* moreload heo */
.btn2 {
  background: royalblue;
  border: none;
  color: #fff;
  display: block;
  font-size: 1.3rem;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  margin-left: 116px;
  margin-top: -25px;
  width: 136px;
  height: 35px;
  border-radius: 5px;
}

.btn2:hover {
  opacity: 0.8;
}

/* Bò */
/* category heo */
.main-container > h2 {
  text-align: center;
  font-size: 32px;
}
.main-container > p {
  font-weight: 300;
  opacity: 0.7;
  text-align: center;
}

.category-title-bo {
  justify-content: center;
  color: #000;
  transition: all 0.4s ease;
  height: 120px;
  padding: 6px 40.55px 42px 40.55px;
}

.category-head ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.category-title-bo:hover {
  opacity: 0.7;
}

.category-title-bo li {
  font-size: 18px;
  padding: 1px 16px 3px 16px;

  justify-content: center;
}

.category-title-bo span {
  color: #222;
}

.category-title-bo:hover {
  background: #ff6348;
}

.menubo .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menubo .box-container .box {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}

.menubo .box-container .box .image {
  height: 25rem;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.menubo .box-container .box .image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.menubo .box-container .box .image .fa-heart {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--black);
}

.menubo .box-container .box .image .fa-heart:hover {
  background-color: #ff6348;
  color: #fff;
}

.menubo .box-container .box .content {
  padding: 2rem;
  padding-top: 0;
}

.menubo .box-container .box .content .stars {
  padding-bottom: 1rem;
}

.menubo .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #ff6348;
}

.menubo .box-container .box .content h3 {
  color: var(--black);
  font-size: 2.5rem;
}

.menubo .box-container .box .content p {
  color: var(--light-color);
  font-size: 1.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.menubo .box-container .box .content .price {
  color: #ff6348;
  margin-left: 1rem;
  font-size: 2.5rem;
}

.menubo .box-container .bo {
  display: none;
}

/* moreload bo */
.btn3 {
  background: royalblue;
  border: none;
  color: #fff;
  display: block;
  font-size: 1.3rem;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  margin-left: 480px;
  margin-top: 6px;
  width: 136px;
  height: 35px;
  border-radius: 5px;
}

.btn3:hover {
  opacity: 0.8;
}

/* Cá */
/* category cá */

.main-container > h2 {
  text-align: center;
  font-size: 32px;
}
.main-container > p {
  font-weight: 300;
  opacity: 0.7;
  text-align: center;
}

.category-title-ca {
  justify-content: center;
  color: #000;
  transition: all 0.4s ease;
  height: 120px;
  padding: 6px 40.55px 42px 40.55px;
}

.category-head ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.category-title-ca:hover {
  opacity: 0.7;
}
.category-title-ca li {
  font-size: 18px;
  padding: 1px 21px 3px 21px;

  justify-content: center;
}

.category-title-ca span {
  color: #222;
}

/* post cá */

.category-title-ca:hover {
  background: #ff6348;
}
.menuca .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menuca .box-container .box {
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
}

.menuca .box-container .box .image {
  height: 25rem;
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.menuca .box-container .box .image img {
  height: 100%;
  width: 100%;
  border-radius: 0.5rem;
  object-fit: cover;
}

.menuca .box-container .box .image .fa-heart {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 2rem;
  background: #fff;
  border-radius: 50%;
  color: var(--black);
}

.menuca .box-container .box .image .fa-heart:hover {
  background-color: #ff6348;
  color: #fff;
}

.menuca .box-container .box .content {
  padding: 2rem;
  padding-top: 0;
}

.menuca .box-container .box .content .stars {
  padding-bottom: 1rem;
}

.menuca .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #ff6348;
}

.menuca .box-container .box .content h3 {
  color: var(--black);
  font-size: 2.5rem;
}

.menuca .box-container .box .content p {
  color: var(--light-color);
  font-size: 1.6rem;
  padding: 0.5rem 0;
  line-height: 1.5;
}

.menuca .box-container .box .content .price {
  color: #ff6348;
  margin-left: 1rem;
  font-size: 2.5rem;
}

.menuca .box-container .ca {
  display: none;
}
/* moreload cá */

.btn4 {
  background: royalblue;
  border: none;
  color: #fff;
  display: block;
  font-size: 1.3rem;
  cursor: pointer;
  outline: none;
  transition: 0.3s;
  margin-left: 484px;
  margin-top: 6px;
  width: 136px;
  height: 35px;
  border-radius: 5px;
}

.btn4:hover {
  opacity: 0.8;
}

/*Contact*/

.contact-info {
  display: flex;
  width: 100%;
  max-width: 1600px;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #fff;
  border: #fff 1px;
  padding: 20px;
  margin: 0 auto;
  width: calc(33% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
}

.card-icon {
  font-size: 28px;
  background: #ff6348;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px !important;
  border-radius: 50%;
  transition: 0.3s linear;
}

.card:hover .card-icon {
  background: none;
  color: #ff6348;
  transform: scale(1.6);
}

.card p {
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 1.6rem;
  /* opacity: 0; */
  transition: 0.3s linear;
}

.card:hover p {
  max-height: 40px;
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .contact-info {
    flex-direction: column;
  }
  .card {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
  }
}

/* Footer */

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box h3 {
  padding: 0.5rem 0;
  font-size: 2.5rem;
  color: red;
}

.footer .box-container .box a {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  color: var(--light-color);
}

.footer .box-container .box h4 {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  color: var(--light-color);
}

.footer .box-container .box a:hover {
  color: #ff6348;
  text-decoration: underline;
}

.footer .credit {
  text-align: center;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  font-size: 2rem;
  color: var(--black);
  padding: 0.5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer .credit span {
  color: #ff6348;
}

.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-container img {
  width: 35rem;
}

.loader-container.fade-out {
  top: -110%;
  opacity: 0;
}

/* media queries  */

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 1rem 2rem;
  }

  section {
    padding: 2rem;
  }
}

@media (max-width: 1280px) {
  header .logo {
    font-size: 1.6rem;
  }
  header .navbar a {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  header .icons #menu-bars {
    display: inline-block;
  }
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
    padding: 1rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  header .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  header .navbar a {
    display: block;
    padding: 1.5rem;
    margin: 1rem;
    font-size: 1.5rem;
    background: #eee;
  }

  #search-form #search-box {
    width: 90%;
    margin: 0 1rem;
  }

  .home .home-slider .slide .content h3 {
    font-size: 5rem;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }

  .dishes .box-container .box img {
    height: auto;
    width: 100%;
  }

  .order form .inputBox .input {
    width: 100%;
  }
}

body .box-container {
  grid-template-columns: repeat(3, 1fr) !important;
}

.footer .box-container {
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)) !important;
}

@media (max-width: 768px) {
  body .box-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  body .box-container {
    grid-template-columns: repeat(1, auto) !important;
  }
}
