@charset "UTF-8";
:root {
  --primary-HIGHLIGHT: hsl(10, 84%, 56%);
  --primary-h: 10;
  --primary-s: 84%;
  --primary-l: 56%;
  --lighten-percentage: 16%;
  --darken-percentage: 8%;
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-dark: hsl(
    var(--primary-h),
    var(--primary-s),
    calc(var(--primary-l) - var(--darken-percentage))
  );
  --primary-light: hsl(
    var(--primary-h),
    var(--primary-s),
    calc(var(--primary-l) + var(--lighten-percentage))
  );
  --secondary-HIGHLIGHT: hsl(0, 0%, 83%);
  --secondary-h: 0;
  --secondary-s: 0%;
  --secondary-l: 83%;
  --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));
  --secondary-dark: hsl(
    var(--secondary-h),
    var(--secondary-s),
    calc(var(--secondary-l) - var(--darken-percentage))
  );
  --secondary-light: hsl(
    var(--secondary-h),
    var(--secondary-s),
    calc(var(--secondary-l) + var(--lighten-percentage))
  );
  --linear-gradient: linear-gradient(
    180deg,
    var(--primary) 5%,
    var(--primary-light) 20%,
    var(--primary-light) 60%,
    var(--primary) 90%
  );
  --dark: #131313;
  --light: #f1f3f6;
  --white: #ffffff;
  --black: #000000;
  --gray: #808080;
  --transition-fast: 0.2s all;
  --transition-medium: 0.3s all;
  --transition-slow: 0.4s all;
  --font-primary: "Inter", sans-serif;
  --font-heading: "Mulish", sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-bold: 800;
  --border-radius: 8px;
}

@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: var(--primary);
}

*:focus {
  outline: 1px var(--primary);
}

*:focus-visible {
  outline: 1px var(--primary) !important;
}

html {
  font-size: 16px;
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--dark);
}

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

.hxxl,
.hxl,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
  margin-bottom: 0.35em;
}

.hxxl {
  font-size: clamp(3.568rem, 12px + 6.125vw, 8rem);
}

.hxl {
  font-size: clamp(3.568rem, 12px + 4.85vw, 6.943rem);
}

h1,
.h1 {
  font-size: clamp(3.188rem, 12px + 4.125vw, 4.313rem);
  font-weight: var(--weight-bold);
}

h2,
.h2 {
  font-size: clamp(2.625rem, 12px + 3vw, 3.375rem);
  font-weight: var(--weight-bold);
}

h3,
.h3 {
  font-size: clamp(1.808rem, 12px + 2.25vw, 2.813rem);
  font-weight: var(--weight-bold);
}

h4,
.h4 {
  font-size: clamp(1.875rem, 12px + 1.5vw, 2.25rem);
}

strong {
  font-weight: var(--weight-bold);
}

a {
  transition: var(--transition-medium);
  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: var(--primary);
}

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

.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: var(--border-radius);
}
@media (max-width: 575.98px) {
  .btn {
    padding: 0.7rem 1.4rem;
  }
}
.btn:focus {
  outline: 1px var(--primary);
}

.primary-btn, .contact-05 .map a.way-btn, .contact-04 .map a.way-btn, .contact-03 .map a.way-btn, .contact-02 .map a.way-btn, .contact-01 .map a.way-btn {
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  animation-name: order-btn-move;
  animation-duration: 6s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}
.primary-btn:hover, .contact-05 .map a.way-btn:hover, .contact-04 .map a.way-btn:hover, .contact-03 .map a.way-btn:hover, .contact-02 .map a.way-btn:hover, .contact-01 .map a.way-btn:hover, .primary-btn:focus, .contact-05 .map a.way-btn:focus, .contact-04 .map a.way-btn:focus, .contact-03 .map a.way-btn:focus, .contact-02 .map a.way-btn:focus, .contact-01 .map a.way-btn:focus {
  color: var(--black);
  background: var(--primary-dark);
}

.secondary-btn {
  color: var(--black);
  background: var(--light);
  font-weight: bold;
  font-size: 1.1rem;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: var(--black);
}

.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;
  white-space: nowrap;
}
.online-status .online-status-content i {
  margin-right: 0.5rem;
}

.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;
  }
}
#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;
  }
}
.header-01 {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header-01 {
    height: 80px;
  }
}
.header-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--dark);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-01::before {
    background: var(--dark);
    opacity: 0;
  }
}
.header-01 .navbar-nav {
  align-items: center;
}
.header-01 .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.header-01 .navbar-nav .nav-link.order {
  min-width: unset;
}
.header-01 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.2rem;
  }
  .header-01 .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: var(--primary);
    transform: translateX(-50%);
    transition: var(--transition-medium);
  }
  .header-01 .navbar-nav .nav-link a:hover::after, .header-01 .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}
.header-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) {
  .header-01 .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.header-01 .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  transition: var(--transition-medium);
}
@media (min-width: 992px) {
  .header-01 .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .header-01 .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.header-01 .navbar-nav .nav-link.social a::after {
  display: none;
}
.header-01 .navbar-nav .nav-link.social a:hover, .header-01 .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.header-01 .brand-logo {
  position: relative;
  width: 75px;
  transition: var(--transition-medium);
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .header-01 .brand-logo {
    top: 0;
    width: 120px;
    opacity: 1;
    pointer-events: all;
    top: 0;
    width: 150px;
  }
}
.header-01 .brand-logo img {
  width: 100%;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
}
.header-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");
}
@media (min-width: 992px) {
  .header-01.sticky::before {
    opacity: 1;
  }
}
.header-01.sticky .navbar-nav .nav-link a {
  color: #fff;
}
.header-01.sticky .navbar-nav .nav-link.order a {
  background-color: var(--primary);
  margin: 0;
  padding: 0.2rem 1rem;
  color: #fff;
  border-radius: 5px;
}
.header-01.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.header-01.sticky .navbar-nav .nav-link.order a:hover, .header-01.sticky .navbar-nav .nav-link.order a:focus {
  background-color: var(--primary-dark);
}
.header-01.sticky .navbar-nav .nav-link.social a:hover, .header-01.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.header-01.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .header-01.sticky .brand-logo {
    top: 0;
    width: 120px;
  }
}
.header-01 .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.header-01 .navbar-toggler:hover, .header-01 .navbar-toggler:focus, .header-01 .navbar-toggler:active {
  box-shadow: none;
}

.header-02 {
  position: fixed;
  width: 100%;
  padding: 0.4rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .header-02 {
    padding: 0;
    height: 5rem;
  }
}
.header-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: var(--transition-slow);
  background: var(--dark);
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}
@media (min-width: 992px) {
  .header-02::before {
    background: var(--dark);
    opacity: 0;
  }
}
.header-02 .navbar-nav {
  align-items: center;
}
.header-02 .navbar-nav .nav-link {
  position: relative;
  margin-bottom: 1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .header-02 .navbar-nav .nav-link {
    min-width: unset;
    margin-bottom: unset;
    padding: 0 2.1rem;
  }
  .header-02 .navbar-nav .nav-link:not(.brand-logo):not(:last-child)::after {
    content: "●";
    position: absolute;
    right: -0.3rem;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
    color: var(--primary);
    font-size: 1.2rem;
  }
}
.header-02 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  color: var(--light);
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9);
}
.header-02 .navbar-nav .nav-link a:hover, .header-02 .navbar-nav .nav-link a:focus {
  opacity: 0.8;
}
@media (min-width: 992px) {
  .header-02 .navbar-nav .nav-link a {
    color: var(--light);
    font-size: 1.3rem;
  }
}
.header-02 .brand-logo {
  width: 80px;
  transition: var(--transition-fast);
}
@media (min-width: 992px) {
  .header-02 .brand-logo {
    position: relative;
    top: 15px;
    width: 0;
  }
}
.header-02 .brand-logo img {
  width: 100%;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
}
.header-02 .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");
}
@media (min-width: 992px) {
  .header-02.sticky::before {
    opacity: 1;
  }
}
.header-02.sticky .navbar-nav .nav-link a {
  color: var(--light);
}
.header-02.sticky .navbar-nav .nav-link:nth-of-type(2)::after {
  opacity: 0;
}
@media (min-width: 992px) {
  .header-02.sticky .brand-logo {
    width: 125px;
  }
}
.header-02 .navbar-toggler {
  border: none;
  margin-right: 1.5rem;
  z-index: 1;
}
.header-02 .navbar-toggler:hover, .header-02 .navbar-toggler:focus, .header-02 .navbar-toggler:active {
  box-shadow: none;
}

.hero-01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 3vh;
  min-height: 96vh;
  background: url("../images/hero-background.jpg") center/cover;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-01 {
    padding-top: 0vh;
    min-height: 100vh;
  }
}
.hero-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.hero-01 h1 {
  color: var(--light);
}
.hero-01 .logo {
  width: 80%;
  max-width: 450px;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 5px rgb(0, 0, 0));
}
@media (min-width: 768px) {
  .hero-01 .logo {
    margin-bottom: 2rem;
  }
}
.hero-01 .description {
  width: 80%;
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 768px) {
  .hero-01 .description {
    margin-bottom: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .hero-01 .description {
    font-size: 1.3rem;
  }
}

.hero-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5vh;
  min-height: 96vh;
  background: url("../images/hero-background.jpg") center/cover;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-02 {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .hero-02 {
    padding-top: 0vh;
    min-height: 100vh;
  }
}
.hero-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
@media (min-width: 768px) {
  .hero-02::before {
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.hero-02 .heading {
  color: #fff;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}
.hero-02 .town {
  margin-bottom: 1.3rem;
  color: #fff;
  font-weight: 400;
  font-family: var(--font-heading);
  letter-spacing: 0.07rem;
  text-shadow: 0.05rem 0.05rem 0.4rem rgba(0, 0, 0, 0.8);
}
.hero-02 .description {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-02 .description {
    max-width: unset;
    margin-bottom: 2.2rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .hero-02 .description {
    font-size: 1.6rem;
  }
}

.hero-03 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 96vh;
  background: url("../images/hero-background.jpg") center/cover;
  z-index: 0;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-03 {
    padding-top: 0vh;
    min-height: 100vh;
  }
}
.hero-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  box-shadow: inset 0 -5px 20px -5px rgb(0, 0, 0);
}
.hero-03 img {
  position: absolute;
  z-index: -1;
}
.hero-03 img.pizza-top {
  display: none;
  width: 500px;
  max-width: 800px;
  top: -70px;
  left: 0;
  transform: translateX(-30%) rotate(0) scaleY(-1);
  filter: brightness(0.98) drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
@media (min-width: 576px) {
  .hero-03 img.pizza-top {
    display: block;
  }
}
@media (min-width: 992px) {
  .hero-03 img.pizza-top {
    top: -150px;
    width: 48vw;
  }
}
.hero-03 img.pizza-bottom {
  width: 400px;
  max-width: 900px;
  bottom: 0;
  right: -50px;
  transform: translate(20%, 50%);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
@media (min-width: 576px) {
  .hero-03 img.pizza-bottom {
    right: 0;
    width: 500px;
  }
}
@media (min-width: 992px) {
  .hero-03 img.pizza-bottom {
    width: 45vw;
  }
}
.hero-03 img.leaves {
  width: 800px;
  bottom: -50px;
  left: -180px;
  transform: rotate(335deg);
}
@media (min-width: 576px) {
  .hero-03 img.leaves {
    width: 1200px;
    left: 20%;
    transform: rotate(345deg);
  }
}
@media (min-width: 992px) {
  .hero-03 img.leaves {
    left: 35%;
  }
}
.hero-03 .heading {
  margin-bottom: 0.5rem;
  color: #fff;
  font-family: var(--font-heading);
  line-height: 1;
  text-shadow: 0.05rem 0.05rem 0.5rem rgb(0, 0, 0);
  text-transform: uppercase;
}
.hero-03 .town {
  display: block;
  position: relative;
  margin-bottom: 1.3rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  text-shadow: 0.05rem 0.05rem 0.4rem rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}
.hero-03 .town::before, .hero-03 .town::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 0.2rem;
  background: var(--primary);
  box-shadow: 0 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-03 .town::before, .hero-03 .town::after {
    width: 5rem;
    height: 0.3rem;
  }
}
.hero-03 .town::before {
  left: -4rem;
}
@media (min-width: 576px) {
  .hero-03 .town::before {
    left: -6rem;
  }
}
.hero-03 .town::after {
  right: -4rem;
}
@media (min-width: 576px) {
  .hero-03 .town::after {
    right: -6rem;
  }
}
.hero-03 .description {
  width: 90%;
  max-width: 800px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-03 .description {
    width: auto;
    margin-bottom: 2.2rem;
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .hero-03 .description {
    font-size: 1.5rem;
  }
}

.hero-04 .top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 60vh;
  background: url("../images/hero-background.jpg") center/cover;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}
@media (min-width: 768px) {
  .hero-04 .top {
    height: 66vh;
  }
}
@media (min-width: 1400px) {
  .hero-04 .top {
    height: 550px;
  }
}
.hero-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);
}
.hero-04 .top .logo {
  height: 45%;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .hero-04 .top .logo {
    height: 45%;
  }
}
@media (min-width: 768px) {
  .hero-04 .top .logo {
    margin-top: 3.5rem;
    height: 50%;
  }
}
.hero-04 .top p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .hero-04 .top p {
    font-size: 1.7rem;
  }
}
.hero-04 .bottom {
  padding: 1rem 0 6rem;
}
@media (min-width: 576px) {
  .hero-04 .bottom {
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero-04 .bottom p {
  max-width: 80%;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--dark);
  font-size: 1rem;
}
@media (min-width: 576px) {
  .hero-04 .bottom p {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .hero-04 .bottom p {
    font-size: 1.4rem;
  }
}
.hero-04 .carousel {
  position: relative;
  padding-bottom: 40px;
}
.hero-04 .carousel .stripe {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 30vh;
  background: var(--primary);
  z-index: 0;
}
.hero-04 .carousel .owl-theme .owl-dots {
  position: absolute;
  top: -50px;
  right: 0;
  display: block;
  text-align: center;
  width: 100%;
  height: 30px;
}
.hero-04 .carousel .owl-theme .owl-dots .owl-dot span {
  background: #d4d4d4;
}
.hero-04 .carousel .owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary);
}

.hero-05 {
  display: flex;
  align-items: center;
  justify-content: start;
  overflow: hidden;
}
.hero-05 .background-wrapper {
  position: relative;
  background: url("../images/hero-background.jpg") center/cover;
  margin: 7rem 4rem 2rem;
  border-radius: 0.5rem;
  width: 100%;
  z-index: 0;
}
.hero-05 .background-wrapper::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .hero-05 .background-wrapper::after {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .hero-05 .background-wrapper::after {
    background-color: rgba(255, 255, 255, 0.85);
  }
}
@media (max-width: 991.98px) {
  .hero-05 .background-wrapper {
    margin: 7rem 2rem 2rem;
  }
}
@media (max-width: 767.98px) {
  .hero-05 .background-wrapper {
    margin: 5rem 0;
  }
}
@media (max-width: 575.98px) {
  .hero-05 .background-wrapper {
    text-align: center;
    margin: 5rem 0rem 2rem;
  }
}
.hero-05 .header-content {
  margin: 7rem 0rem;
  width: 70ch;
  max-width: 100%;
  padding: 2rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 0.5rem;
}
@media (max-width: 575.98px) {
  .hero-05 .header-content {
    background: none;
    padding: 0;
    margin: 5rem 0;
  }
}
.hero-05 .header-content .heading {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: var(--backdropBlur);
  font-family: var(--headingFont);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 20px -15px rgba(13, 14, 19, 0.4);
  background: rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  white-space: pre-wrap;
  border-radius: 0.5rem;
}
@media (min-width: 576px) {
  .hero-05 .header-content .heading {
    white-space: nowrap;
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
.hero-05 .header-content .heading span {
  font-weight: 300;
  color: var(--primary);
}
.hero-05 .header-content .town {
  font-size: 1.4rem;
  background: var(--dark);
  color: var(--primary);
  font-weight: bolder;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.2rem 1rem;
  margin-bottom: 0;
  letter-spacing: 0.1rem;
  border-radius: 0.5rem 0.5rem 0 0;
  display: block;
  width: max-content;
}
@media (max-width: 575.98px) {
  .hero-05 .header-content .town {
    font-size: 1rem;
    margin: 0 auto;
  }
}
.hero-05 .header-content .description {
  width: 50ch;
  max-width: 100%;
  color: var(--dark);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.2rem;
  opacity: 0.85;
}
@media (max-width: 575.98px) {
  .hero-05 .header-content .description {
    font-size: 1rem;
    -webkit-line-clamp: 3;
  }
}

.hero-06 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  background: url("../images/hero-background.jpg") center/120%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .hero-06 {
    background-size: cover;
  }
}
@media (max-width: 575.98px) {
  .hero-06 {
    text-align: center;
  }
}
.hero-06::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(40px);
  z-index: -1;
}
.hero-06::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #1f1515 0%, rgba(255, 255, 255, 0) 100%);
  height: 30vh;
  width: 100%;
  z-index: 0;
}
.hero-06 .heading {
  font-size: 4rem;
  font-family: var(--font-primary);
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .hero-06 .heading {
    line-height: 1.2;
  }
}
@media (max-width: 575.98px) {
  .hero-06 .heading {
    font-size: 2.7rem;
  }
}
.hero-06 .heading span {
  font-weight: 300;
}
.hero-06 .description {
  width: 55ch;
  color: #fff;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.2rem;
  font-weight: 300;
  opacity: 0.85;
}
@media (max-width: 767.98px) {
  .hero-06 .description {
    width: auto;
    font-size: 1rem;
  }
}
.hero-06 .caption {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: inline-flex;
  --categoryLineColor: rgba(255, 255, 255, 0.7);
}
.hero-06 .caption::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .hero-06 .caption::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .caption {
    margin-bottom: 1rem;
  }
}
.hero-06 .header-images > img {
  user-select: none;
  pointer-events: none;
}
.hero-06 .header-images .pizza {
  width: 40%;
  position: absolute;
  right: -9%;
  bottom: -9%;
  filter: drop-shadow(-5px 0 20px rgba(0, 0, 0, 0.6)) brightness(87%);
  z-index: 1;
  opacity: 0;
  animation: rotateRight 1.5s forwards;
  transform: translateX(0);
  transform-origin: right;
  transition: 0.4s all;
}
.hero-06 .header-images .pizza:hover {
  transform: rotate(10deg) !important;
}
@media (max-width: 1199.98px) {
  .hero-06 .header-images .pizza {
    width: 54%;
    right: -24%;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .header-images .pizza {
    display: none;
  }
}
.hero-06 .header-images .leaf {
  width: 15%;
  position: absolute;
  bottom: 25vw;
  right: -2%;
  transform: rotate(25deg);
  z-index: 1;
  filter: drop-shadow(0 0px 4px rgba(0, 0, 0, 0.3));
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
@media (max-width: 1199.98px) {
  .hero-06 .header-images .leaf {
    bottom: 36vw;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .header-images .leaf {
    display: none;
  }
}
.hero-06 .header-images .leaf2 {
  width: 12%;
  position: absolute;
  bottom: 3vw;
  right: 22%;
  transform: rotate(-176deg);
  opacity: 0;
  animation: fadeIn 1s 1.1s forwards;
}
@media (max-width: 767.98px) {
  .hero-06 .header-images .leaf2 {
    display: none;
  }
}
.hero-06 .header-images .leaf3 {
  width: 12%;
  position: absolute;
  top: -5%;
  left: 0;
  z-index: 2;
  transform: rotate(111deg);
  opacity: 0;
  animation: fadeIn 1s 1.9s forwards;
}
.hero-06 .header-images .leaves {
  width: 100%;
  position: absolute;
  bottom: -4%;
  right: -49%;
  z-index: 0;
  opacity: 0;
  animation: fadeIn 2s 1.3s forwards;
}
.hero-06 .header-images .leaves.blur {
  filter: blur(5px);
  transform: scale(-1.5);
  bottom: -6%;
  right: -80%;
  opacity: -0.7;
  animation-delay: 1.7s;
}
.hero-06 .header-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  justify-items: center;
  text-align: left;
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer {
    grid-template-columns: 1fr;
    padding: 1rem;
    grid-gap: 0.5rem;
  }
}
.hero-06 .header-footer .block {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  justify-content: center;
  position: relative;
}
.hero-06 .header-footer .block .icon {
  margin-right: 1rem;
  display: flex;
  border-radius: 50%;
}
.hero-06 .header-footer .block .icon.hours {
  width: 2.5rem;
}
.hero-06 .header-footer .block .icon.delivery {
  width: 3rem;
}
.hero-06 .header-footer .block .icon.telephone {
  width: 2.5rem;
}
@media (max-width: 991.98px) {
  .hero-06 .header-footer .block .icon {
    width: 2rem;
  }
}
@media (max-width: 767.98px) {
  .hero-06 .header-footer .block .icon {
    display: none;
  }
}
.hero-06 .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  filter: invert(100);
}
.hero-06 .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-06 .header-footer .block .content {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .block .content {
    opacity: 0.8;
    text-align: center;
  }
}
.hero-06 .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 575.98px) {
  .hero-06 .header-footer .block .online-status {
    justify-content: center;
  }
}
.hero-06 .header-footer .block .online-status .online-status-content i {
  display: none;
}

@keyframes rotateRight {
  from {
    transform: rotate(-360deg) translateX(1200%);
    opacity: 0;
  }
  to {
    transform: rotate(0deg) translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-07 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}
.hero-07::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}
.hero-07::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #1f1515 0%, rgba(255, 255, 255, 0) 100%);
  height: 30vh;
  width: 100%;
  z-index: 0;
}
.hero-07 .heading {
  font-size: 5.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  font-family: var(--headingFont);
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .hero-07 .heading {
    font-size: 3.8rem;
    line-height: 1.2;
  }
}
@media (max-width: 575.98px) {
  .hero-07 .heading {
    font-size: 2.7rem;
  }
}
.hero-07 .caption {
  font-family: var(--primaryFont);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: inline-flex;
  --categoryLineColor: rgba(255, 255, 255, 0.7);
}
.hero-07 .caption::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  transform: translateY(-50%);
}
.hero-07 .caption::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .hero-07 .caption {
    margin-bottom: 1rem;
  }
}
.hero-07 .header-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  justify-items: center;
  text-align: left;
  z-index: 5;
  backdrop-filter: blur(5px);
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer {
    grid-template-columns: 1fr;
    padding: 1rem;
    grid-gap: 0.5rem;
  }
}
.hero-07 .header-footer .block {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  justify-content: center;
  position: relative;
}
.hero-07 .header-footer .block .icon {
  margin-right: 1rem;
  display: flex;
  border-radius: 50%;
}
.hero-07 .header-footer .block .icon.hours {
  width: 2.5rem;
}
.hero-07 .header-footer .block .icon.delivery {
  width: 3rem;
}
.hero-07 .header-footer .block .icon.telephone {
  width: 2.5rem;
}
@media (max-width: 991.98px) {
  .hero-07 .header-footer .block .icon {
    width: 2rem;
  }
}
@media (max-width: 767.98px) {
  .hero-07 .header-footer .block .icon {
    display: none;
  }
}
.hero-07 .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  filter: invert(100);
}
.hero-07 .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-07 .header-footer .block .content {
    font-size: 0.9rem;
  }
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .block .content {
    opacity: 0.8;
    text-align: center;
  }
}
.hero-07 .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}
@media (max-width: 575.98px) {
  .hero-07 .header-footer .block .online-status {
    justify-content: center;
  }
}
.hero-07 .header-footer .block .online-status .online-status-content i {
  display: none;
}
.hero-07 .slide {
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
  transition: opacity 1.5s ease-in-out;
  z-index: -1;
}
.hero-07 .slide.show {
  opacity: 1;
}

.hero-08 {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: start;
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .hero-08 {
    text-align: center;
    padding: 6rem 0;
  }
}
.hero-08::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 28, 36, 0.7);
  z-index: -1;
}
.hero-08::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, var(--dark) 0%, rgba(255, 255, 255, 0) 100%);
  height: 50vh;
  width: 100%;
  z-index: 0;
}
.hero-08 .pic-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-08 figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideShow 24s linear infinite 0s;
}
.hero-08 .pic-1 {
  opacity: 1;
  background: url("../images/slideshow/1.jpg") no-repeat center center;
  background-size: cover;
}
.hero-08 .pic-2 {
  animation-delay: 6s;
  background: url("../images/slideshow/2.jpg") no-repeat center center;
  background-size: cover;
}
.hero-08 .pic-3 {
  animation-delay: 12s;
  background: url("../images/slideshow/3.jpg") no-repeat center center;
  background-size: cover;
}
.hero-08 .pic-4 {
  animation-delay: 18s;
  background: url("../images/slideshow/4.jpg") no-repeat center center;
  background-size: cover;
}
.hero-08 h1 {
  display: inline-block;
  display: none;
  padding: 0 2rem;
  font-size: 6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: var(--backdropBlur);
  font-family: var(--headingFont);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 20px -15px rgb(13, 14, 19);
}
@media (max-width: 767.98px) {
  .hero-08 h1 {
    line-height: 1.2;
  }
}
@media (max-width: 575.98px) {
  .hero-08 h1 {
    font-size: 4rem;
  }
}
.hero-08 h1 span {
  font-weight: 300;
  color: var(--primary);
}
.hero-08 .header-logo {
  margin: 0 auto 3rem;
  max-height: 35vh;
}
@media (max-width: 575.98px) {
  .hero-08 .header-logo {
    margin: 0 auto 2rem;
    padding: 0 2rem;
  }
}
.hero-08 .description {
  color: #fff;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0.85;
  width: 65ch;
  font-size: 1.4rem;
  text-align: center;
  margin: 0 auto 3rem;
}
@media (max-width: 991.98px) {
  .hero-08 .description {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .description {
    font-size: 1rem;
    margin: 0 auto 1rem;
  }
}
@media (max-width: 767.98px) {
  .hero-08 .caption {
    margin-bottom: 1rem;
  }
}
.hero-08 .button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .hero-08 .button-group {
    flex-direction: column;
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .button-group a {
    width: 100%;
  }
}
.hero-08 .button-group a:nth-child(1) {
  margin-right: 1rem;
}
@media (max-width: 575.98px) {
  .hero-08 .button-group a:nth-child(1) {
    margin-right: unset;
    margin-bottom: 1rem;
  }
}
.hero-08 .header-footer {
  position: absolute;
  bottom: 0;
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  z-index: 5;
  background: linear-gradient(transparent 0%, rgba(8, 8, 11, 0.75) 90%);
}
@media (max-width: 575.98px) {
  .hero-08 .header-footer {
    display: none;
    flex-direction: column;
    padding: 1rem;
  }
}
.hero-08 .header-footer .block {
  flex: 1 0 33%;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}
.hero-08 .header-footer .block .icon {
  margin-right: 1rem;
  display: flex;
  border-radius: 50%;
  display: none;
}
.hero-08 .header-footer .block .icon.hours {
  width: 2.5rem;
}
.hero-08 .header-footer .block .icon.delivery {
  width: 3rem;
}
.hero-08 .header-footer .block .icon.telephone {
  width: 2.5rem;
}
@media (max-width: 767.98px) {
  .hero-08 .header-footer .block .icon {
    width: 2rem;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .header-footer .block .icon {
    display: none;
  }
}
.hero-08 .header-footer .block .icon img {
  margin: auto;
  opacity: 0.6;
  fill: #fff;
  filter: invert(100);
}
.hero-08 .header-footer .block .content {
  font-weight: 300;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .hero-08 .header-footer .block .content {
    font-size: 0.8rem;
  }
}
@media (max-width: 575.98px) {
  .hero-08 .header-footer .block .content {
    line-height: 2.1;
    opacity: 0.8;
    text-align: center;
  }
}
.hero-08 .header-footer .block .content a {
  font-weight: bold;
  color: #fff;
}
.hero-08 .header-footer .block {
  /*&:not(:nth-child(3)) {
      &::after {
        position: absolute;
        width: 0.3rem;
        height: 0.3rem;
        border-radius: 50%;
        background: #fff;
        content: "";
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.3;
        box-shadow: -0.8rem 0.8rem 0 -0.05rem rgba(255, 255, 255, 0.7),
          0.8rem -0.8rem 0 -0.05rem rgba(255, 255, 255, 0.7);
        @include media-breakpoint-down(md) {
          display: none;
        }
      }
    }*/
}
.hero-08 .header-footer .block #online-status {
  font-weight: bold;
}
.hero-08 .header-footer .block #online-status.closed {
  color: #f76666;
}
.hero-08 .header-footer .block #online-status.open {
  color: #4fbe4f;
}

@keyframes rotateRight {
  from {
    transform: rotate(-360deg) translateX(1200%);
    opacity: 0;
  }
  to {
    transform: rotate(0deg) translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* keyframes*/
@keyframes slideShow {
  0% {
    opacity: 0;
    transform: scale(1);
    -ms-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    transform: scale(1.1);
    -ms-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
    -ms-transformm: scale(1);
  }
}
@-o-keyframes slideShow {
  0% {
    opacity: 0;
    -o-transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transformm: scale(1);
  }
}
.apps-01 {
  padding: 3rem 0 0;
  background: url("../images/apps-background.jpg") 50% 50%/cover;
  color: #fff;
}
.apps-01 .desc {
  padding-bottom: 40px;
  text-align: center;
}
@media (min-width: 576px) {
  .apps-01 .desc {
    text-align: left;
  }
}
.apps-01 .desc h2 {
  margin-bottom: 1.2rem;
}
.apps-01 .desc p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .apps-01 .desc p {
    font-size: 1.2rem;
  }
}
.apps-01 .desc p i {
  color: #000;
  text-shadow: 1px 0 0 #000;
}
.apps-01 .desc .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .apps-01 .desc .btns {
    flex-direction: row;
  }
}
.apps-01 .desc .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 12rem;
}
@media (min-width: 576px) {
  .apps-01 .desc .btns a {
    margin: 0 1rem 0 0;
    max-width: 14rem;
  }
}
.apps-01 .desc .btns a:hover {
  transform: scale(1.02);
}
.apps-01 img.mobile {
  display: none;
}
@media (min-width: 768px) {
  .apps-01 img.mobile {
    display: block;
  }
}

.apps-02 {
  color: #fff;
  overflow: hidden;
  background: var(--primary);
}
@media (min-width: 576px) {
  .apps-02 {
    background: none;
  }
}
.apps-02 {
  overflow: unset;
}
.apps-02::before {
  display: block;
  content: "";
  width: 50vw;
  position: absolute;
  top: 7rem;
  bottom: 7rem;
  right: 0;
  background-color: var(--primary);
  z-index: -1;
}
@media (max-width: 767.98px) {
  .apps-02::before {
    top: 3.75rem;
    bottom: 3.75rem;
  }
}
.apps-02 .box {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (min-width: 576px) {
  .apps-02 .box {
    background: var(--primary);
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
  }
}
.apps-02 .box .desc {
  padding: 0;
  text-align: center;
}
@media (min-width: 576px) {
  .apps-02 .box .desc {
    padding: 4.8rem 0rem;
    padding-left: 3.5rem;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .apps-02 .box .desc {
    padding-left: 0.5rem;
  }
}
.apps-02 .box .desc h2 {
  margin-bottom: 1.2rem;
}
.apps-02 .box .desc p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
@media (min-width: 576px) {
  .apps-02 .box .desc p {
    font-size: 1.2rem;
  }
}
.apps-02 .box .desc p i {
  color: #000;
  text-shadow: 1px 0 0 #000;
}
.apps-02 .box .desc .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .apps-02 .box .desc .btns {
    flex-direction: row;
  }
}
.apps-02 .box .desc .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 12rem;
}
@media (min-width: 576px) {
  .apps-02 .box .desc .btns a {
    margin: 0 1rem 0 0;
    max-width: 14rem;
  }
}
.apps-02 .box .desc .btns a:hover {
  transform: scale(1.02);
}
.apps-02 .box img.mobile {
  position: absolute;
  bottom: 0px;
  height: 110%;
  display: none;
  right: 0;
}
@media (min-width: 992px) {
  .apps-02 .box img.mobile {
    display: block;
    right: unset;
  }
}

.apps-03 {
  background: var(--primary);
  color: #fff;
}
.apps-03 .desc {
  text-align: center;
}
@media (min-width: 576px) {
  .apps-03 .desc {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .apps-03 .desc {
    padding-bottom: 40px;
  }
}
.apps-03 .desc h2 {
  margin-bottom: 1.2rem;
}
.apps-03 .desc p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
@media (min-width: 992px) {
  .apps-03 .desc p {
    font-size: 1.2rem;
  }
}
.apps-03 .desc p i {
  color: #000;
}
.apps-03 .desc .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .apps-03 .desc .btns {
    flex-direction: row;
  }
}
.apps-03 .desc .btns a {
  margin: 0 0 0.5rem 0;
  max-width: 11rem;
}
@media (min-width: 576px) {
  .apps-03 .desc .btns a {
    margin: 0 1rem 0 0;
    max-width: 13rem;
  }
}
.apps-03 .desc .btns a:hover {
  transform: scale(1.02);
}
.apps-03 .mobile {
  position: relative;
}
.apps-03 .mobile img {
  display: none;
  width: 100%;
  max-width: 350px;
  filter: drop-shadow(-8px 18px 30px rgba(0, 0, 0, 0.4));
}
@media (min-width: 768px) {
  .apps-03 .mobile img {
    display: inline-block;
  }
}
.apps-03 .mobile img {
  animation-name: float;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.apps-03 .mobile .drop-shadow {
  position: absolute;
  bottom: -10%;
  left: 45%;
  transform: translateX(-32%);
  width: 80%;
  height: 10%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 90%);
  border-radius: 50%;
  animation-name: drop-shadow;
  animation-duration: 8s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@media (min-width: 1400px) {
  .apps-03 .mobile .drop-shadow {
    left: 38%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes drop-shadow {
  0% {
    width: 80%;
    opacity: 1;
  }
  50% {
    width: 60%;
    opacity: 0.6;
  }
  100% {
    width: 80%;
    opacity: 1;
  }
}
.apps-04 {
  background: url("../images/apps-background.jpg") center/cover;
  color: #fff;
  position: relative;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .apps-04 {
    overflow: hidden;
  }
}
.apps-04 .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 8rem;
  align-items: center;
}
@media (max-width: 991.98px) {
  .apps-04 .grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 5rem;
  }
}
.apps-04 .grid-container .app-screens {
  position: relative;
}
@media (max-width: 991.98px) {
  .apps-04 .grid-container .app-screens {
    grid-row: 2;
    margin-bottom: 2rem;
  }
}
.apps-04 .grid-container .app-screens .blob {
  position: absolute;
  width: 732px;
  top: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  left: 50%;
}
.apps-04 .grid-container .app-screens .blob path {
  fill: rgba(184, 184, 184, 0.15);
}
.apps-04 .grid-container .app-screens .screen-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.apps-04 .grid-container .app-screens .screen-group img {
  width: 100%;
  box-shadow: 25px 0 40px 10px rgba(0, 0, 0, 0.5), 6px 6px 0 #373737;
  border: 5px solid #262626;
  border-top-width: 18px;
  border-bottom-width: 18px;
  border-radius: 1.2rem;
  transition: var(--transition-medium);
}
.apps-04 .grid-container .app-screens .screen-group img:nth-child(1) {
  transform: rotate3d(1, -1, 1, -14deg);
}
.apps-04 .grid-container .app-screens .screen-group img:nth-child(1):hover {
  transform: rotate3d(1, -1, 1, 5deg);
}
.apps-04 .grid-container .app-screens .screen-group img:nth-child(2) {
  transform: rotate3d(1, -1, 1, 15deg) scale(1.3);
  z-index: 2;
}
.apps-04 .grid-container .app-screens .screen-group img:nth-child(2):hover {
  transform: rotate3d(1, -1, 1, 10deg) scale(1.45);
}
.apps-04 .grid-container .app-screens .screen-group img:nth-child(3) {
  z-index: 0;
  transform: rotate3d(1, -1, 1, 35deg);
}
.apps-04 .grid-container .app-screens .screen-group img:nth-child(3):hover {
  transform: rotate3d(1, -1, 1, 20deg);
}
.apps-04 .grid-container .app-content {
  position: relative;
  text-align: right;
  display: flex;
  flex-direction: column;
  flex: 1 0 45%;
}
@media (max-width: 991.98px) {
  .apps-04 .grid-container .app-content {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 767.98px) {
  .apps-04 .grid-container .app-content::after, .apps-04 .grid-container .app-content::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .apps-04 .grid-container .app-content::after, .apps-04 .grid-container .app-content::before {
    display: none;
  }
}
.apps-04 .grid-container .app-content h2 {
  margin-bottom: 1rem;
  width: 100%;
  max-width: 11ch;
  text-align: right;
  align-self: end;
  color: var(--dark);
}
@media (max-width: 991.98px) {
  .apps-04 .grid-container .app-content h2 {
    max-width: 100%;
    text-align: center;
  }
}
.apps-04 .grid-container .app-content h2 span {
  color: var(--primary);
}
.apps-04 .grid-container .app-content .caption {
  align-self: flex-end;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: var(--dark);
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: inline-flex;
}
@media (max-width: 575.98px) {
  .apps-04 .grid-container .app-content .caption {
    align-self: center;
    margin-bottom: 1rem;
  }
}
.apps-04 .grid-container .app-content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
}
.apps-04 .grid-container .app-content p strong {
  color: var(--dark);
  font-weight: bold;
}
.apps-04 .button-group {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  filter: drop-shadow(0 10px 20px rgba(163, 114, 50, 0.2));
}
.apps-04 .button-group a {
  max-width: 13rem;
}
.apps-04 .button-group a:hover {
  transform: translateY(-5px);
}
.apps-04 .button-group a:nth-child(1) {
  margin-right: 1.5rem;
}

.apps-05 {
  background: transparent;
  background-image: url("../images/apps-background.jpg");
  background-size: cover;
  color: #fff;
}
@media (max-width: 767.98px) {
  .apps-05 {
    overflow: hidden;
  }
}
.apps-05 .card {
  position: relative;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3rem;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 575.98px) {
  .apps-05 .card {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.apps-05 .card::before {
  position: absolute;
  content: "";
  width: 110px;
  height: 118px;
  border-radius: 50%;
  left: -1rem;
  top: -3rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(#4d4d4d 33%, transparent 33%);
  background-size: 7px 7px;
  filter: drop-shadow(50px 20px 0 rgba(77, 77, 77, 0.5));
}
.apps-05 .card::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
}
@media (max-width: 767.98px) {
  .apps-05 .card::after, .apps-05 .card::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .apps-05 .card::after, .apps-05 .card::before {
    display: none;
  }
}
.apps-05 .card .caption {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
}
.apps-05 .card h2 {
  margin-bottom: 1rem;
}
.apps-05 .card p {
  color: #fff;
  opacity: 0.7;
}
.apps-05 .button-group {
  width: 500px;
  margin: 2rem auto 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apps-05 .button-group a:hover {
  transform: translateY(-5px);
}
.apps-05 .button-group a:nth-child(1) {
  margin-right: 1.5rem;
}
.apps-05 .button-group a:nth-child(2) img {
  border: 2px solid black;
  border-radius: 5px;
}
.apps-05 .button-group a img {
  width: 150px;
}

.about-01 {
  background: #fff;
  color: var(--dark);
}
.about-01 p {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .about-01 p {
    font-size: 1.1rem;
  }
}
.about-01 a {
  color: var(--dark);
  border-bottom: 2px dashed var(--primary);
}

.about-02 {
  position: relative;
  background: var(--dark);
  color: var(--light);
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-02 {
    text-align: left;
  }
}
.about-02 h2 {
  text-transform: uppercase;
}
.about-02 h2 span {
  color: var(--primary);
}
.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: var(--light);
  border-bottom: 2px dashed var(--primary);
}
.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-03 {
  color: var(--light);
  background: var(--dark);
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .about-03 {
    overflow: hidden;
  }
}
.about-03 h2 {
  margin-bottom: 1rem;
}
.about-03 h2 span {
  color: var(--primary);
}
.about-03 p {
  width: 55ch;
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 1.1rem;
}
@media (max-width: 767.98px) {
  .about-03 p {
    width: auto;
  }
}
.about-03 .grid-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-gap: 4rem;
  align-items: center;
}
@media (max-width: 991.98px) {
  .about-03 .grid-container {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
.about-03 .grid-container .about-image-wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 991.98px) {
  .about-03 .grid-container .about-image-wrapper {
    flex-direction: column;
  }
}
.about-03 .grid-container .about-image-wrapper img {
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.3);
  transition: var(--transition-medium);
}
.about-03 .grid-container .about-image-wrapper img:nth-child(1) {
  z-index: 0;
  transform: rotate(-5deg);
}
.about-03 .grid-container .about-image-wrapper img:nth-child(1):hover {
  transform: rotate(-3deg);
}
.about-03 .grid-container .about-image-wrapper img:nth-child(2) {
  margin-left: -8rem;
  width: 250px;
  height: 250px;
  margin-top: 2rem;
  z-index: 1;
  transform: rotate(4deg);
}
.about-03 .grid-container .about-image-wrapper img:nth-child(2):hover {
  transform: rotate(6deg);
}
@media (max-width: 991.98px) {
  .about-03 .grid-container .about-image-wrapper img:nth-child(2) {
    margin-left: 2rem;
    margin-top: -4rem;
  }
}

.about-04 {
  color: #fff;
  background-image: url("../images/about-background.jpg");
}
@media (max-width: 767.98px) {
  .about-04 {
    overflow: hidden;
  }
}
.about-04 .card-container {
  display: flex;
}
@media (max-width: 991.98px) {
  .about-04 .card-container {
    flex-direction: column;
  }
}
.about-04 .card-container .card-content {
  position: relative;
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.86);
  flex: 1 0 52%;
  flex-wrap: wrap;
  z-index: 1;
  backdrop-filter: blur(5px);
  height: min-content;
}
@media (max-width: 575.98px) {
  .about-04 .card-container .card-content {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.about-04 .card-container .card-content::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  left: -1.2rem;
  top: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-light) 33%, transparent 33%);
  background-size: 7px 7px;
  filter: drop-shadow(50px -20px 0 rgba(77, 77, 77, 0.5));
}
.about-04 .card-container .card-content::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-light) 33%, transparent 33%);
  background-size: 7px 7px;
  filter: drop-shadow(50px -20px 0 rgba(255, 255, 255, 0.4));
}
@media (max-width: 767.98px) {
  .about-04 .card-container .card-content::after, .about-04 .card-container .card-content::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .about-04 .card-container .card-content::after, .about-04 .card-container .card-content::before {
    display: none;
  }
}
.about-04 .card-container .card-image {
  flex: 1 0 30%;
  position: relative;
}
.about-04 .card-container .card-image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  transform: scale(1.3);
  transform-origin: right;
  z-index: 0;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .about-04 .card-container .card-image img {
    transform-origin: center;
  }
}
@media (max-width: 575.98px) {
  .about-04 .card-container .card-image img {
    height: 200px;
    width: 100%;
  }
}
.about-04 .card-container .card-image img.blur {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  right: 0;
  left: 0;
  bottom: -29px;
  z-index: -1;
  filter: blur(25px);
}
.about-04 .card-container h2 {
  margin-bottom: 1rem;
  text-align: center;
  color: var(--primary);
}
.about-04 .card-container p {
  color: #0b0b0b;
  width: 55ch;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .about-04 .card-container p {
    width: auto;
  }
}
.about-04 .card-container p a {
  color: var(--primary);
  font-weight: bold;
  border-bottom: 2px dashed var(--primary);
}

.foodList-01 {
  padding: 0;
  background: fixed url("../images/foodlist-background.jpg") 50% 50%/cover;
}
.foodList-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
@media (min-width: 576px) {
  .foodList-01 {
    padding: 120px 0 100px;
    box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.8);
  }
}
.foodList-01 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.55);
}
@media (min-width: 576px) {
  .foodList-01 .foodlist__wrapper {
    border-radius: 10px;
  }
}
.foodList-01 #foodlist__heading {
  background: transparent;
  padding: 1.5rem 0;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__heading {
    padding: 2rem 0;
  }
}
.foodList-01 #foodlist__heading h2 {
  margin: 0;
  color: var(--dark);
  text-align: center;
  font-size: 4.2rem;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__heading h2 {
    font-size: 5.2rem;
  }
}
.foodList-01 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  color: var(--dark);
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-01 #foodlist__heading .foodlist__order a {
  color: var(--primary);
  font-weight: bold;
}
.foodList-01 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  transition: var(--transition-slow);
}
.foodList-01 #foodlist__heading .foodlist__order a:hover i {
  transform: translateX(0.5rem);
}
.foodList-01 #foodlist__categories {
  position: sticky;
  top: var(--scroll-padding);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
}
.foodList-01 #foodlist__categories:hover {
  cursor: grab;
}
.foodList-01 #foodlist__categories:active {
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__categories {
    position: relative;
    top: unset;
    background: rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: unset;
    padding: 1rem 0.5rem;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    user-select: none;
  }
  .foodList-01 #foodlist__categories:hover {
    cursor: default;
  }
  .foodList-01 #foodlist__categories:active {
    cursor: default;
  }
}
.foodList-01 #foodlist__categories .foodlist__categories__item {
  display: block;
  flex-shrink: 0;
  padding: 0.3rem 1rem;
  margin: 0.45rem;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  transition: var(--transition-medium);
  cursor: pointer;
  color: var(--dark);
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__categories .foodlist__categories__item {
    padding: 0.45rem 1.9rem;
  }
}
.foodList-01 #foodlist__categories .foodlist__categories__item:hover, .foodList-01 #foodlist__categories .foodlist__categories__item:focus {
  box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
}
.foodList-01 #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary);
  color: #fff;
}
.foodList-01 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  padding: 1.8rem 1.3rem;
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
}
.foodList-01 #foodlist__content.two-columns {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .foodList-01 #foodlist__content.two-columns {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem 3rem;
  }
}
@media (min-width: 1400px) {
  .foodList-01 #foodlist__content.two-columns {
    grid-gap: 2rem 4rem;
  }
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content {
    padding: 3rem 2rem 3.5rem;
  }
}
@media (min-width: 992px) {
  .foodList-01 #foodlist__content {
    padding: 3rem 3.5rem 4.5rem;
  }
}
@media (min-width: 1400px) {
  .foodList-01 #foodlist__content {
    padding: 3rem 4rem 5rem;
  }
}
.foodList-01 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  color: var(--dark);
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodList-01 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodList-01 #foodlist__content h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  border-bottom: 4px dotted var(--primary);
  width: 70%;
}
.foodList-01 #foodlist__content .item-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  animation: itemFade 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
}
.foodList-01 #foodlist__content .item-list__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0.2rem;
  flex: 1 0 75%;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodList-01 #foodlist__content .item-list__content__name {
  margin-bottom: 0.3rem;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__name {
    font-size: 1.2rem;
  }
}
.foodList-01 #foodlist__content .item-list__content__ingredients {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--gray);
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodList-01 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .foodList-01 #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodList-01 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodList-01 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodList-01 #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-01 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  color: var(--dark);
  font-size: 1.1rem;
}
.foodList-01 #loading:before {
  content: "";
  box-sizing: border-box;
  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;
  font-style: italic;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.foodList-02 {
  background: url("../images/foodlist-background.jpg");
  padding: 0;
}
.foodList-02 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: relative;
  padding-bottom: 2.5rem;
}
.foodList-02 #foodlist__heading {
  background: none;
  padding: 2rem 0;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading {
    padding: 3rem 0;
  }
}
.foodList-02 #foodlist__heading h2 {
  margin: 0;
  color: #fff;
  font-size: 3.3rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading h2 {
    font-size: 5rem;
  }
}
.foodList-02 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodList-02 #foodlist__heading .foodlist__order a {
  color: var(--primary-dark);
  font-weight: bold;
}
.foodList-02 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  transition: var(--transition-slow);
}
.foodList-02 #foodlist__heading .foodlist__order a:hover i {
  transform: translateX(0.5rem);
}
.foodList-02 #foodlist__categories {
  position: sticky;
  top: var(--scroll-padding);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
}
.foodList-02 #foodlist__categories:hover {
  cursor: grab;
}
.foodList-02 #foodlist__categories:active {
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories {
    position: relative;
    top: unset;
    background: rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: unset;
    padding: 1rem 0;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    user-select: none;
  }
  .foodList-02 #foodlist__categories:hover {
    cursor: default;
  }
  .foodList-02 #foodlist__categories:active {
    cursor: default;
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item {
  display: block;
  flex-shrink: 0;
  padding: 0.3rem 1rem;
  margin: 0.45rem;
  border-radius: 5px;
  background: #fff;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  transition: var(--transition-medium);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories .foodlist__categories__item {
    padding: 0.45rem 1.9rem;
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item:hover, .foodList-02 #foodlist__categories .foodlist__categories__item:focus {
  box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
}
.foodList-02 #foodlist__categories .foodlist__categories__item.selected {
  background: var(--primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.foodList-02 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  padding: 1.8rem 1.3rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.foodList-02 #foodlist__content.two-columns {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .foodList-02 #foodlist__content.two-columns {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
    padding: 3rem 2rem 2rem;
  }
}
.foodList-02 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodList-02 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodList-02 #foodlist__content h3::before, .foodList-02 #foodlist__content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--primary);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::before, .foodList-02 #foodlist__content h3::after {
    width: 3.5rem;
  }
}
.foodList-02 #foodlist__content h3::before {
  left: -3rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::before {
    left: -5rem;
  }
}
.foodList-02 #foodlist__content h3::after {
  right: -3rem;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content h3::after {
    right: -5rem;
  }
}
.foodList-02 #foodlist__content .item-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  animation: itemFade 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
}
.foodList-02 #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-02 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__name {
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__name {
    font-size: 1.2rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__ingredients {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--light);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodList-02 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: var(--weight-bold);
  font-family: var(--font-heading);
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodList-02 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodList-02 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodList-02 #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-02 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  color: #fff;
  font-size: 1.1rem;
}
.foodList-02 #loading:before {
  content: "";
  box-sizing: border-box;
  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;
  font-style: italic;
}

.foodList-02 {
  background-size: cover;
  background-attachment: fixed;
}
.foodList-02 ::-webkit-scrollbar {
  height: 9px;
  background-color: rgba(0, 0, 0, 0.1);
}
.foodList-02 ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.4);
  background-color: rgba(0, 0, 0, 0.1);
}
.foodList-02 ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.3);
}
.foodList-02 #foodlist__heading .foodlist__order a {
  color: var(--primary);
}
.foodList-02 #foodlist__categories {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: none;
}
@media (min-width: 576px) {
  .foodList-02 #foodlist__categories {
    background: rgba(0, 0, 0, 0.3);
  }
}
.foodList-02 #foodlist__categories .foodlist__categories__item {
  background: rgba(73, 73, 73, 0.8);
  box-shadow: none;
}
.foodList-02 #foodlist__categories .foodlist__categories__item:hover, .foodList-02 #foodlist__categories .foodlist__categories__item:focus {
  background: rgba(82, 82, 82, 0.9);
}
.foodList-02 #foodlist__categories .foodlist__categories__item.selected {
  color: #fff;
  background: var(--primary);
}
.foodList-02 #foodlist__content .item-list {
  border-bottom: 1.15px solid rgba(230, 230, 230, 0.2);
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.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: var(--dark);
  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: var(--dark);
  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: var(--primary);
  font-weight: var(--weight-bold);
}
.foodList-03 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  transition: var(--transition-medium);
}
.foodList-03 #foodlist__heading .foodlist__order a:hover i {
  transform: translateX(0.5rem);
}
.foodList-03 .navigation {
  position: sticky;
  top: var(--scroll-padding);
  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: var(--primary-dark);
  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: var(--transition-slow);
  border-bottom: 3px solid transparent;
  scroll-snap-align: center;
  color: var(--dark);
  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 var(--primary);
}
.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 var(--primary);
  transition: var(--transition-slow);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
  color: var(--primary-dark);
}
@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: var(--dark);
  font-size: 1.9rem;
  font-weight: var(--weight-regular);
  font-family: var(--font-primary);
  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: var(--primary);
}
.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: var(--gray);
  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: var(--primary-dark);
  font-size: 1.07rem;
  font-weight: var(--weight-bold);
}
.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 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;
  }
}
.gallery-01 {
  background: url("../images/gallery-background.jpg") fixed center/cover;
  padding: 50px 0 40px;
  color: #fff;
}
@media (min-width: 768px) {
  .gallery-01 {
    padding: 60px 0 50px;
  }
}
.gallery-01 h2 {
  display: block;
  margin-bottom: 3rem;
  border-bottom: 4px dotted var(--primary-dark);
  text-align: center;
}
.gallery-01 img {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 3px;
  transition: var(--transition-medium);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}
.gallery-01 img:hover {
  transform: scale(1.015);
  box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.4);
}

.gallery-02 {
  background: transparent;
  color: var(--dark);
  text-align: center;
}
@media (max-width: 575.98px) {
  .gallery-02 {
    overflow: hidden;
  }
}
.gallery-02 h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}
.gallery-02 h2::before, .gallery-02 h2::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 4rem;
  height: 3px;
  background: var(--primary);
}
.gallery-02 h2::before {
  left: -5rem;
}
.gallery-02 h2::after {
  right: -5rem;
}
.gallery-02 .gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
}
@media (max-width: 767.98px) {
  .gallery-02 .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    grid-gap: 1rem;
  }
}
.gallery-02 .gallery-grid .extended {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 1.5rem;
  grid-column: 1/-1;
}
@media (max-width: 767.98px) {
  .gallery-02 .gallery-grid .extended {
    grid-gap: 1rem;
  }
}
.gallery-02 .gallery-grid .extended a:first-child {
  grid-column: unset;
  grid-row: unset;
}
.gallery-02 .gallery-grid .extended a img {
  aspect-ratio: 1/1;
}
.gallery-02 .gallery-grid a {
  width: 100%;
}
.gallery-02 .gallery-grid a:hover {
  transform: scale(1.015);
}
.gallery-02 .gallery-grid a:first-child {
  grid-column: span 1;
  grid-row: span 2;
}
@media (max-width: 767.98px) {
  .gallery-02 .gallery-grid a:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.gallery-02 .gallery-grid a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  transition: var(--transition-medium);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-03 {
  background: transparent;
  padding: 40px 0;
  color: var(--dark);
}
@media (min-width: 768px) {
  .gallery-03 {
    padding: 60px;
  }
}
.gallery-03 h2 {
  display: inline-block;
  padding-left: 2rem;
  margin-bottom: 3rem;
  border-left: 5px solid var(--primary);
}
.gallery-03 img {
  width: 100%;
  margin-bottom: 30px;
  transition: var(--transition-fast);
  box-shadow: 0 5px 12px rgba(77, 39, 0, 0.3);
}
.gallery-03 img:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 30px rgba(77, 39, 0, 0.4);
}

.gallery-04 {
  text-align: center;
  position: relative;
  z-index: 0;
  background: url("../images/gallery-background.jpg") fixed center/cover;
}
.gallery-04::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: var(--dark);
  opacity: 0.6;
  z-index: -1;
}
.gallery-04 h2 {
  color: #fff;
  margin-bottom: 3rem;
}
.gallery-04 h2 span {
  color: var(--primary);
}
.gallery-04 .caption {
  font-family: var(--primaryFont);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: inline-flex;
}
@media (max-width: 575.98px) {
  .gallery-04 .caption {
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
  }
}
.gallery-04 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
@media (max-width: 991.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .gallery-04 .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-04 .gallery-grid a {
  aspect-ratio: 1/1;
}
.gallery-04 .gallery-grid a:hover {
  transform: translateY(-10px);
}
.gallery-04 .gallery-grid a img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

.deliveryMap-01 {
  position: relative;
  background: url("../images/delivery-maps-background.jpg");
  overflow: hidden;
  color: var(--light);
}
.deliveryMap-01 h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .deliveryMap-01 h2 {
    font-size: 3.2rem;
  }
}
.deliveryMap-01 p {
  font-size: 1rem;
}
@media (min-width: 576px) {
  .deliveryMap-01 p {
    font-size: 1.1rem;
  }
}
.deliveryMap-01 p:last-of-type {
  margin-bottom: 1.6rem;
}
.deliveryMap-01 p.zone {
  font-size: 1.3rem;
}
.deliveryMap-01 p.zone span {
  color: var(--white);
  font-weight: var(--weight-bold);
}
@media (min-width: 576px) {
  .deliveryMap-01 p.zone {
    font-size: 1.4rem;
  }
}
.deliveryMap-01 .map a {
  color: var(--light);
  transition: var(--transition-medium);
}
.deliveryMap-01 .map a:hover {
  opacity: 0.8;
}
.deliveryMap-01 .map a:hover p {
  opacity: 0.8;
}
.deliveryMap-01 .map a img {
  padding-bottom: 5px;
}
.deliveryMap-01 .map a p {
  margin-bottom: 0;
  font-size: 1.1rem;
  transition: var(--transition-medium);
}

.deliveryMap-02 {
  position: relative;
  background: url("../images/delivery-maps-background.jpg");
  overflow: hidden;
  color: #fff;
  border-top: 7px dashed rgba(255, 255, 255, 0.15);
}
.deliveryMap-02 h2 {
  margin-bottom: 2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .deliveryMap-02 h2 {
    margin-bottom: 3.5rem;
  }
}
.deliveryMap-02 .zone {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.5rem;
}
.deliveryMap-02 .zone i {
  margin-right: 1.2rem;
  font-size: 2rem;
  color: var(--primary);
}
@media (min-width: 576px) {
  .deliveryMap-02 .zone i {
    font-size: 2.6rem;
  }
}
.deliveryMap-02 .zone p {
  font-size: 1rem;
}
.deliveryMap-02 .zone p .towns {
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  color: var(--white);
}
@media (min-width: 576px) {
  .deliveryMap-02 .zone p {
    font-size: 1.2rem;
  }
}

.deliveryMap-03 {
  background: var(--light);
  overflow: hidden;
  color: var(--dark);
}
.deliveryMap-03 h2 {
  text-align: center;
  font-size: 3.5rem;
}
@media (min-width: 768px) {
  .deliveryMap-03 h2 {
    font-size: 4rem;
  }
}
.deliveryMap-03 .zone p {
  text-align: center;
  font-size: 1.1rem;
}
.deliveryMap-03 .zone p.towns {
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
}
.deliveryMap-03 .zone p.towns span {
  font-weight: var(--weight-regular);
}
@media (min-width: 768px) {
  .deliveryMap-03 .zone p {
    font-size: 1.2rem;
  }
  .deliveryMap-03 .zone p.towns {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
  }
}
.deliveryMap-03 p.info {
  text-align: center;
  font-size: 1.1rem;
  font-weight: var(--weight-regular);
}
.deliveryMap-03 p.info i {
  font-size: 1rem;
}

.contact-01 {
  background: url("../images/contact-background.jpg") 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: var(--dark);
  font-weight: var(--weight-bold);
  text-align: center;
  text-transform: uppercase;
}
.contact-01 .card.info {
  position: relative;
  padding: 25px;
  color: var(--dark);
}
.contact-01 .card.info p,
.contact-01 .card.info a {
  display: flex;
  flex-flow: row, nowrap;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--dark);
  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: var(--primary);
  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: var(--weight-bold);
}
.contact-01 .card.info a:hover {
  color: var(--primary);
}
.contact-01 .card.info a span {
  line-height: 1.3;
  border-bottom: 2px dashed var(--primary);
}
.contact-01 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  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: var(--weight-bold);
}
.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%);
}

.contact-02 {
  background: url("../images/contact-background.jpg") 50% 50%/cover scroll;
  overflow: hidden;
}
@media (min-width: 576px) {
  .contact-02 {
    background-attachment: fixed;
    box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.5);
  }
}
.contact-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.contact-02 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-02 img.pizza {
    width: 600px;
  }
}
.contact-02 .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-02 .card h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-02 .card h2 {
    font-size: 3.2rem;
  }
}
.contact-02 .card.info {
  position: relative;
  color: var(--dark);
  padding: 25px;
}
.contact-02 .card.info p,
.contact-02 .card.info a {
  display: flex;
  flex-flow: row, nowrap;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark);
}
@media (min-width: 768px) {
  .contact-02 .card.info p,
  .contact-02 .card.info a {
    font-size: 1.3rem;
    width: fit-content;
  }
}
.contact-02 .card.info p i,
.contact-02 .card.info a i {
  margin-right: 12px;
}
.contact-02 .card.info p i::before,
.contact-02 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.6rem;
  color: var(--primary);
  text-align: center;
}
.contact-02 .card.info p i.fa-facebook-square::before,
.contact-02 .card.info a i.fa-facebook-square::before {
  font-size: 1.8rem;
}
.contact-02 .card.info a span {
  line-height: 1.3;
  border-bottom: 2px dashed rgba(var(--primary), 1);
}
.contact-02 .card.info a:hover {
  color: var(--primary);
}
.contact-02 .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-02 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-03 {
  background: url("../images/contact-background.jpg") 50% 50%/cover scroll;
  box-shadow: inset 0px 0px 15px 4px rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .contact-03 {
    background-attachment: fixed;
  }
}
.contact-03::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.contact-03 .card {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .contact-03 .card {
    margin-bottom: 0px;
  }
}
.contact-03 .card h2 {
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-03 .card.info {
  position: relative;
  color: var(--dark);
  padding: 25px;
}
@media (min-width: 768px) {
  .contact-03 .card.info {
    margin-bottom: 30px;
  }
}
.contact-03 .card.info p,
.contact-03 .card.info a {
  display: flex;
  flex-flow: row, nowrap;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark);
}
@media (min-width: 768px) {
  .contact-03 .card.info p,
  .contact-03 .card.info a {
    width: fit-content;
  }
}
.contact-03 .card.info p i,
.contact-03 .card.info a i {
  margin-right: 10px;
}
.contact-03 .card.info p i::before,
.contact-03 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
.contact-03 .card.info p i.fa-facebook-square::before,
.contact-03 .card.info a i.fa-facebook-square::before {
  font-size: 1.65rem;
}
.contact-03 .card.info p i.fa-instagram::before,
.contact-03 .card.info a i.fa-instagram::before {
  font-size: 1.65rem;
}
.contact-03 .card.info a.phone {
  font-weight: var(--weight-bold);
}
.contact-03 .card.info a:hover {
  color: var(--primary-dark);
}
.contact-03 .card.info a span {
  display: inline-block;
  line-height: 1.2;
  border-bottom: 2px dashed var(--primary-dark);
}
.contact-03 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.contact-03 .card.business-hours li span {
  float: right;
}
.contact-03 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-03 .card.business-hours li.today {
  font-weight: var(--weight-bold);
  background: rgba(0, 0, 0, 0.1);
}
.contact-03 .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-03 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-03 .card.business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  .contact-03 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-03 .map {
  position: relative;
  padding: 0;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}
.contact-03 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .contact-03 .map a.way-btn {
    font-size: 1.1rem;
    padding: 0.5rem 1.8rem;
  }
}

.contact-04 {
  position: relative;
  background-color: var(--primary);
  background-image: url("../images/contact-background.jpg");
  z-index: 0;
  overflow: hidden;
  box-shadow: inset 0px 4px 20px -4px rgba(0, 0, 0, 0.5);
}
.contact-04 .card {
  background: #fff;
  padding: 25px 25px 40px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .contact-04 .card {
    padding: 25px 35px;
  }
}
.contact-04 .card h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  text-transform: uppercase;
  text-align: center;
}
.contact-04 .card.info {
  position: relative;
  color: var(--dark);
}
.contact-04 .card.info p,
.contact-04 .card.info a {
  display: flex;
  flex-flow: row, nowrap;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--dark);
}
@media (min-width: 768px) {
  .contact-04 .card.info p,
  .contact-04 .card.info a {
    width: fit-content;
  }
}
.contact-04 .card.info p i,
.contact-04 .card.info a i {
  margin-right: 10px;
}
.contact-04 .card.info p i::before,
.contact-04 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: var(--primary);
  text-align: center;
}
@media (min-width: 768px) {
  .contact-04 .card.info p i,
  .contact-04 .card.info a i {
    font-size: 1.5rem;
    margin-right: 0.6rem;
  }
}
.contact-04 .card.info a {
  font-weight: var(--weight-bold);
}
.contact-04 .card.info a:hover {
  color: var(--primary);
}
.contact-04 .card.info .social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-flow: row, nowrap;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social {
    bottom: 25px;
    right: 25px;
  }
}
.contact-04 .card.info .social a {
  margin-bottom: 0;
  margin-right: 17px;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social a {
    margin-right: 12px;
  }
}
.contact-04 .card.info .social a i {
  margin: 0;
}
.contact-04 .card.info .social a i::before {
  display: inline-block;
  width: 2rem;
  transition: var(--transition-medium);
  color: var(--primary);
  font-size: 2.3rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social a i::before {
    font-size: 2.2rem;
  }
}
.contact-04 .card.info .social a i:hover::before {
  color: var(--primary-dark);
}
.contact-04 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.contact-04 .card.business-hours li span {
  float: right;
}
.contact-04 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-04 .card.business-hours li.today {
  font-weight: var(--weight-bold);
  background: rgba(0, 0, 0, 0.1);
}
.contact-04 .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-04 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-04 .card.business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  .contact-04 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-04 .map {
  position: relative;
  padding: 0;
  min-height: 250px;
  border-radius: 5px;
  overflow: hidden;
}
.contact-04 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.contact-04 .pizza {
  position: absolute;
  bottom: -300px;
  right: -20%;
  max-width: 620px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
  animation-name: pizza-contact-rotate;
  animation-duration: 50s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media (min-width: 992px) {
  .contact-04 .pizza {
    right: -180px;
    max-width: 820px;
  }
}

@keyframes pizza-contact-rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-05 {
  position: relative;
  background: url("../images/contact-background.jpg") 50% 50%/cover;
}
.contact-05::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.contact-05 h2 {
  margin-bottom: 3rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .contact-05 h2 {
    margin-bottom: 2.5rem;
  }
}
.contact-05 .card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.8rem 1rem 1.5rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 5px;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
  text-align: left;
  max-width: 280px;
}
.contact-05 .card i {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-dark);
  border-radius: 50%;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.3rem;
}
.contact-05 .card p,
.contact-05 .card a {
  text-align: center;
  margin: 0;
  color: var(--dark);
  font-size: 1.15rem;
  font-weight: var(--weight-regular);
}
@media (min-width: 576px) {
  .contact-05 .card p,
  .contact-05 .card a {
    font-size: 1.1rem;
  }
}
.contact-05 .card a:hover {
  color: var(--primary-dark);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
.contact-05 .map {
  position: relative;
  padding: 0;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}
.contact-05 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-06 {
  background: url("../images/contact-background.jpg") center/cover;
  position: relative;
  z-index: 0;
  color: rgb(255, 255, 255);
}
@media (max-width: 767.98px) {
  .contact-06 {
    overflow: hidden;
  }
}
.contact-06::after {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
}
.contact-06 .card-container {
  display: flex;
}
@media (max-width: 767.98px) {
  .contact-06 .card-container {
    flex-direction: column;
  }
}
.contact-06 .card-container .card-content {
  position: relative;
  text-align: center;
  backdrop-filter: blur(16px) saturate(171%);
  -webkit-backdrop-filter: blur(16px) saturate(171%);
  background-color: rgba(17, 25, 40, 0.52);
  border-radius: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  z-index: 1;
  box-shadow: 0 40px 30px -24px rgba(24, 24, 24, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
  flex: 1 0 40%;
}
@media (max-width: 575.98px) {
  .contact-06 .card-container .card-content {
    width: 100%;
    padding: 1.7rem 1rem;
    border-radius: 1rem;
  }
}
.contact-06 .card-container .card-content::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  left: -1.2rem;
  top: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  filter: drop-shadow(50px -20px 0 rgba(156, 156, 156, 0.5));
}
.contact-06 .card-container .card-content::after {
  position: absolute;
  content: "";
  width: 90px;
  height: 100px;
  border-radius: 50%;
  right: -1.2rem;
  bottom: -2rem;
  background: rgba(127, 127, 127, 0);
  background-image: none;
  background-size: auto;
  background-image: none;
  background-size: auto;
  background-image: radial-gradient(var(--primary-dark) 33%, transparent 33%);
  background-size: 7px 7px;
  filter: drop-shadow(50px -20px 0 rgba(0, 0, 0, 0.4));
}
@media (max-width: 767.98px) {
  .contact-06 .card-container .card-content::after, .contact-06 .card-container .card-content::before {
    width: 60px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  .contact-06 .card-container .card-content::after, .contact-06 .card-container .card-content::before {
    display: none;
  }
}
.contact-06 .card-container .card-iframe {
  flex: 1 0 52%;
  margin-left: -5rem;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .contact-06 .card-container .card-iframe {
    margin-left: 0;
  }
}
.contact-06 .card-container .card-iframe iframe {
  height: 100%;
  width: 100%;
  z-index: 0;
  position: relative;
  border-radius: 20px;
  margin-top: 4rem;
  box-shadow: 0 40px 30px -24px rgba(24, 24, 24, 0.6), 0 0 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  .contact-06 .card-container .card-iframe iframe {
    width: 100vw;
    height: 400px;
    margin-top: -3rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
}
@media (max-width: 575.98px) {
  .contact-06 .card-container .card-iframe iframe {
    height: 250px;
  }
}
.contact-06 .caption {
  font-family: var(--primaryFont);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  color: #fff;
  font-weight: 300;
  opacity: 0.7;
  position: relative;
  display: inline-flex;
  --categoryLineColor: rgba(255, 255, 255, 0.3);
}
.contact-06 .caption::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  transform: translateY(-50%);
}
.contact-06 .caption::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -3.5rem;
  width: 2rem;
  height: 1px;
  background: var(--categoryLineColor);
  transform: translateY(-50%);
}
.contact-06 a {
  color: #fff;
}
.contact-06 ul {
  list-style: none;
  text-align: left;
}
.contact-06 ul li {
  line-height: 1.7;
  display: flex;
  align-items: baseline;
}
.contact-06 ul li:not(:nth-last-child(1)) {
  margin-bottom: 1rem;
}
.contact-06 ul li i {
  margin-right: 1rem;
  width: 2rem;
  font-size: 1.5rem;
  line-height: 1.7;
  position: relative;
  top: 4px;
  color: var(--primary-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-07 {
  margin: 0;
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  z-index: 1;
  -webkit-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  background: var(--dark);
}
.contact-07::before {
  width: 100%;
  height: 50%;
  bottom: -26%;
  opacity: 0.7;
  transform: scale(1.5) rotate(10deg);
  left: -18%;
  background-image: url("../images/leaves.png");
  background-size: contain;
}
.contact-07::after {
  width: 20vw;
  height: 18vw;
  bottom: -15%;
  background-repeat: no-repeat;
  left: -4%;
  background-image: url("../images/sushi.png");
  background-size: contain;
  filter: drop-shadow(2px 5px 20px rgb(0, 0, 0.6));
}
.contact-07::before, .contact-07::after {
  content: "";
  position: absolute;
  z-index: -1;
}
.contact-07 .grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5rem;
}
@media (max-width: 767.98px) {
  .contact-07 .grid-container {
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
}
.contact-07 .grid-container .contact-content h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .contact-07 .grid-container .contact-content h2 {
    width: auto;
  }
}
.contact-07 .grid-container .contact-content h2 span {
  color: var(--primary);
}
.contact-07 .grid-container .contact-content p {
  margin-bottom: 1rem;
}
.contact-07 .grid-container .contact-content a {
  color: var(--light);
}
.contact-07 .grid-container .contact-content a:hover {
  color: var(--primary);
}
.contact-07 .grid-container .contact-content .social a {
  margin-right: 10px;
  color: #fff;
}
.contact-07 .grid-container .contact-content .social i {
  font-size: 2rem;
}
.contact-07 .grid-container .contact-content__info ul {
  margin: 0;
  list-style: none;
}
.contact-07 .grid-container .contact-content__info ul li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  color: #8f8f8f;
}
.contact-07 .grid-container .contact-content__info ul li i {
  margin-right: 1rem;
  width: 1.2rem;
  color: #fff;
}
.contact-07 .grid-container .contact-content__info .business-hours {
  margin-bottom: 1.5rem;
}
.contact-07 .grid-container .contact-content__info .business-hours li {
  line-height: 2;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
}
.contact-07 .grid-container .contact-content__info .business-hours li span {
  float: right;
}
.contact-07 .grid-container .contact-content__info .business-hours li:last-child {
  border-bottom: none;
}
.contact-07 .grid-container .contact-content__info .business-hours li.today {
  font-weight: var(--weight-bold);
  background: rgba(255, 255, 255, 0.1);
}
.contact-07 .grid-container .contact-content__info .business-hours p.info {
  display: flex;
  flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-07 .grid-container .contact-content__info .business-hours p.info {
    font-size: 1rem;
  }
}
.contact-07 .grid-container .contact-content__info .business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  .contact-07 .grid-container .contact-content__info .business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  .contact-07 .grid-container .contact-map iframe {
    height: 200px;
  }
}

.footer-01 {
  background: none;
  color: var(--dark);
  text-align: center;
  padding: 20px 0;
}
.footer-01 p {
  margin-bottom: 0;
}
.footer-01 a {
  border-bottom: 2px dashed var(--primary);
  color: var(--dark);
  font-weight: 600;
}

.footer-02 {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.footer-02 .info {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.footer-02 .info p strong {
  font-size: 1.1rem;
}
.footer-02 p {
  margin-bottom: 0;
}
.footer-02 a {
  color: var(--light);
  border-bottom: 2px dashed var(--primary);
  font-weight: 600;
}

.footer-03 {
  padding: 5rem 0 0;
  color: #939393;
  background-color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767.98px) {
  .footer-03 {
    text-align: center;
  }
}
.footer-03 .caption {
  font-weight: bolder;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  display: block;
}
.footer-03 .caption::after, .footer-03 .caption::before {
  display: none;
}
@media (max-width: 767.98px) {
  .footer-03 .caption {
    margin: 2rem 0 1rem;
  }
}
.footer-03 a {
  color: #d6d6d6;
}
.footer-03 a:hover {
  color: #969696;
}
.footer-03 img {
  width: 120px;
  max-width: 100%;
}
@media (max-width: 767.98px) {
  .footer-03 img {
    margin: 0 auto;
  }
}
.footer-03 .footer__copyright {
  padding: 3rem 0;
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid #292929;
}
.footer-03 .social {
  font-size: 1.5rem;
  margin-top: 3.6rem;
}
@media (max-width: 767.98px) {
  .footer-03 .social {
    margin-top: 2rem;
  }
}
.footer-03 .social a:nth-child(1) {
  margin-right: 0.6rem;
}

.arrow-to-top.arrow-02,
.home {
  position: fixed;
  right: 3px;
  cursor: pointer;
  text-align: center;
  z-index: 100;
  transition: var(--transition-medium);
}
@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: var(--primary);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
  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: var(--primary-dark);
  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;
  }
}

.popup {
  height: 100%;
  width: 100%;
  margin: 0;
  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: var(--dark);
  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;
}

.crossroad {
  min-height: 100vh;
  background: url("../images/crossroad-background.jpg") center;
  background-color: rgba(0, 0, 0, 0.5);
  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: 320px;
  margin-bottom: 1rem;
}
.crossroad header p.description {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .crossroad header p.description {
    font-size: 1.3rem;
    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: var(--transition-medium);
  border-radius: 5px;
  overflow: hidden;
}
.crossroad .brands .brand .brand-link:hover {
  transform: scale(1.03);
  text-decoration: none;
}
.crossroad .brands .brand.coming-soon .brand-link:hover {
  transform: 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.6rem;
  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;
  opacity: 0.8;
}
.crossroad .brands .brand .order {
  position: absolute;
  top: 15px;
  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;
  }
}
.crossroad .brands .brand .order .btn {
  padding: 0.8rem 1.6rem;
}
.crossroad .brands .brand.coming-soon .brand-link {
  pointer-events: none;
  cursor: default;
}
.crossroad .brands .brand.coming-soon .coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 240px;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  z-index: 200;
  pointer-events: all;
  cursor: default;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
.crossroad .brands .brand.coming-soon .coming-soon-overlay p {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  margin: 0;
  padding: 20px;
}
.crossroad .brands .brand.coming-soon .order {
  pointer-events: none;
  z-index: 150;
}
.crossroad .brands .brand.coming-soon .order .btn {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
