@font-face {
  font-family: poppinsL;
  src: url(../fonts/poppins-light.woff2) format("woff2");
}
@font-face {
  font-family: poppins;
  src: url(../fonts/poppins-regular.woff2) format("woff2");
}
@font-face {
  font-family: poppinsM;
  src: url(../fonts/poppins-medium.woff2) format("woff2");
}
@font-face {
  font-family: poppinsSB;
  src: url(../fonts/poppins-semibold.woff2) format("woff2");
}
@font-face {
  font-family: poppinsB;
  src: url(../fonts/poppins-bold.woff2) format("woff2");
}
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: poppins;
  cursor: default;
}
body a {
  text-decoration: none;
}
body .container {
  max-width: 25rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}
body header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .nav-left a img {
  width: 2.8rem;
  height: 2.8rem;
}
body header .nav-center a {
  border-radius: 6.2rem;
  border: 1px solid #c90000;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
}
body header .nav-center_signinbtn {
  color: #c90000;
}
body header .nav-center_signinbtn:hover {
  color: #b00000;
  border: 1px solid #b00000;
}
body header .nav-center_loginbtn {
  background-color: #c90000;
  color: #ffffff;
}
body header .nav-center_loginbtn:hover {
  background-color: #b00000;
}
body header .nav-center-right img {
  width: 2.2rem;
  height: 2.2rem;
}
body header .subheader {
  text-align: center;
}
body header .subheader_title h1 {
  color: #c90000;
  font-family: poppinsSB;
  font-size: 2rem;
}
body header .subheader_title p {
  color: #504f4f;
  font-family: poppins;
  font-size: 1rem;
}
body header .subheader_image {
  position: relative;
}
body header .subheader_image img {
  width: 16.5rem;
  height: 16rem;
}
body header .subheader_image_delivery {
  position: absolute;
  padding: 0.8rem;
  background-color: rgba(241, 241, 241, 0.4);
  border: 1px solid #f1f1f1;
  border-radius: 3rem;
  border-bottom-right-radius: 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
}
body header .subheader_image_delivery img {
  width: 1.1rem;
  height: 1.1rem;
  grid-row: 1/2;
  grid-column: 1/2;
  margin-right: 0.5rem;
}
body header .subheader_image_delivery h2 {
  color: #323232;
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: 1rem;
}
body header .subheader_image_delivery span {
  color: #7d7c7c;
  grid-row: 2/3;
  grid-column: 2/3;
  font-size: 0.8rem;
  justify-self: flex-start;
}
body header .subheader_order {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: center;
  gap: 1rem 2.5rem;
}
body header .subheader_order h3 {
  grid-column: 1/2;
  grid-row: 1/2;
  font-family: poppinsL;
  font-size: 0.8rem;
}
body header .subheader_order h3 strong {
  font-family: poppinsM;
  font-size: 0.9rem;
}
body header .subheader_order_countbtn {
  grid-column: 1/2;
  grid-row: 2/3;
  box-shadow: 0px 20px 20px 0px rgba(112, 144, 176, 0.2);
  border-radius: 6.25rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .subheader_order_countbtn button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  width: 1rem;
  height: 1rem;
}
body header .subheader_order_countbtn button img {
  width: 100%;
  height: 100%;
}
body header .subheader_order_countbtn span {
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  color: #ffc300;
  font-family: poppinsM;
  padding: 0px 0.8rem;
}
body header .subheader_order_orderbtn {
  grid-column: 2/3;
  grid-row: 2/3;
  background-color: #ffc300;
  border-radius: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 20px 20px 0px rgba(112, 144, 176, 0.2);
}
body header .subheader_order_orderbtn a {
  padding: 0.5rem 1rem;
  color: #323232;
  font-size: 0.9rem;
}
body header .subheader_order_orderbtn a img {
  width: 1rem;
  height: 1rem;
}
body main .menu h2 {
  color: #c90000;
  text-transform: uppercase;
  font-family: PoppinsSB;
  position: relative;
  margin: 3rem 0rem 2rem;
}
body main .menu h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  width: 5rem;
  padding: 2px;
  background-color: #ffd429;
}
body main .menu ul {
  display: grid;
  grid-template-columns: repeat(5, 11rem);
  gap: 1.3rem;
  list-style-type: none;
  overflow-x: scroll;
}
body main .menu ul li {
  background-color: #f1f1f1;
  border-radius: 6.25rem;
  font-family: PoppinsM;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .menu ul li:first-child {
  background-color: #ffc300;
}
body main .menu ul li:first-child a {
  color: #323232;
}
body main .menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding: 1rem 1rem;
  color: #504f4f;
}
body main .menu ul li a img {
  width: 1.2rem;
  height: 1.2rem;
  margin-right: 0.3rem;
}
body main .menu .product {
  display: grid;
  grid-template-columns: auto;
}
body main .menu .product #seeal {
  text-align: center;
  font-family: PoppinsM;
  font-size: 1.25rem;
  color: #504f4f;
  position: relative;
  text-decoration: underline;
}
body main .menu .product .menu-item {
  border: 1px solid #e3e3e3;
  border-radius: 0.75rem;
  margin: 2rem;
  padding: 1rem;
}
body main .menu .product .menu-item_product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body main .menu .product .menu-item_product img {
  width: 14.2rem;
  height: 10.6rem;
}
body main .menu .product .menu-item_product__text {
  width: 100%;
  text-align: start;
  margin-top: 2rem;
}
body main .menu .product .menu-item_product__text h4 {
  font-size: 1.25rem;
  font-family: PoppinsSB;
  color: #323232;
}
body main .menu .product .menu-item_product__text h5 {
  font-size: 0.875rem;
  color: #504f4f;
  margin: 0.5rem 0;
}
body main .menu .product .menu-item_rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
body main .menu .product .menu-item_rating img {
  width: 1.4rem;
  height: 1.4rem;
}
body main .menu .product .menu-item_rating span {
  font-size: 0.875rem;
  color: #7d7c7c;
}
body main .menu .product .menu-item_buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
body main .menu .product .menu-item_buy h6 {
  font-size: 1.5rem;
  font-family: PoppinsSB;
  color: #323232;
}
body main .menu .product .menu-item_buy button {
  background-color: #c90000;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  padding: 0.2rem 0.4rem;
}
body main .menu .product .menu-item_buy button img {
  width: 1.5rem;
  height: 1.5rem;
}
body main .saleoff h2 {
  color: #c90000;
  text-transform: uppercase;
  font-family: PoppinsSB;
  position: relative;
  margin: 3rem 0rem 2rem;
}
body main .saleoff h2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  width: 7rem;
  padding: 2px;
  background-color: #ffd429;
}
body main .saleoffproducts {
  display: grid;
  grid-template-columns: auto;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
body main .saleoffproducts_item {
  background-color: #e3e3e3;
  border-radius: 1.25rem;
  padding: 2rem;
  overflow: hidden;
}
body main .saleoffproducts_item h6 {
  font-size: 1rem;
  position: relative;
  color: #323232;
}
body main .saleoffproducts_item h6::after {
  content: "";
  position: absolute;
  padding: 0.5px;
  background-color: #504f4f;
  top: 7px;
  left: 75px;
  right: 0;
  width: 70%;
}
body main .saleoffproducts_item h3 {
  color: #c90000;
  font-size: 2rem;
  font-family: PoppinsSB;
  margin: 0.5rem 0 1rem;
}
body main .saleoffproducts_item p {
  color: #504f4f;
  line-height: 1.5rem;
}
body main .saleoffproducts_item del {
  color: #504f4f;
  font-family: PoppinsSB;
}
body main .saleoffproducts_item span {
  color: #c90000;
  font-size: 1.5rem;
  font-family: PoppinsSB;
}
body main .saleoffproducts_item .saleimg {
  position: relative;
}
body main .saleoffproducts_item .saleimg img {
  position: absolute;
  bottom: -75px;
  right: -80px;
  width: 12rem;
}
body main .saleoffproducts_item button {
  border: none;
  outline: none;
  background-color: #504f4f;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6.25rem;
  margin-top: 3rem;
}
body main .saleoffproducts_item button a {
  color: #f1f1f1;
  font-family: PoppinsN;
}
body main .mobileapp {
  margin: 5rem auto 0;
  background-image: url("../images/Rectangle 21.png");
  background-size: contain;
  background-repeat: no-repeat;
}
body main .mobileapp .mobileapptext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body main .mobileapp .mobileapptext h3 {
  color: #7d7c7c;
  margin-top: 6rem;
}
body main .mobileapp .mobileapptext h2 {
  color: #c90000;
  margin: 1rem 0 1.5rem;
}
body main .mobileapp .mobileapptext p {
  color: #323232;
}
body main .mobileapp_download {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
body main .mobileapp_download__items {
  background-color: #504f4f;
  padding: 0.5rem 1rem;
  border-radius: 3.2rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  justify-content: center;
  align-items: center;
}
body main .mobileapp_download__items img {
  grid-column: 1/2;
  grid-row: 1/3;
  margin-right: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
}
body main .mobileapp_download__items span {
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 0.8rem;
  font-family: PoppinsL;
}
body main .mobileapp_download__items a {
  grid-column: 2/3;
  grid-row: 2/3;
  font-size: 1rem;
  font-family: PoppinsL;
  color: #ffffff;
}
body main .mobileapp .mobileimg {
  margin-top: 5.625rem;
}
body main .mobileapp .mobileimg img {
  width: 100%;
  height: 100%;
}
body footer .topfooter {
  background-color: #323232;
  color: #f1f1f1;
  border-radius: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
  padding: 6rem 0;
  margin-top: 4rem;
  overflow: hidden;
}
body footer .topfooter-text {
  position: relative;
}
body footer .topfooter-text h3 {
  font-family: PoppinsL;
  font-size: 1.25rem;
}
body footer .topfooter-text p {
  font-family: PoppinsM;
  font-size: 0.75rem;
}
body footer .topfooter-text .saladimg {
  position: absolute;
  left: -25px;
  bottom: 35px;
  width: 10rem;
  opacity: 0.7;
}
body footer .topfooter-text .saladimg img {
  width: 100%;
  height: 100%;
}
body footer .topfooter-text .burgerimg {
  opacity: 0.7;
  position: absolute;
  top: 140px;
  right: 20px;
  width: 10rem;
}
body footer .topfooter-text .burgerimg img {
  width: 100%;
  height: 100%;
}
body footer .topfooter-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
body footer .topfooter-map label {
  position: absolute;
  top: 0;
  right: 38px;
}
body footer .topfooter-map label button {
  background-color: #f1f1f1;
  outline: none;
  border: none;
  padding: 1rem;
  border-radius: 6.25rem;
}
body footer .topfooter-map input {
  background-color: #ffc300;
  border-radius: 6.25rem;
  outline: none;
  border: none;
  padding: 1rem;
  width: 80%;
}
body footer .topfooter-map input::placeholder {
  color: #504f4f;
}
body footer .bottomfooter {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  margin-top: 6rem;
  background-color: #fff6a3;
  padding: 5rem 2rem 3rem;
  max-width: 100%;
  text-align: center;
}
body footer .bottomfooter h2 {
  color: #323232;
  font-size: 1.2rem;
  font-family: PoppinsM;
}
body footer .bottomfooter ul {
  list-style-type: none;
  margin-top: 2rem;
}
body footer .bottomfooter ul li {
  color: #323232;
  font-size: 1rem;
  font-family: PoppinsL;
  margin-top: 1rem;
}
body footer .bottomfooter-links ul li a {
  color: #323232;
  font-size: 1rem;
  font-family: PoppinsL;
}
body footer .bottomfooter .footerlogo {
  grid-column: 1/3;
  margin-top: 7rem;
}
body footer .bottomfooter .footerlogo-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
body footer .bottomfooter .footerlogo-top img {
  width: 4.3rem;
  height: 4.3rem;
}
body footer .bottomfooter .footerlogo-top h2 {
  font-size: 2rem;
  color: #323232;
  margin-left: 1rem;
}
body footer .bottomfooter .footerlogo-bot {
  margin-top: 2rem;
}
body footer .bottomfooter .footerlogo-bot img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 1rem;
}/*# sourceMappingURL=style.css.map */