@font-face {
  font-family: Tiza;
  src: url('../fonts/tiza.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/Poppins-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aviano Sans;
  src: url('../fonts/Aviano-Sans-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}

:root {
  --font--headings: Tiza, sans-serif;
  --font--body: Poppins, sans-serif;
  --text-dark: #daa773;
  --font--link: "Aviano Sans", sans-serif;
  --text-link: var(--text-dark);
  --black: black;
  --text-light: var(--white);
  --button--dark: transparent;
  --button--colour: var(--text-dark);
  --button--light: #151515;
  --white: #fffbf2;
  --size--s: 2rem;
  --font--display: "Aviano Sans", sans-serif;
  --size--xs: 1rem;
  --size--xxl: 5rem;
  --size--m: 2rem;
  --size--l: 4rem;
  --size--xl: 5rem;
  --font--quote: "Open Sans", sans-serif;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  font-family: var(--font--headings);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

p {
  font-family: var(--font--body);
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  font-family: var(--font--link);
  color: var(--text-link);
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: underline;
}

.button {
  color: var(--black);
  text-align: center;
  background-color: #fffbf200;
  background-image: url('../images/TJ-Main-Button.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6.5rem;
  flex-direction: row;
  place-content: center;
  align-items: center;
  margin: .25rem;
  padding: 1.2rem 1.6rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.button:hover {
  color: var(--text-light);
  background-image: url('../images/TJ-Hovered-Button.png');
}

.button.w--current {
  background-color: #fffbf200;
}

.button.colour {
  background-color: var(--button--dark);
  color: var(--text-light);
}

.button.colour:hover {
  color: var(--button--colour);
  background-color: #fff0;
}

.button.colour.reverse {
  color: var(--text-dark);
  background-color: #3898ec00;
}

.button.colour.reverse:hover {
  background-color: var(--button--colour);
  color: var(--text-light);
}

.button.white {
  background-color: var(--button--dark);
  color: var(--button--light);
  background-image: url('../images/TJ-Main-Button.png');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: cover;
  border-radius: 0;
  margin-bottom: 10px;
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  display: inline-block;
}

.button.white:hover {
  color: var(--white);
  background-color: #8453ff00;
  background-image: url('../images/TJ-Hovered-Button.png');
}

.button.white.reverse {
  color: var(--white);
  background-color: #3898ec00;
  background-image: url('../images/TJ-Hovered-Button.png');
}

.button.white.reverse:hover {
  background-color: var(--button--dark);
  color: var(--button--light);
}

.button.light {
  background-color: var(--button--dark);
  color: var(--white);
  background-image: url('../images/TJ-Hovered-Button.png');
}

.button.light:hover {
  color: var(--text-light);
  background-color: #30303000;
}

.button.light.reverse {
  color: var(--text-light);
  background-color: #3898ec00;
  box-shadow: inset 0 0 0 2px #fff;
}

.button.light.reverse:hover {
  background-color: var(--button--light);
  color: var(--text-dark);
}

.button.dark-version {
  font-family: var(--font--body);
  color: var(--text-light);
  background-image: url('../images/TJ-Secondary-Button.png');
  background-size: cover;
}

.button.dark-version:hover {
  background-image: url('../images/TJ-Hovered-Button.png');
}

.button.dark-version.w--current {
  background-color: #fff0;
  background-size: cover;
}

.button.dark-version.g-recaptcha {
  border-style: none;
  border-width: 0;
  border-color: #0000 var(--button--dark) #0000 #0000;
  border-radius: 8rem;
}

.button.light-version.w--current {
  background-color: #fffbf200;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 2rem;
  position: relative;
}

.section.padding-h-medium {
  padding-top: var(--size--s);
  padding-bottom: var(--size--s);
}

.section.relative {
  position: relative;
}

.section.paralax {
  background-image: url('../images/placeholder.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.section.about {
  margin-top: 10rem;
}

.section.menu-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

.flex-h {
  display: flex;
}

.h1.dark {
  color: var(--text-dark);
}

.h1.light {
  color: var(--text-light);
}

.h1.light.margin-bottom-m {
  color: var(--black);
}

.h1.margin-bottom-s {
  color: var(--text-dark);
}

.h1.margin-bottom-s.category-button {
  text-decoration: none;
}

.h1.margin-bottom-s.category-button:hover {
  color: var(--text-dark);
  font-size: 3.5rem;
  text-decoration: none;
}

.h1.margin-bottom-s.flex-h-center, .h1.margin-bottom-s.flex-h-center:hover {
  text-decoration: none;
}

.h1.brown {
  color: var(--text-dark);
  font-size: 3rem;
}

.h4 {
  font-family: var(--font--display);
  color: var(--text-dark);
}

.h4.text-align-centre {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.h4.text-medium.left, .h4.left {
  text-align: left;
}

.padding-h-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.text-large {
  font-size: 1.25rem;
}

.text-large.dark {
  color: var(--text-dark);
}

.text-large.light {
  color: var(--text-light);
}

.text-medium {
  font-size: 1.125rem;
}

.text-medium.dark {
  color: var(--text-dark);
}

.text-medium.light {
  color: var(--text-light);
}

.text-regular {
  font-size: 1rem;
}

.text-regular.dark {
  color: var(--text-dark);
}

.text-regular.light {
  color: var(--text-light);
  font-size: var(--size--xs);
}

.text-regular.text-align-centre {
  color: var(--button--light);
  font-size: var(--size--xs);
  font-weight: 400;
  line-height: 2.5;
}

.text-regular.text-align-centre.white {
  color: var(--text-light);
}

.text-regular.black {
  color: var(--button--light);
}

.text-regular.left {
  text-align: left;
}

.text-small {
  font-size: .875rem;
}

.text-small.dark {
  color: var(--text-dark);
}

.text-small.light {
  color: var(--text-light);
}

.text-align-centre {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.container-medium {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  grid-column-gap: 8rem;
  grid-row-gap: 8rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-3 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.grid-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr .85fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.grid-6 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-12 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-1 {
  grid-column-gap: var(--size--s);
  grid-row-gap: var(--size--s);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-large {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: static;
}

.container-large.padding-top {
  margin-top: 4rem;
}

.container-large.padding-top.top-and-bottom-margin {
  margin-top: 8rem;
  margin-bottom: 6rem;
}

.style-guide-body {
  background-color: #e4e4e4;
}

.section-full-screen {
  width: 100%;
  height: 100svh;
}

.section-footer {
  padding: 12rem 5% var(--size--xxl);
  background-color: var(--button--light);
}

.nav-padding {
  width: 100svw;
  height: 4rem;
}

.navbar {
  grid-column-gap: 73%;
  grid-row-gap: 73%;
  background-color: #ddd0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: fixed;
}

.brand {
  height: 100%;
  padding-bottom: 0;
}

.image {
  object-fit: cover;
  height: 5rem;
  margin: 1rem;
}

.nav-link {
  color: var(--text-link);
  font-size: var(--size--xs);
  line-height: var(--size--xs);
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 0;
  transition: all .2s;
}

.nav-link:hover {
  color: var(--black);
  -webkit-text-stroke-color: var(--black);
}

.nav-link.w--current {
  color: var(--text-link);
}

.nav-link.w--current:hover {
  color: var(--black);
}

.nav-link.brown {
  color: var(--text-dark);
}

.nav-menu {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  object-fit: contain;
  background-color: #fffbf2;
  border-radius: 20px;
  flex-flow: row;
  flex: 0 auto;
  place-content: center flex-end;
  align-items: stretch;
  width: 10%;
  margin-top: 8rem;
  margin-right: 100px;
  padding: 2rem 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
  box-shadow: 0 2px 5px #0003;
}

.menu-button {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 1rem;
  display: flex;
}

.menu-button.w--open {
  background-color: #c8c8c800;
}

.icon {
  color: var(--text-dark);
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 2rem;
  display: block;
}

.footer-logo {
  object-fit: contain;
  width: 100%;
  height: 10rem;
}

.margin-top-xs {
  margin-top: var(--size--xs);
}

.margin-top-s {
  margin-top: var(--size--s);
}

.margin-top-m {
  margin-top: var(--size--m);
}

.margin-top-l {
  margin-top: var(--size--l);
}

.margin-top-xl {
  margin-top: var(--size--xl);
}

.margin-top-xxl {
  margin-top: var(--size--xxl);
}

.margin-bottom-xs {
  margin-bottom: var(--size--xs);
}

.margin-bottom-s {
  margin-bottom: var(--size--s);
}

.margin-bottom-m {
  margin-bottom: var(--size--m);
}

.margin-bottom-l {
  margin-bottom: var(--size--l);
}

.margin-bottom-xl {
  margin-bottom: var(--size--xl);
}

.margin-bottom-xxl {
  margin-bottom: var(--size--xxl);
}

.margin-xs {
  margin: var(--size--xs);
}

.margin-s {
  margin: var(--size--s);
}

.margin-m {
  margin: var(--size--m);
}

.margin-l {
  margin: var(--size--l);
}

.margin-xl {
  margin: var(--size--xl);
}

.margin-xxl {
  margin: var(--size--xxl);
}

.margin-left-xs {
  margin-left: var(--size--xs);
}

.margin-left-s {
  margin-left: var(--size--s);
}

.margin-left-m {
  margin-left: var(--size--m);
}

.margin-left-l {
  margin-left: var(--size--l);
}

.margin-left-xl {
  margin-left: var(--size--xl);
}

.margin-left-xxl {
  margin-left: var(--size--xxl);
}

.margin-right-xs {
  margin-right: var(--size--xs);
}

.margin-right-s {
  margin-right: var(--size--s);
}

.margin-right-m {
  margin-right: var(--size--m);
}

.margin-right-l {
  margin-right: var(--size--l);
}

.margin-right-xl {
  margin-right: var(--size--xl);
}

.margin-right-xxl {
  margin-right: var(--size--xxl);
}

.margin-vertical-xs {
  margin-top: var(--size--xs);
  margin-bottom: var(--size--xs);
}

.margin-vertical-s {
  margin-top: var(--size--s);
  margin-bottom: var(--size--s);
}

.margin-vertical-m {
  margin-top: var(--size--m);
  margin-bottom: var(--size--m);
}

.margin-vertical-l {
  margin-top: var(--size--l);
  margin-bottom: var(--size--l);
}

.margin-vertical-xl {
  margin-top: var(--size--xl);
  margin-bottom: var(--size--xl);
}

.margin-vertical-xxl {
  margin-top: var(--size--xxl);
  margin-bottom: var(--size--xxl);
}

.margin-horizontal-xs {
  margin-right: var(--size--xs);
  margin-left: var(--size--xs);
}

.margin-horizontal-s {
  margin-right: var(--size--s);
  margin-left: var(--size--s);
}

.margin-horizontal-m {
  margin-right: var(--size--m);
  margin-left: var(--size--m);
}

.margin-horizontal-l {
  margin-right: var(--size--l);
  margin-left: var(--size--l);
}

.margin-horizontal-xl {
  margin-right: var(--size--xl);
  margin-left: var(--size--xl);
}

.margin-horizontal-xxl {
  margin-right: var(--size--xxl);
  margin-left: var(--size--xxl);
}

.style-guide-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-placeholder {
  object-fit: cover;
  background-image: url('../images/TJX-Socials-May-Week4-Post-01.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
}

.container-full {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper {
  overflow: hidden;
}

.padding-global {
  padding: 5rem 5% 0;
  position: static;
}

.padding-global.margin-vertical-xxl {
  padding-top: 0;
}

.padding-global.margin-vertical-xxl.ingredients-bg {
  background-image: url('../images/TJ-Xpresso-Website-home-menu-BG.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
}

.padding-global.padding-bottom {
  padding-bottom: 8rem;
  overflow: hidden;
}

.padding-global.black-bg {
  background-color: var(--button--light);
}

.padding-global.flex-h-center {
  padding-bottom: 5rem;
}

.flex-v {
  display: flex;
}

.flex-h-top-left {
  align-items: flex-start;
  display: flex;
}

.flex-h-top-right {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.flex-h-bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.flex-h-bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.flex-h-center-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-h-center-right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-h-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-h-top-center {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.flex-h-bottom-center {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.flex-v-top-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.flex-v-top-center {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-v-top-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.flex-v-bottom-right {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.flex-v-bottom-center {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.flex-v-bottom-left {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.flex-v-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flex-v-center-left {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.flex-v-center-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.colour-dark {
  background-color: var(--button--dark);
}

.colour-light {
  background-color: var(--button--light);
}

.colour-brand {
  background-color: var(--button--colour);
}

.navbar-wrap {
  z-index: 5;
  width: 100%;
  position: fixed;
  top: 0;
}

.card {
  padding: var(--size--s);
  background-color: var(--button--light);
  border-radius: 1rem;
  box-shadow: 0 0 19px #0003;
}

.carousel-container {
  border-radius: 0;
  display: flex;
  overflow: hidden;
}

.carousel-container.margin-bottom-l {
  border-radius: 1rem;
  box-shadow: 0 0 20px #0003;
}

.logo-container {
  padding-top: var(--size--s);
  padding-bottom: var(--size--s);
  background-color: var(--button--dark);
  justify-content: space-around;
  min-width: 100.1%;
  display: flex;
}

.logo-container._2 {
  margin-left: -.1%;
}

.logo-image {
  height: 40px;
}

.social-icon {
  color: var(--button--colour);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 2rem;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.social-icon:hover {
  color: var(--button--dark);
  transform: scale(1.2);
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.card-flex-h-distribute {
  padding: var(--size--s);
  background-color: var(--button--light);
  border-radius: 1rem;
  justify-content: space-between;
  display: flex;
  box-shadow: 0 0 19px #0003;
}

.colour-text-brand {
  color: var(--button--colour);
}

.colour-text-light {
  color: var(--button--light);
}

.colour-text-dark {
  color: var(--button--dark);
}

.card-link {
  padding: var(--size--s);
  background-color: var(--button--light);
  color: var(--text-dark);
  border-radius: 1rem;
  text-decoration: none;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  box-shadow: 0 0 19px #0003;
}

.card-link:hover {
  transform: scale(1.05);
}

.section-2-col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._2-col-container {
  padding: var(--size--l) 10%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-2-col {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.div-block {
  box-shadow: none;
  border-radius: 10px;
  padding: 6px;
}

.div-block-2 {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-icon {
  width: .7rem;
  height: .9rem;
  font-size: 1rem;
  line-height: 1rem;
}

.button-text {
  color: var(--white);
}

.button-text:hover {
  color: var(--black);
}

.div-block-3 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cursor-wrapper {
  z-index: 100;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.cursor-dot {
  -webkit-backdrop-filter: invert();
  backdrop-filter: invert();
  background-color: #f070;
  border-radius: 50%;
  width: 0;
  height: 0;
  inset: 0%;
}

.cursor-circle {
  border: 2px solid #ff00773b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
}

.hero-heading {
  font-family: var(--font--headings);
  color: var(--text-light);
  font-size: 10rem;
  font-weight: 400;
  line-height: 11rem;
}

.hero-heading.margin-bottom-s {
  color: var(--text-dark);
  text-align: center;
}

.hero-heading.margin-bottom-s.text-align-centre {
  font-family: var(--font--headings);
  font-size: 4rem;
  line-height: 5rem;
}

.hero-heading.margin-bottom-s.menu-header {
  font-size: var(--size--l);
}

.nav-menu-wrapper {
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.div-block-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.accordian-wrapper {
  border-radius: 1rem;
  box-shadow: 0 0 19px #0003;
}

.accordian {
  cursor: pointer;
}

.accordian-header {
  padding: var(--size--s);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.accordian-panel {
  padding-right: var(--size--s);
  padding-left: var(--size--s);
  display: block;
  overflow: hidden;
}

.accordian-icon {
  width: .7rem;
  height: .9rem;
  font-size: 1rem;
  line-height: 1rem;
  transform: rotate(90deg);
}

.accordian-icon-wrapper {
  margin-left: 2rem;
}

.card-image {
  background-color: var(--button--light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 19px #0003;
}

.card-content-padding {
  padding: var(--size--s);
}

.card-image-content {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.quote {
  color: var(--text-light);
  text-align: center;
}

.quote-mark {
  opacity: .2;
}

.quote-mark.left {
  margin-right: 1rem;
}

.quote-mark.right {
  margin-left: 1rem;
}

.div-block-5 {
  width: 100%;
  height: 100%;
  position: relative;
}

.section-image {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.section-image-static {
  z-index: -1;
  object-fit: cover;
  width: 100svw;
  height: 100svh;
  position: fixed;
  inset: 0;
}

.content-divider {
  background-color: var(--button--colour);
  width: 100%;
  height: 1px;
}

.custom-heading-1 {
  color: #3330;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: var(--button--colour);
  word-break: normal;
  font-size: 13rem;
  font-weight: 400;
  line-height: .8;
}

.process-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.background-video {
  box-sizing: content-box;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-margarita-pizza {
  max-width: 70%;
  max-height: 100svh;
}

.bg-border {
  z-index: auto;
  background-image: url('../images/TJ-Xpresso-Website-Border-Desktop.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  width: 100%;
  height: 10rem;
  max-height: 25rem;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-6 {
  background-image: url('../images/Margarita.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: flex-start;
  height: 75vh;
  display: block;
  position: static;
}

.tabs-menu {
  z-index: 2;
  grid-column-gap: 78px;
  grid-row-gap: 78px;
  text-align: center;
  vertical-align: middle;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tabs-menu.tabs-home-header {
  position: absolute;
  inset: 0 0% auto;
}

.tabs-menu.tabs-home-header.padding-top {
  margin-top: 1rem;
}

.home-header-manoosh {
  background-image: url('../images/Manoush.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  height: 75vh;
}

.header-pizza-button {
  background-color: #ddd0;
  background-image: url('../images/TJ-Main-Button.png');
  background-position: 50% 70%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 2%;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-right: 30px;
  font-size: 1.5rem;
}

.header-pizza-button.w--current {
  background-color: #ddd0;
}

.text-block {
  color: var(--black);
  text-decoration: none;
}

.text-block:hover {
  color: var(--button--light);
}

.text-block.white {
  color: var(--white);
}

.text-block.white:hover {
  color: var(--black);
}

.text-block-2 {
  box-sizing: content-box;
  font-size: 1.5rem;
  text-decoration: none;
}

.tabs {
  height: 100%;
  padding-left: 10%;
  padding-right: 10%;
}

.tabs.menu {
  padding-left: 0%;
  padding-right: 0%;
}

.menu-pizza-list {
  object-fit: contain;
  object-position: 50% 0%;
  height: 100%;
  position: static;
  inset: 0% 0% auto;
  overflow: visible;
}

.header-pizza-wrapper {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 10px;
  display: flex;
  position: static;
  top: -111px;
  overflow: visible;
}

.shanklish {
  object-fit: contain;
  width: 100%;
  height: 50vh;
  margin-top: 0;
  display: block;
  position: static;
  overflow: hidden;
}

.body {
  background-color: var(--white);
}

.tabs-content {
  object-position: 50% 50%;
  height: 100%;
  position: absolute;
  inset: auto 0% -14%;
}

.tabs-content.menu-content {
  background-color: var(--black);
  padding-bottom: 0;
}

.image-3 {
  object-fit: cover;
}

.heading {
  font-family: var(--font--display);
}

.heading.flex-v-center {
  color: var(--text-link);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.image-4 {
  max-width: 80rem;
  margin-top: 5%;
  margin-bottom: 5%;
}

.image-5 {
  box-sizing: border-box;
  text-align: left;
  object-fit: contain;
  max-width: 100%;
  display: block;
}

.arrow {
  object-fit: cover;
  max-width: 40%;
}

.section-2 {
  background-color: var(--button--light);
  padding-top: 5rem;
  padding-bottom: 10rem;
  position: relative;
}

.border-top {
  object-fit: fill;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  max-height: 30%;
  position: absolute;
  inset: -15% 0% auto;
}

.link {
  color: var(--button--light);
}

.link:hover {
  color: var(--text-link);
}

.link-block {
  text-decoration: none;
}

.catering-pizza {
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-image: url('../images/TJ-Xpresso-Website-Assets-Catering-Shankish-Pizza.png');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-clip: border-box;
  width: 100%;
  height: 100%;
}

.image-6 {
  object-position: 50% 100%;
  max-height: 20rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-7 {
  object-position: 50% 100%;
  max-height: 20rem;
  position: absolute;
  inset: auto 0% 1% auto;
}

.grid-13 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.pizza-header {
  background-image: url('../images/Margarita.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: visible;
}

.image-8 {
  object-fit: contain;
  object-position: 50% 0%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-9, .image-10 {
  object-fit: contain;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section-3 {
  position: relative;
}

.menu-pizza-border {
  z-index: 1;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  max-height: 10%;
  position: absolute;
  inset: 9% 0% auto;
}

.div-block-8 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 50%;
  background-image: url('../images/TJ-Xpresso-Website-Menu-BG.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100vh;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
}

.menu-bg {
  background-image: url('../images/TJ-Xpresso-Website-Menu-BG.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 115vh;
  margin-left: 2rem;
  margin-right: 2rem;
}

.menu-bg.text-align-centre {
  z-index: 2;
  box-sizing: border-box;
  object-fit: contain;
  object-position: 50% 50%;
  background-position: 50%;
  background-size: auto;
  max-width: 100%;
  height: 120vh;
  margin-top: 4rem;
  margin-left: 4rem;
  margin-right: 4rem;
  padding: 2rem;
  position: relative;
  top: 40px;
}

.menu-pizza.text-align-centre {
  z-index: 2;
  position: absolute;
  inset: -18% 0% auto;
}

.image-11 {
  z-index: 2;
  vertical-align: middle;
  width: auto;
  max-width: 15rem;
  position: static;
  inset: 0% 0% 175px;
  overflow: hidden;
}

.paragraph {
  font-family: var(--font--display);
}

.paragraph.black {
  color: var(--button--light);
}

.quick-stack {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  object-fit: contain;
  padding-bottom: 20rem;
  padding-left: 20rem;
  padding-right: 20rem;
  position: static;
}

.section-4 {
  background-color: var(--button--light);
}

.container {
  object-fit: cover;
  background-image: url('../images/TJ-Xpresso-Website-Menu-BG.webp');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 100vh;
}

.container-pizza-menu {
  object-fit: fill;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  width: 100vw;
  max-width: 100%;
  height: 43vh;
  padding-bottom: 0;
  overflow: hidden;
}

.grid-14 {
  box-sizing: border-box;
  grid-column-gap: 31px;
  grid-row-gap: 31px;
  object-fit: fill;
  grid-template-rows: auto auto auto;
  grid-template-columns: 7.5fr 3.5fr 9.25fr .5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch;
  place-items: stretch stretch;
  margin: 10rem 4rem 2rem;
  padding-right: 0;
  display: grid;
  position: static;
  inset: 25% 0% auto;
}

.grid-14.menu-bg-phone {
  background-size: cover;
  background-attachment: scroll;
}

.div-block-9 {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 30%;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.div-block-9.flex-h-center {
  position: static;
}

.image-12 {
  width: 30rem;
}

.menu-icon-wrapper {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
  overflow: clip;
}

.image-13 {
  z-index: 2;
  width: 25rem;
  position: relative;
  top: -143px;
}

.container-pides-menu {
  background-image: url('../images/TJ-Xpresso-Website-Menu-BG.webp');
  background-position: 50%;
  background-size: cover;
  width: 100vw;
  max-width: 100%;
  height: 45vh;
}

.div-block-10 {
  z-index: 2;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  max-height: 30%;
  position: absolute;
  inset: -38% 0% auto;
}

.image-14 {
  width: 25rem;
  position: relative;
  top: -128px;
}

.image-15 {
  width: 20rem;
}

.div-block-11 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: -28% 0% auto;
}

.div-block-12 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: static;
}

.image-16 {
  width: 1920px;
  height: 1000px;
  position: relative;
}

.menu-bg-desktop {
  aspect-ratio: 1920 / 1300;
  opacity: 1;
  object-fit: fill;
  position: relative;
  overflow: hidden;
}

.container-2 {
  position: absolute;
}

.image-18 {
  display: none;
}

.grid-15 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-16 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.tabs-content-2 {
  background-color: var(--button--light);
}

.tabs-menu-list {
  background-color: var(--button--light);
  margin-top: .125rem;
}

.div-block-13 {
  mix-blend-mode: normal;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-tabs-wrapper {
  position: relative;
}

.menu-tab-border {
  z-index: 1;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 9.3rem;
  position: absolute;
  inset: -4% 0% auto;
}

.menu-desktop-bg {
  aspect-ratio: 1920 / 600;
  object-fit: fill;
  height: 40%;
  margin-top: auto;
}

.image-19 {
  display: none;
}

.container-3 {
  position: absolute;
  inset: -37% 0% auto;
}

.grid-17 {
  grid-template-columns: 40% 27% 186% 40% 50%;
  position: static;
}

.container-4 {
  position: absolute;
  inset: 34% 0% auto;
}

.grid-18 {
  grid-template-columns: 2.5fr 1fr 1fr 2.5fr 1fr;
}

.div-block-14 {
  width: 100%;
  height: 100%;
  margin-top: 8rem;
  position: relative;
}

.pizza-menu-wrapper {
  aspect-ratio: 1000;
  background-color: var(--white);
  object-fit: fill;
  max-width: 100%;
  height: 60vh;
  max-height: 100%;
  position: relative;
  inset: 14% 0% auto;
}

.pizza-menu-wrapper.flex-h-center-left {
  aspect-ratio: auto;
  background-color: var(--white);
  object-position: 50% 100%;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  height: 50rem;
}

.grid-19 {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1.75fr .5fr 1fr 1.75fr .5fr;
}

.image-20 {
  max-width: 18rem;
  position: relative;
  inset: 0% 0% auto;
}

.div-block-15 {
  position: absolute;
}

.div-block-15.flex-h-center {
  z-index: 1;
  width: 100%;
  inset: -14% 0% auto;
}

.image-21 {
  max-width: 18rem;
  position: relative;
}

.pides-menu-wrapper {
  aspect-ratio: auto;
  background-color: var(--white);
  border-radius: 20px;
  justify-content: center;
  align-items: flex-start;
  max-width: 70%;
  height: 25rem;
  max-height: 100%;
  display: flex;
  position: relative;
}

.div-block-16 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: -37% 0% auto;
}

.image-22 {
  max-width: 18rem;
  position: relative;
}

.rolls-menu-wrapper {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  height: 35rem;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-20 {
  grid-column-gap: 31px;
  grid-row-gap: 31px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 7.5fr 3.5fr 9.25fr .75fr;
  margin: 12rem 6rem 2rem;
}

.image-23 {
  max-width: 100rem;
  height: 22rem;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-24 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
  width: 100%;
  max-width: 100%;
  height: 30%;
  position: absolute;
  inset: auto 0% 0%;
}

.image-25 {
  box-sizing: border-box;
  object-fit: fill;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  max-height: none;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-17 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.catering-tabs {
  flex-flow: column;
  display: flex;
}

.tabs-content-3 {
  margin-top: 4rem;
  display: block;
}

.image-26 {
  max-width: 50%;
}

.div-block-18 {
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.div-block-19 {
  margin-top: 2rem;
}

.list {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 20rem;
  display: flex;
}

.tabs-menu-2 {
  grid-column-gap: 55px;
  grid-row-gap: 55px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-27, .image-28 {
  max-width: 50%;
}

.heading-10 {
  color: #676e4b;
  text-align: center;
  -webkit-text-stroke-color: #676e4b;
  margin-top: 0;
  font-size: 25px;
  line-height: 36px;
}

.heading-10.contact-us-page {
  color: var(--text-dark);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 86px;
  font-size: 40px;
}

.field-label-3 {
  color: #676e4b;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-success-message {
  background-color: #12b878;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.last-name {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.last-name:hover {
  border-color: #e3e6eb;
}

.last-name:active, .last-name:focus {
  border-color: #43464d;
}

.last-name::placeholder {
  color: #32343a66;
}

.last-name.cc-contact-field {
  margin-bottom: 25px;
}

.last-name.cc-textarea {
  height: 200px;
  padding-top: 12px;
}

.get-in-touch-form {
  flex-direction: column;
  display: flex;
}

.div-block-20 {
  margin-top: 0;
}

.select-field {
  color: #1a1b1f;
  background-color: #fff;
  height: 40px;
  padding-bottom: 10px;
}

.button-2 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #676e4b;
  border-radius: 0;
  margin-right: 0;
  padding: 12px 60px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button-2:hover {
  color: #676e4b;
  background-color: #fff;
  border: 1px solid #676e4b;
}

.button-2:active {
  background-color: #43464d;
}

.contact-name-field-wrap {
  width: 50%;
  padding-right: 10px;
}

.form {
  margin-bottom: 10rem;
}

.credentials-inputs-wrap {
  display: flex;
}

.image-59 {
  text-align: center;
  margin-top: 0;
  padding-bottom: 0;
}

.get-in-touch-form-wrap {
  flex-direction: column;
  align-items: stretch;
  width: 70%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.email-name-field-wrap {
  width: 50%;
  padding-left: 10px;
}

.form-label {
  color: var(--text-dark);
  font-family: Aviano Sans, sans-serif;
  font-weight: 400;
}

.form-field {
  border-style: solid;
  border-width: 1px;
  border-color: var(--button--dark) var(--button--dark) var(--text-dark);
  background-color: var(--white);
  font-family: var(--font--body);
  color: var(--text-dark);
  font-size: var(--size--xs);
  line-height: var(--size--s);
  margin-bottom: 20px;
}

.form-field.text-align-centre {
  border-top-color: var(--text-dark);
  border-right-color: var(--text-dark);
  border-left-color: var(--text-dark);
  height: 135px;
  max-height: 100%;
  margin-top: 40px;
  overflow: auto;
}

.div-block-21 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-22 {
  width: 30%;
  max-width: 100%;
}

.div-block-23 {
  width: 70%;
  max-width: 100%;
}

.column {
  flex-flow: column;
  display: flex;
}

.div-block-24 {
  z-index: 2;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20%;
  max-height: 100%;
  position: absolute;
  inset: auto 0% -11%;
}

.section-5 {
  margin-bottom: 12rem;
  position: relative;
}

.div-block-25 {
  z-index: 2;
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 15rem;
  position: absolute;
  inset: auto 0% -37%;
}

.container-5 {
  flex-flow: column;
  justify-content: space-around;
  align-items: stretch;
  width: 70%;
  max-width: 100%;
  display: flex;
}

.div-block-26 {
  margin-top: 2rem;
}

.columns {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.section-6 {
  margin-bottom: 10rem;
}

.form-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
  display: flex;
}

.icon-embed-custom {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.footer-icon-text-wrap {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.icon-embed-custom-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.footer-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  text-decoration: none;
}

.footer-text.dark {
  color: var(--text-dark);
}

.footer-text.light {
  color: var(--text-light);
  font-size: var(--size--xs);
}

.footer-text.text-align-centre {
  color: var(--button--light);
  font-size: var(--size--xs);
  font-weight: 400;
  line-height: 2.5;
}

.footer-text.text-align-centre.white {
  color: var(--text-light);
}

.footer-text.black {
  color: var(--button--light);
}

.footer-text.left {
  text-align: left;
}

.icon-embed-custom-3, .icon-embed-custom-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.icon-embed-small {
  color: var(--button--colour);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: all .275s;
  display: flex;
}

.icon-embed-small:hover {
  color: var(--white);
  transform: scale(1.1);
}

.icon-embed-small-2 {
  color: var(--button--colour);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: color .2s;
  display: flex;
}

.icon-embed-small-2:hover {
  color: var(--white);
}

.div-block-28 {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: row;
  width: 85%;
  margin-top: 1rem;
  display: flex;
}

.home-menu-pizza-icon {
  transition: all .2s;
}

.home-menu-pizza-icon:hover {
  transform: scale(1.1);
}

.home-menu-rolls-icon {
  transition: all .2s;
}

.home-menu-rolls-icon:hover {
  transform: scale(1.1);
}

.home-menu-pides-icon {
  transition: all .2s;
}

.home-menu-pides-icon:hover {
  transform: scale(1.1);
}

.link-block-2, .link-block-3, .link-block-4 {
  text-decoration: none;
}

.form-3 {
  height: 100%;
  margin-top: 70px;
}

.border-contact {
  background-image: url('../images/TJ-Xpresso-Website-Border-Top.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 15rem;
  position: absolute;
  inset: auto 0% -85%;
}

.form-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-29, .div-block-30 {
  flex: 1;
}

.catering-form {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  display: grid;
}

.text-block-3 {
  margin-top: 10px;
}

.success-message {
  background-color: var(--button--colour);
  font-family: var(--font--body);
  font-size: var(--size--xs);
  line-height: var(--size--s);
  border-radius: 50px;
  margin-top: 30px;
}

.success-message-2 {
  background-color: var(--button--colour);
}

.error-message {
  font-family: var(--font--body);
  font-size: var(--size--xs);
  line-height: var(--size--s);
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .h1.margin-bottom-s {
    overflow: hidden;
  }

  .h1.margin-bottom-s.category-button {
    font-size: 3.25rem;
    overflow: visible;
  }

  .h1.margin-bottom-s.category-button:hover {
    font-size: 3.25rem;
  }

  .h1.margin-bottom-s.flex-h-center {
    font-size: var(--size--s);
  }

  .grid-2 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .grid-3 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row;
    place-content: space-between;
    overflow: visible;
  }

  .grid-1 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .container-large {
    position: static;
  }

  .container-large.padding-top {
    margin-top: 4rem;
  }

  .container-large.padding-top.menu-page-padding-bottom {
    margin-bottom: 4rem;
  }

  .padding-global.padding-bottom {
    overflow: hidden;
  }

  .padding-global.black-bg {
    object-fit: fill;
  }

  .navbar-wrap {
    position: fixed;
    inset: 0% 0% auto;
  }

  .logo-image {
    height: 30px;
  }

  .cursor-wrapper {
    display: none;
  }

  .hero-heading {
    font-size: 7rem;
    line-height: 8rem;
  }

  .hero-heading.margin-bottom-s.text-align-centre {
    font-size: 5rem;
    line-height: 7rem;
    overflow: hidden;
  }

  .background-video {
    flex-flow: column;
    justify-content: center;
    height: 100svh;
    display: flex;
    position: relative;
  }

  .bg-border {
    background-image: url('../images/TJ-Xpresso-Website-Border-Tablet.webp');
    width: 100%;
    height: 16rem;
    max-height: 13.5rem;
    position: absolute;
    inset: auto 0% -2%;
  }

  .div-block-6 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: flex-start;
    width: 150svw;
    position: relative;
    top: 0;
    right: 170px;
  }

  .tabs-menu.tabs-home-header {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    flex-flow: column;
  }

  .tabs-menu.tabs-home-header.padding-top {
    margin-top: 4rem;
  }

  .tabs {
    margin-top: -50px;
    padding: 0%;
  }

  .menu-pizza-list {
    inset: 0% 0% auto;
  }

  .header-pizza-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: auto;
    max-width: 100svw;
    margin-top: 8%;
    top: -39px;
  }

  .shanklish {
    box-sizing: border-box;
    object-fit: cover;
    max-width: 100rem;
    overflow: hidden;
  }

  .tabs-content {
    inset: auto 0% -33%;
  }

  .image-4 {
    max-width: 100%;
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .border-top {
    object-fit: fill;
    height: 50%;
    max-height: 30%;
    top: -15%;
  }

  .image-6 {
    object-fit: fill;
    object-position: 50% 50%;
    max-height: 8rem;
    position: absolute;
    inset: auto auto -5% 0%;
  }

  .image-7 {
    max-height: 8rem;
    position: absolute;
    inset: auto 0% -6% auto;
  }

  .image-8 {
    width: 100%;
  }

  .menu-pizza-border {
    max-height: 20%;
    inset: 25% 0% auto;
  }

  .div-block-8 {
    box-sizing: border-box;
    object-position: 50% 50%;
    background-size: cover;
    max-width: 100%;
    overflow: hidden;
  }

  .menu-bg.text-align-centre {
    margin-left: 2rem;
    margin-right: 2rem;
  }

  .menu-pizza.text-align-centre {
    top: -20%;
  }

  .image-11 {
    width: 30rem;
    bottom: 149px;
  }

  .quick-stack {
    padding-left: 50px;
    padding-right: 50px;
    top: 0;
  }

  .container-pizza-menu {
    object-fit: cover;
    object-position: 50% 50%;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 100%;
    height: 46vh;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-14 {
    grid-template-columns: 1fr .25fr 1fr .25fr;
    margin-top: 8.4rem;
    margin-left: 5rem;
    margin-right: 4rem;
    inset: 21% 0% auto;
  }

  .div-block-9 {
    left: 35%;
  }

  .image-13 {
    top: -124px;
  }

  .container-pides-menu {
    height: 50vh;
  }

  .div-block-10 {
    background-size: cover;
    max-width: none;
    height: 100vh;
    max-height: 20%;
    inset: -28% 0% auto;
  }

  .div-block-11 {
    top: -22%;
  }

  .menu-bg-desktop {
    aspect-ratio: 1920 / 2800;
    position: relative;
  }

  .menu-bg-desktop.flex-h-center {
    flex-flow: row;
  }

  .image-18 {
    display: none;
  }

  .menu-desktop-bg {
    aspect-ratio: 1920 / 2500;
    margin-top: auto;
  }

  .image-19 {
    display: none;
  }

  .container-4 {
    max-width: 200px;
    position: absolute;
    inset: 29% 0% auto;
  }

  .grid-18 {
    position: absolute;
    inset: 0%;
  }

  .quick-stack-2 {
    position: absolute;
    inset: 0% 0% auto;
  }

  .pizza-menu-wrapper {
    aspect-ratio: auto;
    max-width: 100%;
  }

  .pizza-menu-wrapper.flex-h-center-left {
    max-width: 90%;
  }

  .image-20 {
    max-width: 18rem;
  }

  .div-block-15.flex-h-center {
    inset: -10% 0% auto;
  }

  .pides-menu-wrapper {
    max-width: 90%;
  }

  .rolls-menu-wrapper {
    max-width: 90%;
    height: 45rem;
  }

  .grid-20 {
    margin-left: 5rem;
    margin-right: 4rem;
  }

  .image-23 {
    height: 15rem;
    inset: auto auto 14% 0%;
  }

  .image-24 {
    height: 15rem;
    inset: auto 0% 6% auto;
  }

  .image-25 {
    inset: auto 0% 10%;
  }

  .div-block-17 {
    height: 10%;
    inset: auto 0% 9%;
  }

  .tabs-content-3 {
    display: block;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .button-2 {
    justify-content: center;
  }

  .contact-name-field-wrap {
    width: 100%;
    padding-right: 0;
  }

  .credentials-inputs-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .email-name-field-wrap {
    width: 100%;
    padding-left: 0;
  }

  .div-block-24 {
    inset: auto 0% -8%;
  }

  .div-block-25 {
    height: 10rem;
    inset: auto 0% -52%;
  }

  .columns {
    flex-flow: column;
    display: block;
  }

  .code-embed {
    grid-column-gap: 76px;
    grid-row-gap: 76px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .div-block-27, .column-2 {
    position: static;
  }

  .border-contact {
    inset: auto 0% -76%;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .section {
    z-index: 2;
    margin-top: -85px;
    position: relative;
  }

  .text-large {
    font-size: 1.125rem;
  }

  .text-medium {
    font-size: 1rem;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    text-align: left;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .image {
    height: 2.5rem;
  }

  .image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .card {
    padding-right: var(--size--xs);
    padding-left: var(--size--xs);
  }

  .logo-container {
    min-width: 150%;
  }

  .card-flex-h-distribute, .card-link {
    padding-right: var(--size--xs);
    padding-left: var(--size--xs);
  }

  .section-2-col {
    grid-template-columns: 1fr .5fr;
  }

  .hero-heading {
    font-size: 5rem;
    line-height: 6rem;
  }

  .hero-heading.margin-bottom-s.text-align-centre {
    font-size: 4rem;
    line-height: 5rem;
  }

  .card-image {
    padding-right: var(--size--xs);
    padding-left: var(--size--xs);
  }

  .background-video {
    aspect-ratio: auto;
    height: 100svh;
  }

  .bg-border {
    background-image: url('../images/TJ-Xpresso-Website-Border-Phone.webp');
    background-size: cover;
    width: 100%;
    height: 12.5rem;
    max-height: 12.5rem;
    position: absolute;
    inset: auto 0% 0%;
  }

  .div-block-6 {
    background-image: url('../images/Margarita.webp');
    background-size: auto;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    display: block;
    position: static;
    top: -205px;
    right: 140px;
  }

  .tabs-menu {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
  }

  .tabs-menu.tabs-home-header {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    inset: 4rem 0% auto;
  }

  .header-pizza-button {
    margin-top: 3%;
  }

  .menu-pizza-list {
    height: 100%;
    inset: 0% 0% auto;
  }

  .header-pizza-wrapper {
    justify-content: center;
    align-items: flex-start;
    width: auto;
    margin-top: 10%;
    padding-top: 0;
    padding-right: 0;
    position: static;
    top: -96px;
  }

  .shanklish {
    max-width: 100rem;
  }

  .tabs-content {
    inset: auto 0% -44%;
  }

  .image-2 {
    width: 100%;
    max-width: 130%;
  }

  .border-top {
    height: 12.5rem;
    max-height: 10rem;
    inset: 0% 0% auto;
  }

  .image-6 {
    max-height: 10rem;
    inset: auto 0% 0%;
  }

  .image-7 {
    max-height: 10rem;
    inset: auto 0% 0% auto;
  }

  .menu-pizza-border {
    max-height: 20%;
    inset: 33% 0% auto;
  }

  .menu-pizza.text-align-centre {
    top: -16%;
  }

  .image-11 {
    width: 30rem;
    bottom: 147px;
  }

  .container-pizza-menu {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 40vh;
  }

  .grid-14 {
    grid-template-columns: 1fr .25fr;
    margin-top: 3rem;
    margin-left: 3rem;
    margin-right: 3rem;
    position: absolute;
    inset: 14% 0% auto;
  }

  .div-block-9 {
    width: 50%;
    height: 100%;
    top: -8%;
    left: 28%;
  }

  .image-12 {
    width: 25rem;
  }

  .menu-icon-wrapper {
    top: 0%;
  }

  .image-13 {
    top: -144px;
  }

  .container-pides-menu {
    height: 60vh;
  }

  .div-block-10 {
    background-size: cover;
    max-width: none;
    height: 100vh;
    max-height: 20%;
    inset: -26% 0% auto;
  }

  .div-block-11 {
    top: -17%;
  }

  .image-16 {
    height: 1500px;
  }

  .menu-bg-desktop {
    display: none;
  }

  .image-17 {
    position: relative;
  }

  .image-18 {
    aspect-ratio: 567 / 100;
    object-fit: fill;
    display: inline-block;
    position: relative;
  }

  .menu-tab-border {
    inset: -4% 0% auto;
  }

  .menu-desktop-bg {
    object-fit: cover;
    display: none;
    overflow: hidden;
  }

  .image-19 {
    aspect-ratio: 567 / 1200;
    display: inline-flex;
  }

  .pizza-menu-wrapper {
    max-width: 90%;
    height: 90vh;
    top: 30%;
  }

  .pizza-menu-wrapper.flex-h-center-left {
    max-width: 100%;
    height: 70rem;
  }

  .grid-19 {
    grid-template-columns: 1.75fr .5fr;
  }

  .image-20 {
    max-width: 20rem;
  }

  .div-block-15.flex-h-center {
    position: absolute;
    inset: -12% 0% auto;
  }

  .pides-menu-wrapper {
    max-width: 100%;
  }

  .image-22 {
    max-width: 18rem;
  }

  .rolls-menu-wrapper {
    max-width: 100%;
    height: 45rem;
  }

  .grid-20 {
    grid-template-columns: 7.5fr 3.5fr;
    margin-top: 12rem;
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .image-25 {
    inset: auto 0% 8%;
  }

  .div-block-17 {
    height: 50%;
    inset: auto 0% 14%;
  }

  .tabs-content-3 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-end;
    display: block;
  }

  .image-26 {
    max-width: 50%;
  }

  .div-block-18 {
    flex-flow: row;
    justify-content: space-around;
    align-items: flex-start;
  }

  .list {
    width: 12rem;
  }

  .tabs-menu-2 {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
    flex-flow: row;
  }

  .last-name.cc-contact-field, .last-name.cc-textarea {
    text-align: left;
  }

  .get-in-touch-form-wrap {
    width: 90%;
    max-width: 470px;
  }

  .div-block-21 {
    flex-flow: column;
  }

  .div-block-22 {
    width: auto;
  }

  .div-block-24 {
    max-width: 100%;
    inset: auto 0% -10%;
  }

  .div-block-25 {
    height: 10rem;
    inset: auto 0% -65%;
  }

  .columns {
    grid-column-gap: 54px;
    grid-row-gap: 54px;
    display: flex;
  }

  .code-embed {
    position: static;
  }

  .div-block-27 {
    position: relative;
  }

  .border-contact {
    inset: auto 0% -52%;
  }

  .form-4 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .catering-form {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  .section {
    z-index: 2;
    margin-top: 0;
    position: relative;
  }

  .section.menu-section {
    z-index: 1;
    padding-bottom: 0;
  }

  .h1.margin-bottom-s.flex-h-center {
    flex-flow: column wrap;
  }

  .h4.text-align-centre {
    font-size: 1.5rem;
  }

  .text-regular.text-align-centre {
    line-height: 2;
  }

  .grid-2 {
    flex: 0 auto;
    grid-template-columns: 1fr;
  }

  .grid-3 {
    object-fit: fill;
    grid-auto-flow: row;
    place-content: stretch;
  }

  .container-large {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: static;
  }

  .image {
    height: 2rem;
  }

  .nav-menu {
    z-index: 2;
    height: auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .image-placeholder {
    aspect-ratio: 1;
    min-height: auto;
  }

  .padding-global {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-top: .125rem;
    display: inline-block;
    overflow: visible;
  }

  .padding-global.margin-vertical-xxl {
    flex-flow: column;
    margin-top: 5rem;
    display: inline-flex;
    overflow: visible;
  }

  .padding-global.margin-vertical-xxl.ingredients-bg {
    margin-top: 5rem;
    display: inline-block;
  }

  .padding-global.padding-bottom {
    display: inline-block;
  }

  .padding-global.black-bg {
    margin-top: 0;
  }

  .padding-global.flex-h-center {
    margin-top: 0;
    display: flex;
  }

  .carousel-container {
    border-radius: 0;
  }

  .logo-container {
    min-width: 300%;
  }

  .logo-image {
    height: 25px;
  }

  .section-2-col {
    grid-template-columns: 1fr;
  }

  .image-2-col {
    height: 100svw;
  }

  .hero-heading {
    font-size: 3rem;
    line-height: 4rem;
  }

  .hero-heading.margin-bottom-s.text-align-centre {
    font-size: 1.5rem;
    line-height: 3rem;
  }

  .div-block-4 {
    height: auto;
  }

  .background-video {
    object-fit: contain;
    height: 100svh;
  }

  .bg-border {
    z-index: auto;
    background-image: url('../images/TJ-Xpresso-Website-Border-Phone-Portrait.webp');
    background-position: 50%;
    background-size: cover;
    justify-content: flex-start;
    width: 100%;
    height: 16.4rem;
    max-height: 15.2rem;
    display: flex;
    position: absolute;
    inset: auto 0% -18%;
  }

  .div-block-6 {
    box-sizing: border-box;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: fill;
    background-image: none;
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
    width: auto;
    height: auto;
    margin-top: 0;
    display: flex;
    position: static;
    top: -7px;
    bottom: 0;
    right: 0;
  }

  .tabs-menu.tabs-home-header {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    inset: 4rem 0% auto;
  }

  .header-pizza-button {
    margin-top: 5%;
    position: static;
  }

  .tabs.menu {
    overflow: visible;
  }

  .menu-pizza-list {
    height: 100%;
    position: static;
    inset: -15% 0% auto;
  }

  .header-pizza-wrapper {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    position: static;
    top: -99px;
    right: auto;
  }

  .shanklish {
    width: 35rem;
    max-width: 200rem;
    margin-top: 30px;
    overflow: clip;
  }

  .manoosh {
    object-fit: cover;
    width: 200%;
    max-width: 200%;
    display: block;
    overflow: clip;
  }

  .tabs-content {
    height: 100%;
    inset: auto 0% -70%;
  }

  .image-2 {
    width: 200%;
    max-width: 200%;
    display: block;
    overflow: clip;
  }

  .image-3 {
    width: 200%;
    max-width: 200%;
  }

  .border-top {
    height: 12.5rem;
    max-height: 10rem;
  }

  .image-6 {
    max-height: 8rem;
    inset: auto 0% 0%;
  }

  .image-7 {
    max-height: 8rem;
    inset: auto 0% -9% auto;
  }

  .menu-pizza-border {
    inset: 0% 0% auto;
  }

  .menu-bg.text-align-centre {
    background-image: url('../images/TJ-Xpresso-Website-Menu-BG-Phone.webp');
    background-size: cover;
  }

  .menu-pizza.text-align-centre {
    top: -12%;
  }

  .image-11 {
    width: 30rem;
    bottom: 112px;
  }

  .paragraph.flex-v-center {
    display: block;
  }

  .paragraph.flex-v-center.text-align-centre {
    text-align: left;
  }

  .container-pizza-menu {
    background-size: cover;
    height: 25vh;
  }

  .grid-14 {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    aspect-ratio: auto;
    grid-template-rows: auto auto auto;
    place-content: stretch;
    place-items: stretch stretch;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 1rem;
    position: absolute;
    inset: 13% 0% auto;
  }

  .grid-14.menu-bg-phone {
    aspect-ratio: 567 / 1920;
    background-image: url('../images/TJ-Xpresso-Website-Menu-BG-Phone.webp');
    background-position: 50%;
    background-size: 567px 1920px;
    background-attachment: fixed;
  }

  .image-12 {
    width: 18rem;
  }

  .image-13 {
    top: -86px;
  }

  .div-block-10 {
    background-size: cover;
    max-width: none;
    height: 100vh;
    max-height: 20%;
    inset: -26% 0% auto;
  }

  .image-14 {
    top: -95px;
  }

  .image-18 {
    aspect-ratio: auto;
    object-fit: fill;
    width: 100%;
    height: 100%;
    position: static;
  }

  .image-19 {
    aspect-ratio: 567 / 2300;
  }

  .pizza-menu-wrapper {
    background-image: none;
    max-width: 95%;
    height: 140vh;
  }

  .pizza-menu-wrapper.flex-h-center-left {
    height: 80rem;
    overflow: visible;
  }

  .image-20 {
    max-width: 15rem;
  }

  .div-block-15.flex-h-center {
    inset: -9% 0% auto;
  }

  .pides-menu-wrapper {
    height: 25rem;
  }

  .div-block-16 {
    top: -33%;
  }

  .image-22 {
    max-width: 15rem;
  }

  .rolls-menu-wrapper {
    height: 60rem;
  }

  .grid-20 {
    margin-top: 10rem;
    margin-left: 2rem;
    margin-right: 1rem;
  }

  .image-25 {
    inset: auto 0% 9%;
  }

  .div-block-17 {
    inset: auto 0% 10%;
  }

  .image-26 {
    display: none;
  }

  .div-block-19 {
    text-align: center;
  }

  .tabs-menu-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .image-27 {
    display: none;
  }

  .image-28 {
    flex: 0 auto;
    display: none;
  }

  .heading-10.contact-us-page {
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 36px;
  }

  .get-in-touch-form-wrap {
    width: 100%;
    max-width: none;
  }

  .div-block-24 {
    background-position: 50% 100%;
    inset: auto 0% -7%;
  }

  .div-block-25 {
    height: 10rem;
    inset: auto 0% -106%;
  }

  .columns {
    max-width: 100%;
  }

  .code-embed {
    width: 100%;
  }

  .div-block-27 {
    width: 100%;
    overflow: hidden;
  }

  .footer-text.text-align-centre {
    line-height: 2;
  }

  .border-contact {
    inset: auto 0% -54%;
  }

  .form-4 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
  }

  .catering-form {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }
}

#w-node-_4ce88626-2e3b-c7f9-7d39-1b58e80f0471-2b5d67d2, #w-node-_4ce88626-2e3b-c7f9-7d39-1b58e80f0479-2b5d67d2, #w-node-_8cc5cdc9-eaee-9d84-ae5c-3e6b7615241f-2b5d67d2, #w-node-a8a50494-9087-b2ef-2483-fd2c5d4b789e-2b5d67d2, #w-node-b9c88564-e0a3-0114-d554-ece2a1bfcc96-2b5d67d2, #w-node-_109aea49-809e-d390-4658-fc4248ee45b4-48ee45b1, #w-node-_109aea49-809e-d390-4658-fc4248ee45b6-48ee45b1, #w-node-_109aea49-809e-d390-4658-fc4248ee45b7-48ee45b1, #w-node-_109aea49-809e-d390-4658-fc4248ee45c1-48ee45b1, #w-node-_109aea49-809e-d390-4658-fc4248ee45c2-48ee45b1, #w-node-_684a37e9-bf10-ad84-f5a1-d8c0baeda665-48ee45b1, #w-node-_684a37e9-bf10-ad84-f5a1-d8c0baeda666-48ee45b1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0600fe38-5e04-0f39-7848-a9d107b683d0-2b5d67d3 {
  place-self: auto start;
}

#w-node-_724fa3c2-87d1-b14e-ac5b-21b4e2834527-2b5d67d4, #w-node-_724fa3c2-87d1-b14e-ac5b-21b4e283452f-2b5d67d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a61b47c-b90b-a1e6-63e2-2bc8266e32e5-2b5d67d4 {
  order: -9999;
}

#w-node-_61b1f222-6e55-69f1-d261-05aaa77a8110-2b5d67d4 {
  order: 9999;
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_61b1f222-6e55-69f1-d261-05aaa77a8111-2b5d67d4, #w-node-_07e0b9df-17e4-efae-8a61-5183602de66c-2b5d67d4, #w-node-_07e0b9df-17e4-efae-8a61-5183602de673-2b5d67d4, #w-node-_07e0b9df-17e4-efae-8a61-5183602de67a-2b5d67d4, #w-node-_07e0b9df-17e4-efae-8a61-5183602de682-2b5d67d4, #w-node-_07e0b9df-17e4-efae-8a61-5183602de68c-2b5d67d4, #w-node-_07e0b9df-17e4-efae-8a61-5183602de696-2b5d67d4, #w-node-_2f577732-2760-fff3-dad9-be308eab4bff-2b5d67d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0b68f00-e504-1a04-ba63-57c74fc415ea-446b9e56, #w-node-_3ab93069-504d-1149-2078-832a2728e1d4-446b9e56 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_88891f90-ba35-bf70-223b-3db584d27ac3-446b9e56 {
  grid-area: 2 / 3 / 3 / 5;
  justify-self: end;
}

@media screen and (max-width: 767px) {
  #w-node-_4ce88626-2e3b-c7f9-7d39-1b58e80f0471-2b5d67d2, #w-node-_724fa3c2-87d1-b14e-ac5b-21b4e2834527-2b5d67d4 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0ed18918-9013-d9e3-0bb3-11e4c793d196-02738d4b, #w-node-_986db7f8-fb6f-4563-ff5b-f1811f307000-02738d4b {
    order: 1;
  }

  #w-node-ddfc714b-759d-52d7-2a3b-568524321e62-02738d4b, #w-node-_872ecbf2-d023-3ed6-55b4-8f6b9b50d392-02738d4b {
    order: 2;
  }

  #w-node-_041a5a54-bfe2-68d1-7652-6392b9030ce5-02738d4b {
    order: 3;
  }

  #w-node-be584078-1d1d-d601-6949-42000f8cace2-02738d4b {
    order: 6;
  }

  #w-node-_88891f90-ba35-bf70-223b-3db584d27ac3-446b9e56 {
    grid-area: 3 / 1 / 4 / 3;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_8a61b47c-b90b-a1e6-63e2-2bc8266e32e5-2b5d67d4 {
    order: -9999;
  }

  #w-node-_61b1f222-6e55-69f1-d261-05aaa77a8110-2b5d67d4 {
    order: 9999;
  }

  #w-node-_0ed18918-9013-d9e3-0bb3-11e4c793d196-02738d4b, #w-node-_986db7f8-fb6f-4563-ff5b-f1811f307000-02738d4b {
    order: 2;
  }

  #w-node-ddfc714b-759d-52d7-2a3b-568524321e62-02738d4b, #w-node-_872ecbf2-d023-3ed6-55b4-8f6b9b50d392-02738d4b {
    order: 4;
  }

  #w-node-_041a5a54-bfe2-68d1-7652-6392b9030ce5-02738d4b, #w-node-be584078-1d1d-d601-6949-42000f8cace2-02738d4b {
    order: 6;
  }
}


@font-face {
  font-family: 'Tiza';
  src: url('../fonts/tiza.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aviano Sans';
  src: url('../fonts/Aviano-Sans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}