@media (max-width: 576px) {
  ::-webkit-scrollbar {
    height: 9px;
    background-color: #f5f5f5;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(207, 207, 207);
  }
}
::selection {
  color: #fff;
  background: #000100;
}

*:focus {
  outline: 1px #000100;
}

*:focus-visible {
  outline: 1px #000100 !important;
}

html {
  font-size: 16px;
  line-height: calc(1em + 0.625rem);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #000100;
}

img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "EB Garamond", serif;
  overflow-wrap: break-word;
  hyphens: auto;
  font-weight: 700;
}

h2 {
  font-size: 4rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 3rem;
  }
}

strong {
  font-weight: 700;
}

a {
  transition: 0.3s all;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

section,
header {
  position: relative;
  z-index: 0;
}

section {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.primary {
  color: #000100;
}

.secondary {
  color: rgb(212, 212, 212);
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 2.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  user-select: none;
  border-radius: 0.4rem;
}
@media (max-width: 575.98px) {
  .btn {
    padding: 0.7rem 1.4rem;
  }
}
.btn:focus {
  outline: 1px #000100;
}

.primary-btn, .contact-01 .map a.way-btn {
  background: #000100;
  color: #fdfefd;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(53, 53, 53, 0.4);
  letter-spacing: 0.1rem;
  animation-name: order-btn-move;
  animation-duration: 6s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}
.primary-btn:hover, .contact-01 .map a.way-btn:hover, .primary-btn:focus, .contact-01 .map a.way-btn:focus {
  color: #fdfefd;
  opacity: 0.65;
}

.secondary-btn {
  color: #000000;
  background: #e9e7e7;
  font-weight: bold;
  font-size: 1.1rem;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: #000000;
}

@supports (backdrop-filter: blur) {
  .bg-blur {
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    backdrop-filter: blur(40px) saturate(180%);
  }
}
.header-absolute-content {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 575.98px) {
  .header-absolute-content {
    right: 50%;
    transform: translateX(50%);
  }
}

.online-status {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  background: rgb(240, 240, 240);
  box-shadow: 0 20px 20px -15px;
  align-items: center;
}
@media (max-width: 575.98px) {
  .online-status {
    background: none;
    box-shadow: none;
  }
}
.online-status.dark {
  background: #242424;
}
.online-status.transparent {
  background: transparent;
  text-shadow: 0 0px 10px rgb(0, 0, 0);
  padding: 0;
}
.online-status.transparent.open {
  box-shadow: none;
}
.online-status.closed {
  color: #f76666;
}
.online-status.closed .online-status-bullet {
  display: none;
}
.online-status.open {
  color: #1aa415;
}
.online-status.open .online-status-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.online-status.open .online-status-bullet .online-status-bullet-fill {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: #1aa415;
  box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
  animation: flash 2s infinite;
}
.online-status .online-status-content {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.online-status .online-status-content i {
  margin-right: 0.5rem;
}
@media (max-width: 575.98px) {
  .online-status .online-status-content {
    white-space: nowrap;
  }
}

.skeleton-box {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  margin: 0;
}
.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(190, 190, 190, 0) 0, rgba(190, 190, 190, 0.2) 20%, rgba(190, 190, 190, 0.5) 60%, rgba(190, 190, 190, 0));
  animation: shimmer 2s infinite;
  content: "";
}

.header-btns {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .header-btns {
    flex-direction: row;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    margin: 0;
  }
}

@keyframes circle-in-center {
  from {
    clip-path: circle(0%);
  }
  to {
    clip-path: circle(125%);
  }
}
[transition-style="in:circle:center"] {
  animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
.navbar-01 {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
  transition: 0.75s all;
}
@media (min-width: 992px) {
  .navbar-01 {
    height: 80px;
  }
}
.navbar-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s all;
}
@media (min-width: 992px) {
  .navbar-01::before {
    background: #000100;
    opacity: 0;
  }
}
.navbar-01.black {
  background: #000100;
}
.navbar-01 .navbar-nav {
  align-items: center;
}
.navbar-01 .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.navbar-01 .navbar-nav .nav-link.order {
  min-width: unset;
}
.navbar-01 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: #fff;
  font-size: 1.7rem;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.6rem;
  }
  .navbar-01 .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: #e9e7e7;
    transform: translateX(-50%);
    transition: 0.3s all;
  }
  .navbar-01 .navbar-nav .nav-link a:hover::after, .navbar-01 .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}
.navbar-01 .navbar-nav .nav-link.social {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin: 0.3rem 0 0.8rem;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.navbar-01 .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  transition: 0.3s all;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .navbar-01 .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.navbar-01 .navbar-nav .nav-link.social a::after {
  display: none;
}
.navbar-01 .navbar-nav .nav-link.social a:hover, .navbar-01 .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.navbar-01 .brand-logo {
  position: relative;
  width: 50px;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .navbar-01 .brand-logo {
    top: 12px;
    width: 120px;
    opacity: 0;
    pointer-events: all;
    top: 30px;
    width: 150px;
  }
}
.navbar-01 .brand-logo img {
  width: 100%;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
}
.navbar-01 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-01.sticky::before {
  background: #000100;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}
@media (min-width: 992px) {
  .navbar-01.sticky::before {
    opacity: 1;
  }
}
.navbar-01.sticky .navbar-nav .nav-link a {
  color: #fff;
}
.navbar-01.sticky .navbar-nav .nav-link.order a {
  background-color: #fdfefd;
  margin: 0;
  padding: 0.2rem 1rem;
  color: #000100;
  border-radius: 6px;
}
.navbar-01.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.navbar-01.sticky .navbar-nav .nav-link.order a:hover, .navbar-01.sticky .navbar-nav .nav-link.order a:focus {
  opacity: 0.65;
}
.navbar-01.sticky .navbar-nav .nav-link.social a:hover, .navbar-01.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.navbar-01.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .navbar-01.sticky .brand-logo {
    top: 12px;
    width: 120px;
  }
}
.navbar-01 .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.navbar-01 .navbar-toggler:hover, .navbar-01 .navbar-toggler:focus, .navbar-01 .navbar-toggler:active {
  box-shadow: none;
}

.header-04 .top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 60vh;
  background: url("../images/background.jpeg") center/cover;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 768px) {
  .header-04 .top {
    height: 66vh;
  }
}
@media (min-width: 1400px) {
  .header-04 .top {
    height: 550px;
  }
}
.header-04 .top::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
}
.header-04 .top img.logo {
  height: 45%;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .header-04 .top img.logo {
    height: 45%;
  }
}
@media (min-width: 768px) {
  .header-04 .top img.logo {
    margin-top: 3.5rem;
    height: 50%;
  }
}
.header-04 .top p {
  font-family: "EB Garamond", serif;
  font-size: 4.5rem;
  font-weight: bold;
  color: #e9e7e7;
}
@media (max-width: 575.98px) {
  .header-04 .top p {
    font-size: 3rem;
  }
}
.header-04 .bottom {
  padding: 1rem 0 6rem;
}
@media (min-width: 576px) {
  .header-04 .bottom {
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.header-04 .bottom p {
  max-width: 80%;
  font-weight: bold;
  margin: 0 auto 1rem;
  text-align: center;
  color: #000100;
  font-size: 1.2rem;
}
@media (min-width: 576px) {
  .header-04 .bottom p {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .header-04 .bottom p {
    font-size: 1.4rem;
  }
}
.header-04 .carousel {
  position: relative;
  padding-bottom: 40px;
}
.header-04 .carousel .stripe {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 30vh;
  background: #000100;
  z-index: 0;
}
.header-04 .carousel .owl-theme .owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
  display: block;
  text-align: center;
  width: 100%;
  height: 30px;
}
.header-04 .carousel .owl-theme .owl-dots .owl-dot span {
  background: #d4d4d4;
}
.header-04 .carousel .owl-theme .owl-dots .owl-dot.active span {
  background: #000100;
}

.about-02 {
  position: relative;
  background: #000100;
  color: #e9e7e7;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-02 {
    text-align: left;
  }
}
.about-02 h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .about-02 h2 {
    font-size: 2.6rem;
  }
}
.about-02 h2 span {
  color: #000100;
}
.about-02 p {
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .about-02 p {
    font-size: 1.1rem;
  }
}
.about-02 p.desc {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .about-02 p.desc {
    font-size: 1.3rem;
  }
}
.about-02 a {
  color: #e9e7e7;
  border-bottom: 2px solid white;
}
.about-02 img.clipped {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .about-02 img.clipped {
    max-width: 90%;
  }
}
@media (min-width: 768px) {
  .about-02 img.clipped {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    max-width: 800px;
    width: 45%;
    object-fit: cover;
  }
}
.about-02 a:hover {
  color: #fdfefd;
  border-bottom: 2px solid white;
}

.foodlist-03 {
  background: none;
  padding: 0;
}
@media (min-width: 576px) {
  .foodlist-03 {
    overflow: hidden;
  }
}
.foodlist-03 #foodlist__heading {
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__heading {
    padding: 3rem 0 2.5rem;
  }
}
.foodlist-03 #foodlist__heading h2 {
  margin: 0;
  color: #000100;
  font-size: 3.3rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__heading h2 {
    font-size: 5rem;
  }
}
.foodlist-03 #foodlist__heading .foodlist__order {
  padding: 0 0.6rem;
  margin: 0;
  color: #000100;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodlist-03 #foodlist__heading .foodlist__order a {
  color: #000100;
  font-weight: 700;
}
.foodlist-03 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  transition: 0.3s all;
}
.foodlist-03 #foodlist__heading .foodlist__order a:hover i {
  transform: translateX(0.5rem);
}
.foodlist-03 .navigation {
  position: sticky;
  top: 3.8rem;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 576px) {
  .foodlist-03 .navigation {
    position: relative;
    top: 0;
    width: 92%;
  }
}
.foodlist-03 .navigation .progress-container {
  width: 100%;
  background: #fff;
}
@media (min-width: 576px) {
  .foodlist-03 .navigation .progress-container {
    background: transparent;
  }
}
.foodlist-03 .navigation .progress-container .progress-bar {
  height: 3px;
  background: black;
  width: 0%;
  min-width: 15px;
  transition: width 0.2s ease-out;
}
.foodlist-03 .navigation #foodlist__categories {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background: rgba(252, 252, 252, 0.96);
  height: auto;
  margin: 0;
  overflow: auto;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  box-shadow: 0 20px 10px -23px rgba(0, 0, 0, 0.6);
  user-select: none;
  cursor: grab;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .foodlist-03 .navigation #foodlist__categories {
    box-shadow: 0 20px 10px -23px rgba(0, 0, 0, 0.4);
    height: 77px;
  }
}
.foodlist-03 .navigation #foodlist__categories::-webkit-scrollbar {
  display: none;
}
@media (min-width: 576px) {
  .foodlist-03 .navigation #foodlist__categories::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    width: 15px;
    cursor: default;
    box-shadow: inset 15px 0 10px -10px rgb(255, 255, 255);
  }
}
@media (min-width: 576px) {
  .foodlist-03 .navigation #foodlist__categories::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    left: unset;
    right: 0;
    width: 15px;
    cursor: default;
    box-shadow: inset -15px 0 10px -10px rgb(255, 255, 255);
  }
}
.foodlist-03 .navigation #foodlist__categories .foodlist__categories__item {
  display: block;
  padding: 1rem;
  cursor: pointer;
  transition: 0.4s all;
  border-bottom: 3px solid transparent;
  scroll-snap-align: center;
  color: #000100;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .foodlist-03 .navigation #foodlist__categories .foodlist__categories__item {
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
}
.foodlist-03 .navigation #foodlist__categories .foodlist__categories__item:hover, .foodlist-03 .navigation #foodlist__categories .foodlist__categories__item:focus {
  background: rgb(244, 244, 244);
}
.foodlist-03 .navigation #foodlist__categories .foodlist__categories__item.selected {
  border-bottom: 3px solid #000100;
}
.foodlist-03 .arrows {
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  .foodlist-03 .arrows {
    position: static;
  }
}
.foodlist-03 .arrows button {
  position: absolute;
  bottom: -5rem;
  transform: translateY(-50%);
  border-radius: 8px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background: rgba(252, 252, 252, 0.96);
  border: 1px solid #000100;
  transition: 0.4s all;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
  color: black;
}
@media (min-width: 576px) {
  .foodlist-03 .arrows button {
    bottom: unset;
    top: 50%;
  }
}
.foodlist-03 .arrows button:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  background: #fff;
}
.foodlist-03 .arrows button.slide-right {
  right: 35%;
}
@media (min-width: 576px) {
  .foodlist-03 .arrows button.slide-right {
    right: -4rem;
  }
}
@media (min-width: 1400px) {
  .foodlist-03 .arrows button.slide-right {
    right: -6rem;
  }
}
.foodlist-03 .arrows button.slide-left {
  left: 35%;
}
@media (min-width: 576px) {
  .foodlist-03 .arrows button.slide-left {
    left: -4rem;
  }
}
@media (min-width: 1400px) {
  .foodlist-03 .arrows button.slide-left {
    left: -6rem;
  }
}
.foodlist-03 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr;
  padding: 6rem 1.12rem 4rem;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__content {
    padding: 2rem 2rem 4rem;
    grid-gap: 1.3rem;
  }
}
@media (min-width: 768px) {
  .foodlist-03 #foodlist__content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .foodlist-03 #foodlist__content {
    padding: 3rem 2rem 5rem;
    grid-gap: 2rem 3rem;
  }
}
@media (min-width: 1400px) {
  .foodlist-03 #foodlist__content {
    grid-gap: 2rem 4rem;
  }
}
.foodlist-03 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  color: #000100;
  font-size: 1.9rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodlist-03 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodlist-03 #foodlist__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 80px;
  background: #000100;
}
.foodlist-03 #foodlist__content .item-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  animation: itemFadeIn 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}
.foodlist-03 #foodlist__content .item-list__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 75%;
  margin-bottom: 0.2rem;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodlist-03 #foodlist__content .item-list__content__name {
  font-weight: 600;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 0.3rem;
  font-size: 1.16rem;
}
.foodlist-03 #foodlist__content .item-list__content__ingredients {
  margin-bottom: 0.5rem;
  color: #808080;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .foodlist-03 #foodlist__content .item-list__content__ingredients {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
}
.foodlist-03 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: black;
  font-size: 1.07rem;
  font-weight: 700;
}
.foodlist-03 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodlist-03 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodlist-03 #foodlist__content .item-list__image a[href=null], .foodlist-03 #foodlist__content .item-list__image a[href=undefined] {
  width: 0;
  height: 0;
}
.foodlist-03 #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.foodlist-03 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  font-size: 1.1rem;
}
.foodlist-03 #loading:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes itemFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contact-01 {
  background: url("../images/background2.jpeg") center/cover;
  overflow: hidden;
}
.contact-01 img.pizza {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(-1);
  width: 400px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.6));
}
@media (min-width: 576px) {
  .contact-01 img.pizza {
    width: 600px;
  }
}
.contact-01 .card {
  background: #fff;
  padding: 25px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  height: 100%;
  box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-01 .card h2 {
  margin-bottom: 1.5rem;
  color: #000100;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (min-width: 768px) {
  .contact-01 .card h2 {
    font-size: 2.1rem;
  }
}
.contact-01 .card.info {
  position: relative;
  padding: 25px;
  color: #000100;
}
.contact-01 .card.info p,
.contact-01 .card.info a {
  display: flex;
  flex-flow: row, nowrap;
  align-items: center;
  margin-bottom: 1rem;
  color: #000100;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .contact-01 .card.info p,
.contact-01 .card.info a {
    font-size: 1.2rem;
    width: fit-content;
  }
}
.contact-01 .card.info p i,
.contact-01 .card.info a i {
  margin-right: 10px;
}
.contact-01 .card.info p i::before,
.contact-01 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: #000100;
  text-align: center;
}
.contact-01 .card.info p i.fa-facebook-square::before,
.contact-01 .card.info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}
.contact-01 .card.info a.phone {
  font-weight: 700;
}
.contact-01 .card.info a:hover {
  color: #000100;
}
.contact-01 .card.info a span {
  line-height: 1.3;
  border-bottom: 2px dashed #000100;
}
.contact-01 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #000100;
  font-size: 1.1rem;
  line-height: 2rem;
}
.contact-01 .card.business-hours li span {
  float: right;
}
.contact-01 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-01 .card.business-hours li.today {
  background: rgba(0, 0, 0, 0.1);
  font-weight: 700;
}
.contact-01 .card.business-hours p.info {
  display: flex;
  flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-01 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-01 .card.business-hours p.info i {
  margin: 0.1rem 0.5rem 0 0;
  opacity: 0.8;
  font-size: 1rem;
}
@media (min-width: 576px) {
  .contact-01 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-01 .map {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 15px 20px -5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.15);
}
.contact-01 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-01 {
  background: #000100;
  color: #e9e7e7;
  text-align: center;
  padding: 20px 0;
}
.footer-01 p {
  margin-bottom: 0;
}
.footer-01 a {
  display: inline-block;
  line-height: 1.1;
  border-bottom: 2px dashed #000100;
  transition: 0.3s all;
  color: #e9e7e7;
  font-weight: 600;
}
.footer-01 a:hover {
  color: #000100;
}
.footer-01 a:hover {
  color: #e9e7e7;
}

.arrow-to-top.arrow-01 {
  cursor: pointer;
  pointer-events: none;
  position: fixed;
  text-align: center;
  z-index: 100;
  transition: 0.3s all;
  right: 40px;
  bottom: 10px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 {
    right: 0;
  }
}
.arrow-to-top.arrow-01.show {
  opacity: 1;
  pointer-events: all;
  bottom: 40px;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01.show {
    bottom: 20px;
  }
}
.arrow-to-top.arrow-01 a {
  text-decoration: none;
  padding: 5px 12px;
  color: #fdfefd;
  background: #000100;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: 0.3s all;
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
}
.arrow-to-top.arrow-01 a i {
  transition: 0.2s all;
}
.arrow-to-top.arrow-01 a:hover {
  background: black;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.arrow-to-top.arrow-01 a:hover i {
  transform: translateY(-4px);
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 a:hover {
    background: #000100;
    box-shadow: none;
  }
  .arrow-to-top.arrow-01 a:hover i {
    transform: none;
  }
}

.arrow-to-top.arrow-02,
.home {
  position: fixed;
  right: 3px;
  cursor: pointer;
  text-align: center;
  z-index: 100;
  transition: 0.3s all;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02,
.home {
    right: 40px;
  }
}
.arrow-to-top.arrow-02 a,
.home a {
  display: inline-block;
  width: 40px;
  text-decoration: none;
  color: #fff;
  background: #000100;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: 0.2s all;
  border-radius: 5px;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02 a,
.home a {
    width: 50px;
  }
}
.arrow-to-top.arrow-02 a:hover,
.home a:hover {
  background: black;
  transform: translateY(-3px);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
}

.arrow-to-top.arrow-02 {
  bottom: 0px;
  opacity: 0;
  pointer-events: none;
}
.arrow-to-top.arrow-02.show {
  bottom: 43px;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02.show {
    bottom: 68px;
  }
}
.arrow-to-top.arrow-02 a {
  padding: 5px 0;
  font-size: 15px;
}
@media (min-width: 576px) {
  .arrow-to-top.arrow-02 a {
    padding: 6px 0;
    font-size: 18px;
  }
}

.home {
  bottom: 4px;
}
@media (min-width: 576px) {
  .home {
    bottom: 20px;
  }
}
.home a {
  font-size: 15px;
  padding: 4px 0;
}
@media (min-width: 576px) {
  .home a {
    padding: 6px 0;
    font-size: 18px;
  }
}

.mousey {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 2px solid white;
  border-radius: 20px;
  opacity: 0;
  animation: mousey 4s ease 3s infinite;
  animation-fill-mode: backwards;
}
@media (min-width: 768px) {
  .mousey {
    display: block;
  }
}
.mousey .scroller {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background-color: white;
  animation: mousey-scroller 4s ease 3s infinite;
  animation-fill-mode: backwards;
}

@keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}
#preloader {
  background: radial-gradient(circle, #414141 0%, #000 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  color: #fff;
}
#preloader img.logo {
  width: 80%;
  max-width: 110px;
  margin-bottom: 20px;
}
#preloader p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#preloader .jumper {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#preloader .jumper > div {
  background: #fff;
  border-radius: 100%;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  animation: jumper 3s 0s linear infinite;
  animation-fill-mode: both;
}
#preloader .jumper > div:nth-child(2) {
  animation-delay: 0.33333s;
}
#preloader .jumper > div:nth-child(3) {
  animation-delay: 0.66666s;
}

@keyframes jumper {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.popup-overlay {
  height: 100%;
  width: 100%;
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  backdrop-filter: blur(2px);
}

.popup__body {
  height: auto;
  max-height: 80vh;
  width: 100%;
  max-width: 550px;
  margin: 100px auto;
  padding: 45px 10px;
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 5px;
  box-shadow: 0 2px 5px #000;
  z-index: 103;
}
@media (min-width: 768px) {
  .popup__body {
    padding: 35px 35px;
  }
}
.popup__body img {
  display: block;
  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
  border-radius: 10px;
}
.popup__body p {
  color: #000100;
  font-size: 1.1rem;
  margin: 15px auto 0;
  max-width: 500px;
  font-weight: 600;
  text-align: center;
}
.popup__body a {
  text-decoration: none;
}
.popup__body .close-btn {
  color: #000;
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

#popover {
  position: fixed;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 150;
  max-width: 35vw;
  padding: 0.75rem 1rem;
  background-color: rgba(241, 243, 246, 0.8);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: var(--transition-medium);
  transition: var(--transition-medium);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  #popover {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  #popover {
    right: 0.5rem;
  }
}
#popover.slide-in {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#popover .popover-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#popover .popover-header .popover-heading {
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-right: 2rem;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}
@media (max-width: 575.98px) {
  #popover .popover-header .popover-heading {
    font-size: 1rem;
  }
}
#popover .popover-close-button {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 2.75rem;
  font-size: 1.1rem;
  cursor: pointer;
}
#popover .popover-content {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  #popover .popover-content {
    font-size: 0.875rem;
  }
}

#error-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: url("../images/background.jpeg") center/cover;
  color: #fff;
}
#error-page::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#error-page h1 {
  letter-spacing: 0.1rem;
  line-height: 1;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  #error-page h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  #error-page h1 {
    font-size: 6rem;
  }
}
#error-page h2 {
  margin-bottom: 2rem;
  color: #fff;
  font-family: "Inter", sans-serif;
}
#error-page p {
  font-size: 2rem;
  font-weight: 700;
}
#error-page .primary-btn i, #error-page .contact-01 .map a.way-btn i, .contact-01 .map #error-page a.way-btn i {
  position: relative;
  left: -5px;
  transition: 0.2s all;
}
#error-page .primary-btn:hover, #error-page .contact-01 .map a.way-btn:hover, .contact-01 .map #error-page a.way-btn:hover {
  background-color: black;
}
#error-page .primary-btn:hover i, #error-page .contact-01 .map a.way-btn:hover i, .contact-01 .map #error-page a.way-btn:hover i {
  left: -10px;
}

.crossroad {
  min-height: 100vh;
  background: url("../images/bg04.jpg");
  background-color: rgba(0, 0, 0, 0.7);
  background-blend-mode: multiply;
  overflow-x: hidden;
}
.crossroad header {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 6vh;
  color: #fff;
}
@media (min-width: 768px) {
  .crossroad header {
    padding-top: 10vh;
  }
}
.crossroad header img.logo {
  width: 80%;
  max-width: 700px;
  margin-bottom: 1rem;
}
.crossroad header p.desc {
  margin-bottom: 2rem;
  font-size: 1.3rem;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .crossroad header p.desc {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.crossroad .brands {
  padding: 0;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .crossroad .brands {
    margin-bottom: 50px;
  }
}
.crossroad .brands .brand {
  position: relative;
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 25px;
}
@media (min-width: 576px) {
  .crossroad .brands .brand {
    max-width: unset;
  }
}
.crossroad .brands .brand .brand-link {
  display: block;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s all;
  border-radius: 5px;
  overflow: hidden;
}
.crossroad .brands .brand .brand-link:hover {
  transform: scale(1.03);
  text-decoration: none;
}
.crossroad .brands .brand .brand-link img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.crossroad .brands .brand .brand-link .description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  z-index: 10;
}
.crossroad .brands .brand .brand-link .description h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.crossroad .brands .brand .brand-link .description h2 span {
  font-weight: 400;
}
.crossroad .brands .brand .brand-link .description p {
  font-size: 1.1rem;
  margin-bottom: 0px;
}
.crossroad .brands .brand .order {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
@media (min-width: 576px) {
  .crossroad .brands .brand .order {
    right: -15px;
  }
}
@media (min-width: 992px) {
  .crossroad .brands .brand .order {
    right: -15px;
  }
}