@font-face {
  font-family: Hubotsanscondensed;
  src: url('../fonts/HubotSansCondensed-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Hubotsanscondensed;
  src: url('../fonts/HubotSansCondensed-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Hubotsans Expanded-Black;
  src: url('../fonts/HubotSansExpanded-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #b50018;
  --white: white;
  --secondary-color: #fcb32c;
  --sauce-red: #ffb889;
  --btn-hover: #ffc65d;
  --deep-red: #8e000e;
  --dark-red: #51000e;
  --mid-red: #db1515;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.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;
}

body {
  background-color: var(--primary-color);
  color: var(--white);
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

a {
  color: var(--white);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: inline-block;
}

.hv-header {
  z-index: 110;
  background-color: var(--primary-color);
  transition: transform .3s;
  position: sticky;
  top: 0;
}

.hv-navbar {
  position: relative;
  box-shadow: 0 4px 11px #00000040;
}

.hv-nav-wrapper {
  justify-content: space-between;
  align-items: center;
  height: 74px;
  display: flex;
}

.hv-nav-menu-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--secondary-color);
  text-transform: uppercase;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-weight: 900;
  display: flex;
}

.hv-nav-logo-block {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 24px);
}

.hv-nav-btn-block {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  display: flex;
}

.hv-search-btn {
  background-color: var(--sauce-red);
  height: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
}

.hv-search-btn:hover {
  background-color: #ffcdab;
}

.hv-order-now-btn {
  background-color: var(--secondary-color);
  height: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
}

.hv-order-now-btn:hover {
  background-color: var(--btn-hover);
}

.hv-main.overflow-hidden {
  overflow: hidden;
}

.hv-hero-section {
  position: relative;
}

.hv-hero-video {
  justify-content: center;
  align-items: center;
  height: 80dvh;
  display: flex;
}

.menu-bg {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.menu-details {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 2.5rem;
  display: flex;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hv-hero-center {
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hv-track-block {
  z-index: 10;
  margin-top: -16px;
  position: absolute;
  top: 0;
}

.track-item {
  display: flex;
  overflow: hidden;
}

.track-item.top {
  transform: rotate(2.3deg);
}

.track-item.bottom {
  z-index: 10;
  position: relative;
  transform: translate(0, -25px)rotate(-2deg);
}

.track-img, .track-img2 {
  margin-left: -2px;
}

.hv-slider-section {
  background-color: var(--deep-red);
  padding-top: 32px;
  padding-bottom: 100px;
  position: relative;
}

.hv-slider {
  background-color: #0000;
  max-width: 92%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hv-slide {
  border-radius: 24px;
  margin-right: 40px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
}

.slider-arrow.none {
  display: none;
}

.slider-arrow.right {
  right: -6%;
}

.slider-arrow.left {
  left: -6%;
}

.slider-nav {
  bottom: -60px;
}

.slider-director {
  z-index: 10;
  max-width: 110px;
  position: absolute;
  inset: auto auto 10px -52px;
}

.slider-image {
  border-radius: 24px;
}

.slider-image.hide-larger-view {
  object-fit: cover;
  width: 100%;
  max-height: 500px;
  display: none;
}

.slider-order-btn {
  background-color: var(--primary-color);
  max-width: 245px;
  height: 52px;
  color: var(--secondary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
  position: absolute;
  inset: auto 0% 28px 50%;
  transform: translate(-50%);
}

.slider-order-btn:hover {
  background-color: var(--deep-red);
}

.hv-menu-section {
  background-image: url('../images/background-pattern.svg');
  background-position: 50%;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 40px;
}

.hv-menu-header {
  justify-content: center;
  align-items: center;
  max-width: 526px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-main-block {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.menu-left-block {
  flex: 1;
  width: 50%;
  position: relative;
}

.menu-right-block {
  z-index: 10;
  flex: 1;
  width: 50%;
  position: relative;
}

.hot-cert {
  z-index: 60;
  max-width: 188px;
  position: absolute;
  inset: -120px auto auto 92px;
}

.menu-item-img {
  position: relative;
}

.menu-item-img.v2 {
  z-index: 40;
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.menu-item-img.v3 {
  z-index: 30;
  opacity: 0;
  position: absolute;
  inset: 0% 0% 0% -40px;
}

.menu-item-img.v4 {
  z-index: 20;
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.menu-item-img.v5 {
  z-index: 10;
  opacity: 0;
  position: absolute;
  inset: 10% 0% 0%;
}

.menu-content-block {
  z-index: 80;
  max-width: 580px;
  position: relative;
}

.menu-heading {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.menu-heading.v5, .menu-heading.v4, .menu-heading.v3 {
  opacity: 0;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-heading.v2 {
  opacity: 0;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-title {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.menu-title.v2, .menu-title.v3, .menu-title.v4, .menu-title.v5 {
  opacity: 0;
  position: absolute;
  inset: 0% 0% auto;
}

.primary-text {
  margin-bottom: 32px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  line-height: 1.1;
}

.primary-text.mb-0 {
  margin-bottom: 0;
}

.primary-text.text-black {
  text-transform: uppercase;
  font-weight: 900;
}

.primary-text.mb-2 {
  margin-bottom: 12px;
}

.primary-text.mb-4 {
  margin-bottom: 16px;
}

.primary-btn {
  background-color: var(--secondary-color);
  height: 52px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: inline-flex;
}

.primary-btn:hover {
  background-color: #ffc65d;
}

.hv-about-section {
  padding-top: 140px;
  padding-bottom: 120px;
  overflow: hidden;
}

.hv-about-main-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.hv-about-content-block {
  z-index: 10;
  max-width: 812px;
  position: relative;
}

.hv-about-heading-block, .hv-text-group {
  margin-bottom: 48px;
}

.hv-soscial-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hv-soical-title {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.hv-social-items {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.hv-social-link {
  background-color: var(--secondary-color);
  width: 52px;
  height: 52px;
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  transition: color .3s;
  display: flex;
}

.hv-social-link:hover {
  color: var(--white);
}

.primary-icon {
  display: flex;
}

.hv-about-animate-wrap {
  flex: 1;
}

.about-animate-file {
  opacity: .75;
  width: 610px;
  height: 610px;
  position: absolute;
  top: -48px;
  right: -24%;
}

.content-gap-medium {
  min-height: 140px;
}

.hv-about-track-block {
  overflow: hidden;
}

.about-track, .about-track-item {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  display: flex;
}

.hv-about-img {
  max-width: 240px;
}

.hv-cta-section {
  background-image: url('../images/cta-background.svg');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: contain;
  padding-top: 40px;
  padding-bottom: 40px;
  transition: background-color .3s;
}

.cta-left-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 56%;
  display: flex;
}

.cta-right-block {
  flex: 1;
  max-width: 40%;
}

.cta-main {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.fired-icon {
  max-width: 86px;
}

.fired-icon.hide-larger-view {
  display: none;
}

.cta-heading {
  text-transform: uppercase;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.highlight-text {
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
}

.highlight-text.brand-color {
  color: var(--secondary-color);
}

.highlight-text.ml-1 {
  margin-right: 4px;
}

.highlight-text.italic {
  font-style: italic;
}

.cta-title {
  color: var(--secondary-color);
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}

.cta-title.hide-larger-view {
  display: none;
}

.hv-input-label {
  margin-bottom: 8px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.hv-input-field {
  height: 46px;
  color: var(--white);
  background-color: #8e000e;
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.hv-input-field:focus {
  border: 1px solid var(--white);
}

.hv-input-field::placeholder {
  color: var(--white);
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.hv-cta-input-group {
  border: 1px solid var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 14px;
  display: flex;
}

.hv-cta-btn {
  border: 1px solid var(--white);
  background-color: var(--secondary-color);
  min-width: 96px;
  height: 46px;
  color: var(--primary-color);
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
}

.hv-cta-btn:hover {
  background-color: #ffc65d;
}

.hv-work-section {
  background-color: var(--deep-red);
  padding-top: 72px;
  padding-bottom: 48px;
  overflow: hidden;
}

.hv-work-main {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hv-content-block {
  z-index: 10;
  position: relative;
}

.hv-work-heading {
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.hv-img-mask {
  max-width: 432px;
  max-height: 508px;
  overflow: hidden;
  transform: translate(0, -48px)rotate(17deg);
}

.hv-work-img {
  transform: scale(1.1)rotate(-20deg);
}

.footer {
  background-color: var(--dark-red);
  background-image: url('../images/footer_logo.svg');
  background-position: 50% 30%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.hv-checkboc-field {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 10px;
  display: flex;
}

.hv-checkbox-text {
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.hv-checkbox {
  border: 1px solid var(--white);
  background-color: #8e000e;
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 0;
}

.hv-checkbox.w--redirected-checked {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  background-image: url('../images/check.svg');
  background-position: 50%;
  background-size: 20px;
}

.hv-checkbox.w--redirected-focus {
  box-shadow: none;
}

.hv-footer-wrapper {
  justify-content: space-between;
  display: flex;
}

.hv-footer-right {
  max-width: 554px;
}

.footer-social-block {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  justify-content: flex-end;
  margin-bottom: 40px;
  display: flex;
}

.footer-social-block.show-smaller-view {
  display: none;
}

.footer-social-link {
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  transition: color .3s;
  display: flex;
}

.footer-social-link:hover {
  color: var(--secondary-color);
}

.footer-content-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 12px;
  display: flex;
}

.footer-info-heading {
  text-transform: uppercase;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.footer-info-title {
  color: var(--secondary-color);
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.footer-heading {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-fired-icon {
  max-width: 30px;
}

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

.footer-link-text {
  z-index: 20;
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  text-transform: uppercase;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 48px;
  line-height: 1.25;
  transition: color .3s;
  position: relative;
}

.footer-link-text:hover {
  color: #fcb32c;
}

.footer-link {
  position: relative;
  overflow: hidden;
}

.ignore-form-block {
  margin-bottom: 0;
}

.ignore-form-block.mb-5 {
  margin-bottom: 20px;
}

.footer-copyright-text {
  text-align: right;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

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

.scroll-wrapper {
  height: 500vh;
}

.sticky-block {
  flex-flow: column;
  justify-content: center;
  display: flex;
  position: sticky;
  top: 13vh;
}

.menu-text {
  margin-bottom: 32px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  line-height: 1.1;
}

.menu-text.v4, .menu-text.v5, .menu-text.v3, .menu-text.v2 {
  opacity: 0;
  position: absolute;
  inset: 0% 0% auto;
}

.hv-inner-hero-section {
  height: 360px;
}

.hv-inner-hero-section.store {
  background-image: url('../images/inner-hero-background.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 106px;
  padding-bottom: 72px;
}

.hv-inner-hero-section.store-inner {
  background-image: url('../images/background-pattern.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 106px;
  padding-bottom: 72px;
}

.inner-hero-block {
  justify-content: space-between;
  display: flex;
}

.inner_hero-left {
  max-width: 594px;
}

.inner_hero-right {
  pointer-events: none;
  position: relative;
}

.inner_hero-heading {
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.inner_hero-heading.mb-0 {
  margin-bottom: 0;
}

.hero_search-wrap {
  max-width: 80%;
  display: flex;
}

.hero_search-input {
  height: 46px;
  color: var(--primary-color);
  margin-bottom: 0;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.hero_search-input:focus {
  border: 1px #000;
}

.hero_search-input::placeholder {
  color: var(--primary-color);
  font-size: 16px;
}

.hero-search-btn {
  background-color: var(--secondary-color);
  height: 46px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 8px 30px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  transition: background-color .3s;
  display: flex;
}

.hero-search-btn:hover {
  background-color: #ffc65d;
}

.inner_hero-mask {
  max-width: 340px;
  overflow: hidden;
  transform: translate(0, -80px)rotate(17deg);
}

.inner_hero-image {
  transform: scale(1.1)rotate(-20deg);
}

.inner_hero-gif {
  max-width: 200px;
  position: absolute;
  inset: 4% auto auto -40%;
}

.inner_hero-gif.show {
  display: none;
}

.hv-store-section {
  background-color: var(--deep-red);
  padding-top: 80px;
  padding-bottom: 80px;
}

.hv-store-item {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.hv-store-content-block {
  flex: 1;
}

.hv-store-btn {
  justify-content: flex-start;
  align-items: center;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 18px;
  display: flex;
}

.store-location-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--secondary-color);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

.hv-store-title {
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.store-opening-time {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33333;
}

.store-btn-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.deliver-btn {
  background-color: #050505;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 12px 22px;
  display: flex;
}

.store-contact-btn {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--secondary-color);
  height: 40px;
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  padding: 12px 14px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 18px;
  display: flex;
}

.hv-store-divider {
  border: 1px dashed var(--dark-red);
  height: 1px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.store-road-text {
  margin-bottom: 16px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.33333;
}

.store-road-text.mb-0 {
  margin-bottom: 0;
}

.store-opening-banner-wrap {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.opening-banner {
  flex: none;
}

.socials-row {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  display: flex;
}

.menu-button-icon {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.code-embed-js {
  pointer-events: none;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.menu-button {
  grid-column-gap: .625em;
  grid-row-gap: .625em;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.menu-button.close {
  z-index: 100;
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  position: absolute;
  inset: 24px auto auto 40px;
}

.icon-wrap {
  transition: transform .4s cubic-bezier(.65, .05, 0, 1);
}

.nav {
  z-index: 10000;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: fixed;
  inset: 0%;
}

.menu-inner {
  z-index: 1;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  padding-top: 3rem;
  display: flex;
  position: relative;
  overflow: auto;
}

.code-embed-css {
  pointer-events: none;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.menu {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 24em;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bg-panel {
  z-index: 0;
  background-color: #fcb32c;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  position: absolute;
  inset: 0%;
}

.bg-panel.second {
  background-color: #db1515;
}

.bg-panel.first {
  background-color: #f33a24;
}

.menu-list {
  flex-flow: column;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.overlay {
  z-index: 0;
  cursor: pointer;
  background-color: #b5001833;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu-button-text {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.menu-button-text.close {
  justify-content: flex-start;
  align-items: flex-start;
}

.menu-social-block {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  display: flex;
}

.hv-nav-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.menu-list-item {
  height: 64px;
  position: relative;
  overflow: hidden;
}

.menu-link {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  width: 100%;
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 2em;
  text-decoration: none;
  display: flex;
}

.menu-link-heading {
  z-index: 1;
  color: #b50018;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .55s cubic-bezier(.65, .05, 0, 1);
  position: relative;
}

.menu-link-bg {
  z-index: 0;
  background-color: var(--primary-color);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.65, .05, 0, 1);
  position: absolute;
  inset: 0%;
  transform: scale3d(1, 0, 1);
}

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

.brand-color.text-italic {
  font-style: italic;
}

.brand-color.text-italic.ml-1 {
  margin-right: 8px;
}

.breadcrumb-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--secondary-color);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.5;
  display: inline-flex;
}

.hv-store-info-section {
  background-color: var(--deep-red);
  padding-top: 80px;
  padding-bottom: 60px;
}

.store-info-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 32px;
  display: flex;
}

.store-address-block {
  background-color: var(--primary-color);
  border-radius: 12px;
  flex: 1;
  padding: 48px;
}

.store-opening-block {
  background-color: var(--secondary-color);
  border-radius: 12px;
  flex: 1;
  max-width: 428px;
  padding: 48px;
}

.store-address-title {
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.store-address-text {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 23px;
  font-weight: 600;
}

.content-block.mb-4 {
  margin-bottom: 16px;
}

.direction-link {
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 18px;
  text-decoration: underline;
  display: inline-flex;
}

.store-opening-title {
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
}

.store-opening-list-block {
  max-width: 220px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44444;
}

.sotre-opening-list-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: var(--dark-red);
  grid-template-rows: auto;
  grid-template-columns: minmax(auto, 100px) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.map-block {
  border-radius: 12px;
}

.container-medium {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.map {
  border-radius: 12px;
  height: 460px;
}

.hv-review-section {
  background-color: var(--deep-red);
  padding-bottom: 40px;
}

.review-heading-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.review-animate-heading {
  height: 34px;
}

.menu_hero-section {
  background-image: url('../images/background-pattern.svg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.menu_hero-content-blcok {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  display: flex;
}

.menu_hero-heading {
  margin-bottom: 48px;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.menu_categories-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu_categorie-btn {
  border: 2px solid var(--secondary-color);
  height: 40px;
  color: var(--secondary-color);
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  font-size: 20px;
  font-weight: 900;
  display: flex;
}

.note-block {
  background-color: var(--deep-red);
  padding-top: 20px;
  padding-bottom: 20px;
}

.note-block-wrap {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  display: flex;
}

.allergen-info-btn {
  background-color: var(--secondary-color);
  height: 46px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
}

.allergen-info-btn:hover {
  background-color: #ffc65d;
}

.menu-card-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.menu_cards-block {
  margin-bottom: 72px;
}

.menu_card-heading {
  text-transform: uppercase;
  margin-bottom: 32px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 48px;
  line-height: 1.20833;
}

.menu_card-heading.mb-0 {
  margin-bottom: 0;
}

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

.menu_item {
  background-color: var(--deep-red);
  border-radius: 24px;
  padding: 20px;
  position: relative;
}

.menu_thumbnail-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.menu_item-content-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.menu_item-title {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.menu_item-description {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 14px;
  line-height: 1.28571;
}

.menu_item-tag {
  position: absolute;
  inset: -13px -13px auto auto;
}

.menu_card-heading-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.franchise_hero-section {
  background-image: url('../images/franchise-hero-pattern.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 670px;
  padding-top: 120px;
  padding-bottom: 100px;
}

.franchise_hero-contents {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 894px;
  margin-bottom: 112px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.franchise_hero-heading {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.15;
}

.first-growth-icon {
  position: absolute;
  inset: -40px auto auto 0;
}

.first-growth-icon.hide-larger-view {
  display: none;
}

.banner-seal {
  position: absolute;
  inset: auto 70px -60px auto;
}

.banner-seal.hide-larger-view {
  display: none;
}

.food-track {
  overflow: hidden;
}

.food-inner-item {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  display: flex;
}

.food-track-item {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex: none;
  display: flex;
}

.franchise_service-section {
  padding-top: 240px;
  padding-bottom: 54px;
}

.service_heading-block {
  margin-bottom: 54px;
}

.service_heading {
  text-align: center;
  text-transform: uppercase;
  max-width: 23ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 64px;
  line-height: .875;
}

.service_content-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.service_item {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
}

.service_title {
  max-width: 30ch;
  color: var(--secondary-color);
  text-align: center;
  text-transform: uppercase;
}

.feature_section {
  background-color: var(--deep-red);
  padding-top: 72px;
  padding-bottom: 32px;
  overflow: hidden;
}

.feature_heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}

.italic-text {
  font-style: italic;
}

.italic-text.ml-1 {
  margin-right: 8px;
}

.italic-text.ml-01 {
  margin-right: 4px;
}

.feature_content-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.feature_img-wrap {
  width: 50%;
  position: relative;
}

.feature_right {
  z-index: 5;
  flex: none;
  width: 50%;
  position: relative;
}

.feature_img {
  pointer-events: none;
  max-width: 900px;
  position: absolute;
  top: -72px;
  left: -136px;
}

.feature_list-items {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-bottom: 40px;
  display: flex;
}

.feature_content-block {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.food_progress-title {
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 64px;
  font-weight: 900;
  line-height: .78125;
}

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

.feature_link-wrap {
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  display: flex;
}

.feature_link-wrap.hide-large-view {
  display: none;
}

.feature_link {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
}

.franchise_offer-section {
  background-color: var(--mid-red);
  padding-top: 72px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.section_heading-block {
  margin-bottom: 40px;
}

.section_heading-block.mb-7 {
  text-align: center;
  margin-bottom: 56px;
}

.section_heading-block.mb-7.higher-value {
  z-index: 2;
  position: relative;
}

.section_heading-block.align-center {
  text-align: center;
  margin-bottom: 56px;
}

.section_heading-block.align-center.margin-9 {
  margin-bottom: 72px;
}

.offer_heading-text {
  letter-spacing: .2px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
}

.offer_animation {
  width: 610px;
  position: absolute;
  inset: 60px -164px auto auto;
}

.franchise_price-wrapper {
  z-index: 10;
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 56px;
  display: flex;
  position: relative;
}

.franchise_price-label {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 20px;
}

.franchise_price-amount {
  color: var(--secondary-color);
  font-size: 64px;
  line-height: .90625;
}

.offer_pill-btns-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-bottom: 40px;
  display: flex;
}

.offer_pill-btns-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.offer_pill-btn {
  background-color: var(--primary-color);
  border-radius: 16px;
  padding: 10px 16px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
}

.pill_check {
  color: var(--secondary-color);
  margin-right: 4px;
  font-family: Hubotsanscondensed, Arial, sans-serif;
}

.franchise_finding-text {
  text-align: center;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 12px;
}

.franchise_built-section {
  padding-top: 72px;
  padding-bottom: 80px;
  overflow: hidden;
}

.built_items-wrap {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.built-card {
  background-color: var(--deep-red);
  border-radius: 36px;
  padding: 32px;
  position: relative;
}

.built_img-wrap {
  margin-bottom: 32px;
}

.built-img {
  border-radius: 16px;
}

.built_list-title {
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 900;
}

.built_list-items {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.list-text {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 20px;
}

.built_arrow {
  color: var(--secondary-color);
  font-family: Hubotsanscondensed, Arial, sans-serif;
}

.hotville-icon {
  position: absolute;
  inset: auto -100px -40px auto;
}

.franchise_promo-section {
  background-image: url('../images/cta-background.svg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: none;
}

.promo_content-block {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.promo_heading {
  max-width: 16ch;
  margin-bottom: 64px;
  font-size: 96px;
  font-weight: 900;
  line-height: .895833;
}

.promo-btn {
  background-color: var(--secondary-color);
  min-width: 390px;
  height: 52px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
}

.promo-btn:hover {
  background-color: #ffc65d;
}

.hide {
  display: none;
}

.menu_icon-line {
  background-color: var(--secondary-color);
  width: 20px;
  height: 2px;
}

.contact_hero-section {
  padding-top: 120px;
  padding-bottom: 40px;
}

.contact_hero-contents {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 894px;
  margin-bottom: 72px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.back-btn {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: var(--secondary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: inline-flex;
}

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

.contact_form-section {
  background-color: var(--deep-red);
  padding-top: 72px;
  padding-bottom: 72px;
}

.hv-hero-center-img {
  max-width: 95%;
}

.contact_form-heading {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 80px;
  font-weight: 900;
  line-height: .9375;
}

.heading_inline-text {
  display: block;
}

.contact_heading-text {
  letter-spacing: .2px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
}

.contact_form-wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.form_input-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 32px;
  display: grid;
}

.form_input-group.mb-7 {
  margin-bottom: 56px;
}

.form_input-label {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
}

.form_input-field {
  border: 1px solid var(--primary-color);
  background-color: var(--white);
  height: 46px;
  color: var(--dark-red);
  margin-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
}

.form_input-field:focus {
  border: 1px solid #000;
}

.form_input-field::placeholder {
  color: #b5001866;
}

.form_submit-btn {
  background-color: var(--secondary-color);
  min-width: 326px;
  height: 52px;
  color: var(--primary-color);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
}

.form_submit-btn:hover {
  background-color: var(--btn-hover);
}

.submit-btn-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.submit-btn-block.mb-2 {
  margin-bottom: 8px;
}

.career_hero-video {
  justify-content: center;
  align-items: flex-end;
  height: 90dvh;
  padding-bottom: 140px;
  display: flex;
}

.career_hero-content-block {
  text-align: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.career_hero-title {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

.career_hero-heading {
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 900;
  line-height: .9;
}

.career_track {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-color: var(--secondary-color);
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  overflow: hidden;
}

.career_track-text {
  color: var(--primary-color);
  white-space: nowrap;
  font-weight: 900;
}

.light-color {
  color: var(--white);
  margin-left: 4px;
  margin-right: 4px;
}

.career_feature-section {
  background-color: var(--deep-red);
  padding-top: 100px;
  padding-bottom: 80px;
}

.career_about-content-block {
  grid-column-gap: 54px;
  grid-row-gap: 54px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .7fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career_about-right {
  max-width: 90%;
}

.career_about-heading {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 80px;
  font-weight: 900;
  line-height: .92;
}

.career_about-text {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.career_about-text.mb-5 {
  margin-bottom: 24px;
}

.career_benefit-section {
  padding-top: 80px;
  padding-bottom: 48px;
}

.career_benefit-heading {
  text-align: center;
  text-transform: uppercase;
  max-width: 12ch;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  font-size: 80px;
  font-weight: 900;
  line-height: .9375;
}

.career_benefits-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 40px;
}

.career_benefit-item {
  background-color: var(--deep-red);
  text-align: center;
  border-radius: 36px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
}

.career_benefit-icon {
  margin-bottom: 32px;
  font-size: 48px;
  display: block;
}

.career_benefit-title {
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.career_beenfit-text {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.career_beenfit-note {
  text-align: center;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
}

.close-icon {
  display: flex;
}

.form_select-wrap {
  width: 100%;
  font-family: Familjen Grotesk, sans-serif;
  position: relative;
}

.form_select-icon {
  pointer-events: none;
  color: #000;
  display: flex;
  position: absolute;
  top: 18px;
  left: auto;
  right: 10px;
}

.menu-heading-wrap, .menu-title-block, .menu-text-block {
  position: relative;
}

.menu_img-block {
  margin-top: -72px;
  position: relative;
  top: 54px;
  right: -60px;
}

.store-btns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.footer-banner {
  z-index: 100;
  background-color: var(--primary-color);
  background-image: url('../images/cta-background.svg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 16px;
  padding-bottom: 24px;
  position: sticky;
  inset: auto 0% 0;
  box-shadow: 0 -10px 20px #0003;
}

.footer_banner-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer_banner-heading {
  font-size: 56px;
  font-weight: 900;
}

.footer_banner-btn {
  background-color: var(--secondary-color);
  min-width: 390px;
  height: 52px;
  color: var(--primary-color);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  font-size: 20px;
  font-weight: 900;
  transition: background-color .3s;
  display: flex;
}

.footer_banner-btn:hover {
  background-color: #ffc65d;
}

.about-track-custom-code, .food-track-custom-code {
  display: none;
}

.form_input-wrap {
  display: flex;
}

.input_browse-btn {
  border: 1px solid var(--primary-color);
  background-color: var(--sauce-red);
  height: 46px;
  color: var(--primary-color);
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 900;
  display: flex;
}

.form-input-message {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 6px;
  font-family: Familjen Grotesk, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.form-input-message.error {
  color: var(--secondary-color);
}

.fim-icon {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
  position: relative;
  top: 2px;
}

.fim-text {
  padding-top: 4px;
}

.success-message {
  color: var(--secondary-color);
  text-align: left;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
}

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

.success-message.align-left {
  text-align: left;
}

.success-message.align-center {
  text-align: center;
}

.error-message {
  color: var(--sauce-red);
  text-align: center;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 900;
}

.error-message.error {
  color: var(--sauce-red);
}

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

.error-message.align-left {
  text-align: left;
}

.error-message.align-center {
  text-align: center;
}

.service_icon-block {
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer_padding {
  padding-top: 64px;
  padding-bottom: 64px;
}

.build_list-item, .feature_list-item {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.back-top-block {
  z-index: 1000;
  background-color: var(--secondary-color);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  transition: transform .4s;
  display: flex;
  position: fixed;
  inset: auto 40px 40px auto;
  transform: translate(140px);
  box-shadow: 0 4px 12px #1574f621;
}

.arrow-top {
  display: flex;
  transform: rotate(-90deg);
}

.custom-js {
  display: none;
}

.pp_section {
  background-color: var(--deep-red);
  padding-top: 120px;
  padding-bottom: 120px;
}

.pp-heading {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 64px;
  font-weight: 900;
  line-height: .9375;
}

.pp-content-wrapper {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pp-title {
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Hubotsans Expanded-Black, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.pp-content-block.mb-5 {
  margin-bottom: 24px;
}

.pp-hero-section {
  background-image: url('../images/franchise-hero-pattern.svg');
  background-position: 0 0;
  background-size: auto;
  padding-top: 100px;
  padding-bottom: 80px;
}

.pp-hero-contents {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 932px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.pp-body-text {
  font-family: Familjen Grotesk, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.pp-body-text.mb-5 {
  margin-bottom: 24px;
}

.pp-body-text.mb-4 {
  margin-bottom: 16px;
}

.career-hero-block, .career_hero-img-wrap {
  display: none;
}

.smaller-text {
  font-family: Hubotsanscondensed, Arial, sans-serif;
}

.hotville-animate-icon {
  z-index: 10;
  max-width: 200px;
  position: absolute;
  inset: 4% auto auto -40%;
}

.hotville-animate-icon.show {
  display: none;
}

@media screen and (max-width: 991px) {
  .hv-nav-logo-block {
    transform: translate(-50%, 30px);
  }

  .hv-nav-logo {
    max-width: 180px;
  }

  .hv-search-btn {
    display: none;
  }

  .hv-hero-video {
    height: 70dvh;
  }

  .menu-details {
    padding-left: 24px;
  }

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

  .track-img, .track-img2 {
    max-width: 150%;
  }

  .hv-slider {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .slider-nav {
    font-size: 20px;
  }

  .hot-cert {
    max-width: 140px;
    top: -59px;
    left: 0;
  }

  .menu-heading {
    font-size: 40px;
  }

  .menu-title {
    font-size: 32px;
  }

  .primary-text {
    font-size: 20px;
  }

  .menu-animate-title {
    max-width: 80%;
  }

  .about-animate-file {
    width: 500px;
    bottom: -85px;
    right: -18%;
  }

  .cta-left-block {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-main {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .fired-icon.hide-small-view {
    flex: none;
  }

  .cta-heading {
    font-size: 48px;
  }

  .cta-title {
    font-size: 20px;
  }

  .hv-work-heading {
    font-size: 38px;
  }

  .footer {
    background-position: 50%;
    background-size: contain;
  }

  .hv-footer-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .hv-footer-right {
    max-width: none;
  }

  .footer-social-block {
    justify-content: flex-start;
  }

  .footer-content-block {
    justify-content: center;
    align-items: flex-start;
  }

  .footer-link-text {
    font-size: 40px;
  }

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

  .menu-text {
    font-size: 20px;
  }

  .inner_hero-left {
    max-width: 59%;
  }

  .inner_hero-heading {
    font-size: 48px;
  }

  .inner_hero-mask {
    max-width: 280px;
    transform: translate(0, -88px)rotate(17deg);
  }

  .inner_hero-gif {
    max-width: 140px;
    top: 9%;
    left: -24%;
  }

  .hv-store-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hv-store-btn {
    flex: none;
    font-size: 16px;
  }

  .menu-button {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    padding: 8px;
  }

  .menu-button.close {
    left: 24px;
  }

  .icon-wrap {
    order: 9999;
  }

  .icon-wrap.close {
    order: -9999;
  }

  .menu-link {
    padding-left: 24px;
  }

  .breadcrumb-block {
    margin-bottom: 32px;
  }

  .hv-store-info-section {
    padding-top: 60px;
  }

  .store-address-block, .store-opening-block {
    padding: 32px;
  }

  .store-address-title, .store-opening-title {
    font-size: 32px;
  }

  .menu_hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .menu_hero-heading {
    font-size: 48px;
  }

  .menu_categories-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .note-block-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: center;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .menu_card-heading {
    font-size: 40px;
  }

  .menu_items-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .franchise_hero-contents {
    max-width: 740px;
  }

  .franchise_hero-heading {
    max-width: 23ch;
    font-size: 48px;
  }

  .first-growth-icon {
    top: -52px;
    left: 16px;
  }

  .banner-seal {
    bottom: -64px;
    right: 10px;
  }

  .franchise_service-section {
    padding-top: 100px;
  }

  .service_heading {
    font-size: 48px;
  }

  .service_content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .feature_heading {
    margin-bottom: 32px;
    font-size: 54px;
  }

  .feature_right {
    position: relative;
  }

  .feature_img {
    max-width: 670px;
    top: 0;
  }

  .feature_content-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .food_progress-title {
    font-size: 48px;
  }

  .feature_progress-text {
    font-size: 20px;
  }

  .feature_link-wrap {
    margin-top: 60px;
  }

  .section_heading-block.align-center.margin-9 {
    margin-bottom: 54px;
  }

  .offer_animation {
    width: auto;
    inset: 18px 2% auto auto;
  }

  .offer_pill-btns-wrap {
    z-index: 10;
    position: relative;
  }

  .offer_pill-btns-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .built_items-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .built-card {
    padding: 24px;
  }

  .hotville-icon {
    max-width: 45%;
    right: -9px;
  }

  .franchise_promo-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .promo_heading {
    margin-bottom: 48px;
    font-size: 64px;
  }

  .contact_hero-contents {
    max-width: 740px;
  }

  .contact_form-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hv-hero-center-img {
    max-width: 75%;
  }

  .contact_form-heading {
    font-size: 54px;
  }

  .career_hero-video {
    height: 80dvh;
  }

  .career_hero-heading {
    font-size: 64px;
  }

  .career_feature-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .career_about-right {
    max-width: 100%;
  }

  .career_about-heading {
    font-size: 64px;
  }

  .career_benefit-section {
    padding-top: 60px;
  }

  .career_benefit-heading {
    font-size: 64px;
  }

  .career_benefit-item {
    justify-content: flex-start;
    align-items: center;
  }

  .menu_img-block {
    margin-top: 0;
    right: 0;
  }

  .store-btns {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .footer_banner-heading {
    font-size: 40px;
  }

  .nav-menu-text {
    display: none;
  }

  .success-message.align-right, .error-message.align-right {
    text-align: left;
  }

  .service_icon-block {
    margin-bottom: 24px;
  }

  .footer_padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pp_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .pp-heading {
    font-size: 48px;
  }

  .pp-hero-section {
    padding-top: 80px;
  }

  .hotville-animate-icon {
    max-width: 140px;
    top: 9%;
    left: -24%;
  }
}

@media screen and (max-width: 767px) {
  .hv-nav-menu-block {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hv-nav-logo-block.w--current {
    transform: translate(-50%, 22px);
  }

  .hv-nav-logo {
    max-width: 178px;
  }

  .hv-order-now-btn {
    height: 36px;
    font-size: 20px;
  }

  .hv-hero-video {
    height: 65dvh;
  }

  .track-img, .track-img2 {
    max-width: 180%;
  }

  .hv-slider-section {
    padding-bottom: 80px;
  }

  .hv-slider {
    max-width: 100%;
  }

  .hv-slider.large {
    max-width: 90%;
  }

  .slider-arrow {
    width: 48px;
    height: 48px;
  }

  .slider-arrow.right, .slider-arrow.left {
    display: none;
    top: 10px;
  }

  .slider-nav {
    bottom: -48px;
  }

  .slider-director {
    max-width: 80px;
    left: -40px;
  }

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

  .slider-image.hide-smaller-view {
    display: none;
  }

  .slider-image.hide-larger-view {
    max-height: 400px;
    display: block;
  }

  .slider-order-btn {
    max-width: 200px;
    height: 46px;
    bottom: 12px;
  }

  .hv-menu-section {
    padding-bottom: 40px;
  }

  .menu-main-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    overflow: hidden;
  }

  .menu-left-block, .menu-right-block {
    width: auto;
  }

  .hot-cert {
    max-width: 20%;
    top: 18px;
    left: auto;
    right: 8%;
  }

  .menu-item-img.v3 {
    left: 0;
  }

  .menu-item-img.v4 {
    left: 10%;
  }

  .menu-item-img.v5 {
    opacity: 0;
    top: 6%;
    left: 14%;
  }

  .menu-item-img.v1 {
    left: 10%;
  }

  .menu-content-block {
    text-align: center;
    max-width: none;
    margin-right: 0;
  }

  .menu-animate-title {
    max-width: 65%;
  }

  .hv-about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hv-about-main-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .hv-about-content-block {
    text-align: center;
    width: 100%;
    max-width: none;
  }

  .hv-soscial-block {
    justify-content: center;
    align-items: center;
  }

  .hv-about-animate-wrap {
    order: -9999;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .about-animate-file {
    width: auto;
    max-width: 40%;
    height: auto;
    position: static;
  }

  .content-gap-medium {
    min-height: 100px;
  }

  .cta-left-block {
    justify-content: center;
    align-items: flex-start;
    max-width: none;
  }

  .cta-right-block {
    max-width: none;
  }

  .cta-main {
    flex-flow: column;
  }

  .fired-icon.hide-small-view {
    flex: none;
    max-width: 66px;
  }

  .hv-work-main {
    grid-template-columns: 1fr;
  }

  .hv-work-item {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .hv-content-block {
    text-align: center;
    width: 100%;
  }

  .hv-img-mask {
    max-width: 90%;
    transform: translate(0)rotate(17deg);
  }

  .footer-social-block {
    display: none;
  }

  .footer-social-block.show-smaller-view {
    margin-bottom: 0;
    display: flex;
  }

  .footer-link-text {
    font-size: 32px;
  }

  .sticky-block {
    top: 3vh;
  }

  .hv-inner-hero-section.store {
    height: auto;
    padding-top: 60px;
    padding-bottom: 54px;
  }

  .hv-inner-hero-section.store-inner {
    height: auto;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .inner-hero-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .inner_hero-left {
    flex: 1;
    align-self: center;
    max-width: none;
    position: relative;
  }

  .inner_hero-right {
    display: none;
  }

  .inner_hero-heading {
    margin-bottom: 32px;
    font-size: 40px;
  }

  .inner_hero-heading.align-center.mb-0 {
    text-align: center;
  }

  .hero_search-wrap {
    max-width: 100%;
  }

  .inner_hero-mask {
    transform: translate(0, -16px)rotate(17deg);
  }

  .inner_hero-gif {
    max-width: 100px;
    display: none;
    top: -11%;
  }

  .inner_hero-gif.show {
    display: block;
    inset: -24px 0% auto auto;
  }

  .hv-store-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hv-store-item {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .hv-store-content-block {
    text-align: center;
  }

  .hv-store-btn {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .store-location-block {
    justify-content: center;
    align-items: center;
  }

  .hv-store-title {
    font-size: 26px;
  }

  .store-btn-group {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .hv-store-divider {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .store-opening-banner-wrap {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .opening-banner {
    margin-left: auto;
    margin-right: auto;
  }

  .socials-row {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .menu-button {
    font-size: 18px;
  }

  .menu {
    width: 100%;
  }

  .bg-panel {
    border-radius: 0 0 0 0;
  }

  .bg-panel.second, .bg-panel.first {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .menu-button-text {
    height: 20px;
  }

  .hv-nav-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-link-heading {
    font-size: 40px;
  }

  .breadcrumb-block {
    margin-bottom: 48px;
  }

  .store-info-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .store-opening-block {
    max-width: none;
  }

  .menu_hero-section {
    padding-top: 60px;
    padding-bottom: 72px;
    overflow: hidden;
  }

  .menu_hero-heading {
    margin-bottom: 40px;
    font-size: 40px;
  }

  .menu_categories-block {
    white-space: nowrap;
  }

  .note-block-wrap {
    line-height: 1.4;
  }

  .menu_cards-block {
    margin-bottom: 40px;
  }

  .menu_items-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .menu_item-content-block {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .menu_item-title {
    font-size: 24px;
  }

  .franchise_hero-section {
    height: auto;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .franchise_hero-contents {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 60px;
  }

  .first-growth-icon {
    width: 84px;
    position: static;
    top: -84px;
    left: 0;
  }

  .first-growth-icon.hide-small-view {
    display: none;
  }

  .first-growth-icon.hide-larger-view {
    display: block;
  }

  .banner-seal {
    width: 120px;
    position: static;
    bottom: -90px;
    right: 40px;
  }

  .banner-seal.hide-small-view {
    display: none;
  }

  .banner-seal.hide-larger-view {
    display: block;
  }

  .food-track-item {
    grid-column-gap: 54px;
    grid-row-gap: 54px;
  }

  .franchise_service-section {
    padding-top: 80px;
  }

  .service_heading {
    font-size: 40px;
  }

  .service_content-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 60px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .feature_section {
    padding-top: 60px;
    padding-bottom: 48px;
  }

  .feature_heading {
    text-align: left;
    font-size: 48px;
  }

  .feature_content-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .feature_img-wrap {
    width: auto;
  }

  .feature_right {
    order: -9999;
    width: auto;
  }

  .feature_img {
    pointer-events: auto;
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }

  .feature_link-wrap {
    order: -9999;
    justify-content: flex-start;
    align-items: center;
    margin-top: 16px;
  }

  .feature_link-wrap.hide-small-view {
    display: none;
  }

  .feature_link-wrap.hide-large-view {
    display: block;
  }

  .section_heading-block.mb-7.higher-value {
    margin-bottom: 48px;
  }

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

  .offer_animation {
    width: auto;
    max-width: 30%;
    top: 18px;
    right: 2%;
  }

  .franchise_price-wrapper {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .franchise_price-amount {
    font-size: 54px;
  }

  .offer_pill-btns-wrap {
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .offer_pill-btns-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .franchise_finding-text {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .built_items-wrap {
    grid-template-columns: 1fr;
  }

  .built-img {
    object-fit: cover;
    width: 100%;
    max-height: 350px;
  }

  .hotville-icon {
    max-width: 30%;
  }

  .promo_heading {
    margin-bottom: 40px;
    font-size: 48px;
  }

  .contact_hero-section {
    padding-top: 48px;
  }

  .contact_hero-contents {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-bottom: 60px;
  }

  .hv-hero-center-img {
    max-width: 60%;
  }

  .contact_form-heading {
    font-size: 48px;
  }

  .form_input-group {
    grid-template-columns: 1fr;
  }

  .form_submit-btn {
    width: 100%;
    min-width: auto;
  }

  .career_hero-video {
    height: 60dvh;
    padding-bottom: 120px;
  }

  .career_hero-heading {
    font-size: 54px;
  }

  .career_about-content-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .career_about-heading {
    font-size: 54px;
  }

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

  .menu_img-block {
    top: 0;
  }

  .store-btns {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .footer_banner-heading {
    font-size: 32px;
  }

  .footer_banner-btn {
    width: 100%;
    min-width: auto;
  }

  .food-item {
    max-width: 200px;
  }

  .hide-mobile {
    display: none;
  }

  .footer_padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .back-top-block {
    bottom: 32px;
    right: 24px;
  }

  .pp-heading {
    font-size: 48px;
  }

  .pp-hero-section {
    padding-bottom: 60px;
  }

  .hotville-animate-icon {
    max-width: 100px;
    display: none;
    top: -11%;
  }

  .hotville-animate-icon.show {
    display: block;
    inset: -24px 0% auto auto;
  }
}

@media screen and (max-width: 479px) {
  .hv-nav-logo-block {
    position: static;
    left: 0%;
    transform: translate(0%, 20px);
  }

  .hv-nav-logo-block.w--current {
    transform: translate(0%, 20px);
  }

  .hv-nav-logo {
    max-width: 178px;
  }

  .hv-order-now-btn {
    height: 30px;
    padding-top: 8px;
    font-size: 16px;
  }

  .hv-hero-video {
    height: 50dvh;
  }

  .track-item.bottom {
    transform: translate(0, -25px)rotate(-3deg);
  }

  .track-img, .track-img2 {
    flex: none;
    max-width: 200%;
  }

  .hv-slider-section {
    padding-bottom: 60px;
  }

  .hv-slider.large {
    max-width: 100%;
  }

  .slider-nav {
    font-size: 18px;
    bottom: -48px;
  }

  .slider-director {
    max-width: 20%;
    bottom: -36px;
    left: 10px;
  }

  .slider-image {
    object-fit: cover;
    object-position: 0% 50%;
    border-radius: 20px;
    min-height: 234px;
  }

  .slider-order-btn {
    font-size: 18px;
    display: none;
  }

  .menu-main-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .hot-cert {
    max-width: 26%;
    top: 4px;
    left: auto;
    right: 3%;
  }

  .menu-item-img.v2 {
    opacity: 0;
  }

  .menu-item-img.v3 {
    opacity: 0;
    top: -10px;
    left: 0;
  }

  .menu-item-img.v1 {
    left: 10%;
  }

  .menu-heading {
    font-size: 36px;
  }

  .menu-title {
    font-size: 28px;
  }

  .primary-text.text-black {
    margin-bottom: 0;
    font-size: 18px;
  }

  .hv-about-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hv-about-content-block {
    max-width: none;
  }

  .hv-soscial-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .content-gap-medium {
    min-height: 80px;
  }

  .about-track {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .about-track-item {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .hv-about-img {
    max-width: 132px;
  }

  .hv-cta-section {
    background-position: 50%;
    background-repeat: repeat;
    background-size: contain;
    padding-top: 32px;
  }

  .cta-left-block {
    flex-flow: column;
  }

  .fired-icon {
    width: 100%;
  }

  .fired-icon.hide-small-view {
    display: none;
  }

  .fired-icon.hide-larger-view {
    max-width: 66px;
    display: block;
  }

  .cta-content-block {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .cta-heading {
    max-width: 12ch;
    font-size: 40px;
  }

  .highlight-text.inline-text {
    display: block;
  }

  .highlight-text.mr-1 {
    margin-left: 4px;
  }

  .cta-title {
    font-size: 18px;
  }

  .cta-title.hide-small-view {
    display: none;
  }

  .cta-title.hide-larger-view {
    display: block;
  }

  .hv-work-section {
    padding-top: 48px;
  }

  .hv-img-mask {
    max-width: 234px;
    max-height: 360px;
    transform: translate(24px, -10px)rotate(17deg);
  }

  .footer {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .hv-checkboc-field {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .hv-checkbox {
    margin-top: 4px;
  }

  .hv-footer-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .footer-social-block.show-smaller-view {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
  }

  .footer-social-link {
    width: 48px;
    height: 48px;
  }

  .footer-info-heading {
    font-size: 28px;
  }

  .footer-link-text {
    font-size: 24px;
  }

  .footer-copyright-text {
    font-size: 12px;
    line-height: 1.2;
  }

  .sticky-block {
    top: 100px;
  }

  .menu-text {
    margin-bottom: 24px;
  }

  .hv-inner-hero-section.store {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .hv-inner-hero-section.store-inner {
    padding-top: 48px;
  }

  .inner-hero-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .inner_hero-left {
    align-self: stretch;
  }

  .inner_hero-right {
    justify-content: center;
    align-items: center;
  }

  .inner_hero-heading {
    margin-bottom: 24px;
    font-size: 36px;
  }

  .inner_hero-heading.mb-0 {
    font-size: 36px;
  }

  .inner_hero-heading.align-center {
    text-align: center;
  }

  .inner_hero-gif {
    left: 0%;
  }

  .inner_hero-gif.show {
    display: block;
    inset: -24px 0% auto auto;
  }

  .hv-store-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hv-store-title {
    font-size: 24px;
  }

  .store-contact-btn {
    font-size: 17px;
  }

  .hv-nav-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-list-item {
    height: 61px;
  }

  .menu-link-heading {
    font-size: 32px;
  }

  .brand-color.text-italic.ml-1 {
    margin-right: 4px;
  }

  .brand-color.inline-block {
    display: block;
  }

  .hv-store-info-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .store-address-block {
    text-align: center;
    padding: 24px;
  }

  .store-opening-block {
    padding: 24px;
  }

  .store-address-title {
    font-size: 28px;
  }

  .store-address-text {
    font-size: 20px;
  }

  .store-opening-title {
    text-align: center;
    font-size: 28px;
  }

  .store-opening-list-block {
    max-width: none;
  }

  .sotre-opening-list-item {
    grid-template-columns: 1fr 1fr;
  }

  .menu_hero-section {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .menu_hero-content-blcok {
    text-align: center;
    align-items: stretch;
  }

  .menu_hero-heading {
    font-size: 36px;
  }

  .menu_categories-block {
    white-space: nowrap;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
  }

  .note-block {
    padding-bottom: 24px;
  }

  .menu-card-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .menu_card-heading {
    text-align: center;
    font-size: 30px;
  }

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

  .menu_card-heading-wrap {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .franchise_hero-section {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .franchise_hero-contents {
    margin-bottom: 48px;
  }

  .franchise_hero-heading {
    font-size: 40px;
  }

  .first-growth-icon {
    top: -80px;
  }

  .banner-seal {
    bottom: -77px;
    right: 12px;
  }

  .food-track-item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .franchise_service-section {
    padding-top: 48px;
  }

  .service_heading-block {
    margin-bottom: 40px;
  }

  .service_heading {
    font-size: 36px;
  }

  .service_content-wrapper {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .service_item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .service_icon.flag {
    max-width: 60px;
  }

  .service_icon.award {
    max-width: 62px;
  }

  .service_icon.lighting {
    max-width: 52px;
  }

  .service_title {
    max-width: none;
  }

  .feature_heading {
    margin-bottom: 24px;
    font-size: 35px;
  }

  .feature_img {
    max-width: 150%;
    left: -60px;
  }

  .feature_content-block {
    grid-template-columns: 1fr;
  }

  .feature_progress-text {
    max-width: 90%;
  }

  .feature_link-wrap {
    margin-top: 0;
  }

  .section_heading-block {
    margin-bottom: 32px;
  }

  .section_heading-block.align-center.margin-9 {
    margin-bottom: 40px;
  }

  .offer_animation {
    right: 2%;
  }

  .franchise_price-amount {
    font-size: 44px;
  }

  .offer_pill-btns-wrap, .offer_pill-btns-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .offer_pill-btn {
    width: 100%;
  }

  .franchise_built-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .promo_heading {
    font-size: 40px;
  }

  .promo-btn {
    width: 100%;
    min-width: auto;
  }

  .contact_hero-section {
    padding-top: 48px;
  }

  .contact_form-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact_form-heading {
    font-size: 36px;
  }

  .form_submit-btn {
    width: 100%;
    min-width: auto;
  }

  .career_hero-video {
    display: none;
  }

  .career_hero-title {
    margin-top: 0;
  }

  .career_hero-heading {
    font-size: 40px;
  }

  .career_feature-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .career_about-heading {
    font-size: 40px;
  }

  .career_benefit-section {
    padding-top: 40px;
  }

  .career_benefit-heading {
    font-size: 48px;
  }

  .career_benefits-grid {
    grid-column-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .career_benefit-item {
    justify-content: flex-start;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .career_benefit-icon {
    margin-bottom: 24px;
  }

  .career_benefit-title.xs-short {
    max-width: 7ch;
    margin-left: auto;
    margin-right: auto;
  }

  .career_benefit-title.short-text {
    max-width: 8ch;
    margin-left: auto;
    margin-right: auto;
  }

  .career_benefit-title.long-text {
    max-width: 10ch;
    margin-left: auto;
    margin-right: auto;
  }

  .career_beenfit-text {
    font-size: 13px;
    line-height: 1.3;
  }

  .career_beenfit-note {
    font-size: 14px;
  }

  .form_select-wrap {
    max-width: none;
  }

  .menu_img-block {
    top: 0;
  }

  .footer-banner {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .footer_banner-heading {
    font-size: 28px;
  }

  .food-item {
    max-width: 100px;
  }

  .form-input-message {
    font-size: 14px;
  }

  .form-input-message.error {
    text-align: left;
  }

  .success-message, .error-message {
    font-size: 18px;
  }

  .service_icon-block {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
  }

  .service_content-block {
    text-align: center;
  }

  .pp_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pp-heading {
    font-size: 36px;
  }

  .pp-hero-section {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .career-hero-block {
    padding-top: 32px;
    padding-bottom: 32px;
    display: block;
  }

  .career_hero-img {
    transform: scale(1.8);
  }

  .career_hero-img-wrap {
    display: block;
    overflow: hidden;
  }

  .hotville-animate-icon {
    left: 0%;
  }

  .hotville-animate-icon.show {
    display: block;
    inset: -24px 0% auto auto;
  }
}

#w-node-_723a4db9-fffb-f30a-962a-1fad1e530d4f-f62da4d6 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-a9e3ac7f-913b-e5f7-9067-aecb8ba176c8-f62da4d6, #w-node-_569170db-15a9-b2e6-9977-a8ff83293ae6-f62da4d6, #w-node-_7e368455-0747-2529-71ff-24c89b221347-f62da4d6, #w-node-_828fe38b-a153-8438-bd31-c6346a8e6965-f62da4d6, #w-node-e72e28a7-ddb4-8ab6-8bb6-a6dde4d4837f-f62da4d6, #w-node-_85bd1adc-e6bd-9647-72aa-c01cdfc4bcdc-f62da4d6, #w-node-d061eb08-7234-9b0e-758c-13efd118c091-f62da4d6, #w-node-_0d4f755d-aff1-a8b5-dfe9-0c952cb827d9-f62da4d6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


@font-face {
  font-family: 'Hubotsanscondensed';
  src: url('../fonts/HubotSansCondensed-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hubotsanscondensed';
  src: url('../fonts/HubotSansCondensed-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hubotsans Expanded-Black';
  src: url('../fonts/HubotSansExpanded-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}