*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Gotu", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.warning {
  text-align: left;
  font-size: 1.7rem;
  width: 90%;
  max-width: 45rem;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .warning {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 600px) {
  .warning {
    font-size: 1rem;
  }
}

.warning-title {
  font-size: 2rem;
  color: #ce0000;
}

.warning-underline {
  text-decoration: underline;
}

.pages {
  max-width: 50rem;
  width: 95%;
  margin: 0 auto;
}

.pages-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero {
  width: 100%;
  height: 100vh;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.8))), url("../img/hero2.jpg");
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../img/hero2.jpg");
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../img/hero2.jpg");
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url("../img/hero2.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero-cta {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 1rem;
  font-size: 1.2rem;
  margin-top: 10vh;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  color: gold;
  border: 1px solid gold;
}

.hero-header {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #ce0000;
}

@media only screen and (max-width: 900px) {
  .hero-header {
    font-size: 2.5rem;
  }
}

.hero-header-cn {
  padding-left: 30px;
  font-family: "Ma Shan Zheng", cursive;
  letter-spacing: 2rem;
  font-size: 3.5rem;
}

@media only screen and (max-width: 900px) {
  .hero-header-cn {
    letter-spacing: 1rem;
    font-size: 3rem;
  }
}

@media only screen and (max-width: 600px) {
  .hero-header-cn {
    letter-spacing: 2rem;
  }
}

.hero-header-cn-container {
  max-width: 50rem;
  width: 95%;
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 600px) {
  .hero-header-cn-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.hero-header-container {
  padding-top: 15vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.payment-options {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2rem auto 0 auto;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.pay-img {
  max-width: 6rem;
  max-height: 6rem;
  min-height: 0;
  height: auto;
  width: 20%;
}

.phone {
  color: #ce0000;
}

.nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
}

@media only screen and (max-width: 600px) {
  .nav {
    padding: 1rem;
  }
}

.nav-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.nav-link {
  color: white;
  position: relative;
  text-decoration: none;
  font-size: 1.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 600px) {
  .nav-link {
    font-size: 1rem;
  }
}

.nav-link:hover {
  color: gold;
}

.nav-link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 3px;
  width: 0;
  background: transparent;
}

.underline:after {
  -webkit-transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
  -o-transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
  transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
}

.underline:hover:after {
  width: 100%;
  left: 0;
  background: gold;
}

.underline-red:after {
  -webkit-transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
  -o-transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
  transition: width 0.4s ease, background-color 0.4s ease, left 0.4s ease;
}

.underline-red:hover:after {
  width: 100%;
  left: 0;
  background: #ce0000;
}

.about {
  border-left: 1rem solid #ce0000;
  border-right: 1rem solid #ce0000;
  padding: 2.5rem 0;
}

.about-header {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about-text {
  width: 95%;
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.2rem;
  text-indent: 50px;
  line-height: 3rem;
}

.menu {
  text-align: center;
  padding: 2.5rem 0;
  background-color: #1b1b1b;
  color: #fafafa;
}

@media only screen and (max-width: 600px) {
  .menu {
    padding-bottom: 1rem;
  }
}

.menu .menu-image {
  width: calc(50% - 1rem);
  max-width: 45rem;
  height: auto;
  display: inline-block;
  margin: 0.5rem;
  vertical-align: top;
  border: 2px solid #ce0000;
}

@media only screen and (max-width: 600px) {
  .menu .menu-image {
    width: 100%;
    margin: 0.5rem 0;
  }
}

.menu-disclaimer {
  display: block;
  margin-bottom: 2rem;
  margin-top: 2rem;
  color: #fafafa;
  font-size: 1.5rem;
}

.menu-disclaimer span {
  color: yellow;
}

.menu-new-items {
  margin-top: 2.5rem;
}

.menu-gallery {
  padding-top: 2rem;
  width: 90vw;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 2rem;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 600px) {
  .menu-gallery {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    -ms-grid-rows: auto auto auto;
        grid-template-rows: auto auto auto;
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
    row-gap: 1rem;
  }
}

.menu-gallery-new {
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
}

.menu-gallery-text {
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  max-width: 30rem;
  max-height: 30rem;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.menu-gallery-text p {
  margin-top: 25%;
  font-size: 2vw;
  padding: 0 1rem;
}

@media only screen and (max-width: 900px) {
  .menu-gallery-text p {
    font-size: 1rem;
  }
}

.menu-gallery-text:hover {
  opacity: 1;
}

.menu-gallery-picture {
  max-width: 30rem;
  max-height: 30rem;
  width: 100%;
  height: 100%;
}

.menu-gallery-picture-container {
  position: relative;
  overflow: hidden;
  max-width: 30rem;
  max-height: 30rem;
  width: 100%;
  height: 100%;
  border: 2px solid #ce0000;
}

.menu-gallery-picture-container-new {
  position: relative;
  overflow: hidden;
  max-width: 30rem;
  max-height: 30rem;
  width: 100%;
  border: 2px solid #ce0000;
}

.menu-header {
  font-size: 2rem;
}

.menu-btn {
  color: #fafafa;
  text-decoration: none;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}

.menu-btn:hover {
  color: #ce0000;
}

.menu-btn:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 3px;
  width: 0;
  background: transparent;
}

.menu-modal {
  padding: 1rem 0;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 100;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-modal-info-container {
  width: 80%;
  margin: 0 auto;
  border: 1px solid #ce0000;
  margin-top: 1rem;
}

.menu-modal:target {
  opacity: 1;
  visibility: visible;
}

.menu-modal:target .menu-modal-menu {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.menu-modal-close:link, .menu-modal-close:visited {
  color: #ce0000;
  font-size: 2rem;
  text-decoration: none;
  z-index: 200;
  position: fixed;
  top: 1rem;
  right: 7%;
}

.menu-modal-close:hover {
  color: gold;
}

.menu-modal-info {
  display: block;
  color: #ce0000;
  text-align: center;
}

.menu-modal-menu {
  background-color: #fafafa;
  width: 95%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 1rem 0;
  opacity: 0;
  -webkit-transform: scale(0.25);
      -ms-transform: scale(0.25);
          transform: scale(0.25);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu-modal-header, .menu-modal-subheader {
  color: #ce0000;
  text-align: center;
}

.menu-modal-header {
  font-size: 1.8rem;
  text-decoration: underline;
}

.menu-modal-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 600px) {
  .menu-modal-items {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 500px) {
  .menu-modal-items {
    font-size: 0.8rem;
  }
}

.menu-modal-category {
  max-width: 40rem;
  width: 100%;
  padding: 1rem 1rem;
  margin-top: 1rem;
}

@media only screen and (max-width: 600px) {
  .menu-modal-category {
    padding: 0.5rem 1rem;
  }
}

.menu-modal-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 3px;
}

.menu-modal-item:hover {
  background-color: #ebebeb;
}

.menu-modal-item-info {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 600px) {
  .menu-modal-item-info {
    font-size: 0.85rem;
  }
}

@media only screen and (max-width: 500px) {
  .menu-modal-item-info {
    font-size: 0.75rem;
  }
}

.menu-modal-name-spicy {
  color: #ce0000;
}

.menu-modal-price {
  text-align: right;
}

.order {
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-left: 1rem solid #ce0000;
  border-right: 1rem solid #ce0000;
  text-align: center;
  background-color: #fafafa;
}

.order-phone, .order-grubhub, .order-postmate, .order-doordash, .order-uber {
  width: 20rem;
  margin-bottom: 2rem;
}

.order-header {
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #1b1b1b;
}

.order-methods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.order-icon {
  width: 6rem;
  border-radius: 10rem;
  margin-bottom: 1rem;
}

.order-link {
  text-decoration: none;
  color: #ce0000;
  -webkit-transition: all 0.3 ease;
  -o-transition: all 0.3 ease;
  transition: all 0.3 ease;
  position: relative;
}

.order-link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background: transparent;
}

#uber-mobile {
  display: none;
}

@media only screen and (max-width: 960px) {
  #uber-mobile {
    display: inline;
  }
}

@media only screen and (max-width: 960px) {
  #uber-desktop {
    display: none;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 850px) {
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact-map {
  width: 33.3vw;
  height: 450px;
  vertical-align: bottom;
}

@media only screen and (max-width: 850px) {
  .contact-map {
    width: 100vw;
  }
}

.contact-picture {
  width: 33.3vw;
  height: 450px;
}

@media only screen and (max-width: 850px) {
  .contact-picture {
    width: 100vw;
    height: 100%;
  }
}

.contact-info {
  text-align: center;
  width: 33.3vw;
  padding-bottom: 2rem;
  background-color: #1b1b1b;
  color: #fafafa;
  height: 450px;
}

@media only screen and (max-width: 850px) {
  .contact-info {
    width: 100vw;
  }
}

.contact-header {
  width: 100%;
  padding-top: 1rem;
  color: #fafafa;
}

.awards {
  border-left: 1rem solid #ce0000;
  border-right: 1rem solid #ce0000;
  text-align: center;
  padding: 1rem;
  background-color: #fafafa;
}

.awards-header {
  font-size: 2rem;
  color: #1b1b1b;
}

.spaced {
  margin-bottom: 1rem;
}

.topped {
  margin-top: 1rem;
}

.footer {
  text-align: center;
  padding: 2rem 0;
}

.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

.slide-pictures {
  width: 100%;
  height: 100%;
}

.slides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 50px 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ce0000;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  -o-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.dot-box {
  position: absolute;
  text-align: center;
  left: 50%;
  bottom: 3%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.active,
.dot:hover {
  background-color: #940000;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}

.menu-image {
  width: 90vw;
  max-width: 1700px;
  margin: 1.5rem 1rem;
}
/*# sourceMappingURL=main.css.map */