:root {
  --gray-100: #f5f9fc;
  --gray-800: #35353b;
  --primary-600: #cc7c00;
  --primary-500: #faa614;
  --primary-400: #fcbb4a;
  --gray-600: #6f7076;
  --white: white;
  --gray-900: #1b1d24;
  --gray-700: #4e4f55;
  --gray-500: #9b9ca1;
  --gray-400: #c2c3c7;
  --gray-300: #dbdde1;
  --gray-200: #edeef2;
  --primary-300: #fed58e;
  --primary-200: #ffeed1;
  --primary-100: #fff8eb;
  --primary-700: #9e5900;
  --primary-800: #703700;
  --primary-900: #411400;
  --secondary-900: #232e23;
  --secondary-800: #2b392b;
  --secondary-700: #324332;
  --secondary-600: #405840;
  --secondary-500: #576c57;
  --secondary-400: #6d806d;
  --secondary-300: #9aa79a;
  --secondary-200: #c7cfc7;
  --secondary-100: #f4f6f4;
  --black: #0b0d0f;
  --orange: #06215f;
  --dark-blue: #06669e;
  --error: #db2a2a;
}

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

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

@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 {
  background-color: var(--gray-100);
  color: var(--gray-800);
  font-family: Source Sans Pro, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

h1 {
  margin-top: .25rem;
  margin-bottom: 1rem;
  font-family: Playfair Display, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  margin-top: .25rem;
  margin-bottom: 1.75rem;
  font-family: Playfair Display, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  margin-top: .25rem;
  margin-bottom: .75rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
}

h4 {
  margin-top: .25rem;
  margin-bottom: 1rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

h5 {
  letter-spacing: .04rem;
  text-transform: uppercase;
  margin-top: .25rem;
  margin-bottom: .75rem;
  font-family: Lato, sans-serif;
  font-size: .825rem;
  font-weight: 700;
  line-height: 1.25;
}

h6 {
  letter-spacing: .06rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: Lato, sans-serif;
  font-size: .6rem;
  font-weight: 700;
  line-height: 1;
}

p {
  margin-bottom: 1rem;
  line-height: 1.825;
}

a {
  color: var(--primary-600);
  line-height: 1.6;
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--primary-500);
  text-decoration: none;
}

a:active {
  color: var(--primary-400);
}

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

blockquote {
  border-left: 2px solid var(--gray-600);
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: .875rem 1.25rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.components__wrapper {
  background-color: var(--white);
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.components__color-block {
  background-color: #fff;
  border-radius: 40px;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  box-shadow: inset 0 2px 7px #0000000f;
}

.components__color-block.gray-900 {
  background-color: var(--gray-900);
}

.components__color-block.gray-800 {
  background-color: var(--gray-800);
}

.components__color-block.gray-700 {
  background-color: var(--gray-700);
}

.components__color-block.gray-600 {
  background-color: var(--gray-600);
}

.components__color-block.gray-500 {
  background-color: var(--gray-500);
}

.components__color-block.gray-400 {
  background-color: var(--gray-400);
}

.components__color-block.gray-300 {
  background-color: var(--gray-300);
}

.components__color-block.gray-200 {
  background-color: var(--gray-200);
}

.components__color-block.gray-100 {
  background-color: var(--gray-100);
}

.components__color-block.primary-500 {
  background-color: var(--primary-500);
}

.components__color-block.primary-400 {
  background-color: var(--primary-400);
}

.components__color-block.primary-300 {
  background-color: var(--primary-300);
}

.components__color-block.primary-200 {
  background-color: var(--primary-200);
}

.components__color-block.primary-100 {
  background-color: var(--primary-100);
}

.components__color-block.primary-600 {
  background-color: var(--primary-600);
}

.components__color-block.primary-700 {
  background-color: var(--primary-700);
}

.components__color-block.primary-800 {
  background-color: var(--primary-800);
}

.components__color-block.primary-900 {
  background-color: var(--primary-900);
}

.components__color-block.secondary-900 {
  background-color: var(--secondary-900);
}

.components__color-block.secondary-800 {
  background-color: var(--secondary-800);
}

.components__color-block.secondary-700 {
  background-color: var(--secondary-700);
}

.components__color-block.secondary-600 {
  background-color: var(--secondary-600);
}

.components__color-block.secondary-500 {
  background-color: var(--secondary-500);
}

.components__color-block.secondary-400 {
  background-color: var(--secondary-400);
}

.components__color-block.secondary-300 {
  background-color: var(--secondary-300);
}

.components__color-block.secondary-200 {
  background-color: var(--secondary-200);
}

.components__color-block.secondary-100 {
  background-color: var(--secondary-100);
}

.components__color-block.black {
  background-color: var(--black);
}

.components__color-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.components__label {
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.components__btn-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  margin-top: 1rem;
  display: grid;
}

.components__btn-wrapper.components__btn-wrapper--dark {
  background-color: var(--gray-600);
  border-color: #0000;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}

.btn {
  background-color: var(--orange);
  height: 3rem;
  color: var(--white);
  text-align: center;
  letter-spacing: .06rem;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  transition: border-radius .3s, border-color .3s, background-color .3s, color .3s;
  display: flex;
}

.btn:hover {
  background-color: var(--gray-800);
  color: var(--white);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.btn:active {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn.btn--outline {
  border-color: var(--gray-900);
  color: var(--gray-900);
  background-color: #0000;
}

.btn.btn--outline:hover {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn.btn--outline:active {
  background-color: var(--gray-800);
}

.btn.btn--light {
  background-color: var(--dark-blue);
  color: var(--gray-100);
}

.btn.btn--light:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn.btn--light:active {
  background-color: var(--orange);
}

.btn.btn--light.orange-button {
  background-color: var(--orange);
  width: 200px;
  color: var(--white);
}

.btn.btn--light-outline {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.btn.btn--light-outline:hover {
  background-color: var(--white);
  color: var(--gray-900);
}

.btn.btn--light-outline:active {
  border-color: var(--gray-100);
  background-color: var(--gray-100);
}

.btn.btn--primary {
  background-color: var(--primary-600);
}

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

.btn.btn--primary:active {
  background-color: var(--primary-300);
}

.btn.btn--light-dark {
  background-color: var(--white);
  color: var(--gray-900);
}

.btn.btn--light-dark:hover {
  background-color: var(--gray-900);
  color: var(--white);
}

.btn.btn--light-dark:active {
  background-color: var(--gray-800);
}

.btn.btn--secondary {
  background-color: var(--secondary-600);
}

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

.btn.btn--secondary:active {
  background-color: var(--secondary-300);
}

.btn.order-button {
  height: auto;
  padding-bottom: .4rem;
  transition: all .425s;
}

.btn.order-button:hover {
  background-color: #06669e;
  border-radius: 0;
}

.components {
  padding-bottom: 100vh;
}

.hero-plax {
  z-index: 0;
  perspective: 250px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: auto;
  margin-bottom: 0;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-plax__img--base-layer {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0% 0%;
}

.hero-plax__img--top-layer {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  min-width: 800px;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-plax__content {
  z-index: 3;
  grid-column-gap: 38px;
  grid-row-gap: 38px;
  background-image: radial-gradient(circle, #0000004d, #fff0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 0;
  display: flex;
  position: relative;
}

.hero-plax__heading {
  justify-content: center;
  align-items: center;
  width: 30%;
  max-width: none;
  height: auto;
  margin-bottom: 0;
  display: flex;
}

.hero__title {
  color: #fff;
  text-align: center;
  letter-spacing: .1rem;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 4rem;
  line-height: 1;
}

.hero__subtitle {
  color: var(--white);
  text-align: center;
  letter-spacing: .3rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 300;
}

.nav {
  z-index: 2147483647;
  background-color: #fff0;
  height: 100px;
  position: fixed;
  inset: 0% 0% auto;
}

.nav.delete {
  z-index: 999;
  background-color: var(--orange);
  height: 140px;
  margin-top: 0;
}

.nav__container {
  justify-content: center;
  align-items: center;
  height: 6rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav__brand {
  height: 100%;
  max-height: 6rem;
  padding: 1rem .5rem;
  transition: opacity .3s;
  display: flex;
  position: absolute;
}

.nav__brand:hover {
  opacity: .75;
}

.nav__brand:active {
  opacity: .55;
}

.nav__logo {
  object-fit: contain;
  width: 4rem;
  height: 100%;
}

.nav__logo.coloured-logo {
  width: auto;
  max-width: none;
  height: 70px;
  position: static;
  top: 1px;
}

.nav__link-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
}

.nav__link-wrapper.nav__link-wrapper--left {
  justify-content: flex-end;
  margin-left: 0;
}

.nav__link-wrapper.nav__link-wrapper--right {
  justify-content: flex-start;
  margin-right: 0;
}

.nav__link {
  color: var(--white);
  text-align: center;
  letter-spacing: .08rem;
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:active, .nav__link:focus {
  color: var(--dark-blue);
}

.nav__link.w--current {
  color: #45bbff;
}

.nav__link.w--current:hover {
  color: var(--white);
}

.nav__link.w--current:active {
  color: var(--primary-300);
}

.nav__link.nav__link--dropdown {
  width: 100%;
  color: var(--gray-900);
  white-space: nowrap;
  margin-top: .2rem;
  margin-bottom: .2rem;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1rem;
  transition: all .45s;
  display: inline-block;
}

.nav__link.nav__link--dropdown:hover {
  color: var(--orange);
  -webkit-text-stroke-color: var(--orange);
  background-color: #b2c2d866;
}

.nav__link.nav__link--dropdown.pick-up {
  background-color: var(--orange);
  color: var(--white);
  padding-top: 7px;
  padding-bottom: 7px;
}

.nav__link.nav__link--dropdown.hidden, .nav__link.nav__link--dropdown.hidden.w--current, .nav__link.tabelt {
  display: none;
}

.spacer {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5rem;
  display: flex;
  position: relative;
}

.spacer.spacer--sm {
  height: 10rem;
}

.spacer._1st-section {
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.nav__bg {
  z-index: 999;
  background-color: #000000d1;
  height: 400px;
  position: absolute;
  inset: 0% 0% auto;
}

.spacer__svg-embed {
  z-index: 0;
  width: 3.2rem;
  color: var(--gray-300);
  position: relative;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  position: relative;
}

.container.container--sm {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1040px;
  padding: 2px 0;
  display: flex;
  position: static;
}

.container.container--sm.space-down {
  padding-bottom: 56px;
}

.container.container--article {
  max-width: 75ch;
}

.container.container__footer {
  background-color: #002d9600;
  padding-top: 1.2rem;
  padding-bottom: 16px;
}

.container.cantainer__announcement-bar {
  min-width: 400px;
  padding: 1.5rem 2rem;
}

.img-text {
  justify-content: space-between;
  align-items: center;
  min-height: auto;
  padding-top: 6.2rem;
  padding-bottom: 6.2rem;
  display: flex;
  position: relative;
}

.img-text__img-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 860px;
  height: 100%;
  max-height: 478px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.img-text__img-wrapper.img-text__img-wrapper--left {
  max-height: 600px;
  margin-right: auto;
}

.img-text__img-wrapper.img-text__img-wrapper--right {
  margin-left: auto;
}

.img-text__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.img-text__img.s {
  top: 0;
}

.card {
  background-color: var(--white);
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 20px #363e4f0d, 0 1px 2px #363e4f1c;
}

.card.img-text__card {
  width: 100%;
  max-width: 640px;
  position: absolute;
}

.card.img-text__card.img-text__card--right {
  right: 0%;
}

.card.img-text__card.img-text__card--left {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
  left: 0;
}

.card.components__card {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.card.featured-post__card {
  padding: 0;
}

.card.card__event {
  margin-bottom: 2rem;
  position: static;
}

.text-block {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

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

.text-block__title.mb-8 {
  margin-bottom: 2rem;
}

.text-block__text {
  margin-bottom: 0;
  font-size: 1.3rem;
}

.card__subtitle {
  color: var(--gray-500);
  letter-spacing: .04rem;
  text-transform: uppercase;
  margin-top: .25px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.25;
}

.card__title {
  margin-top: .25rem;
  margin-bottom: .75rem;
  font-size: 1.75rem;
  line-height: 1.3;
}

.card__title.no-subtitle {
  margin-bottom: 2rem;
}

.card__text {
  margin-top: .7rem;
  margin-bottom: .7rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.img-text__map {
  width: 100%;
  height: 478px;
}

.nav__css-embed {
  display: none;
}

.nav__link-group {
  cursor: default;
  align-items: center;
  padding: 1rem 2rem;
  display: flex;
  position: relative;
}

.nav__dropdown {
  background-color: var(--white);
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-width: 12rem;
  padding: .5rem 1rem;
  display: flex;
  position: absolute;
  top: 90%;
  left: 50%;
  box-shadow: 0 8px 20px #363e4f0d, 0 1px 2px #363e4f1c;
}

.nav__link-text {
  white-space: nowrap;
}

.nav__toggle {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.nav__toggle-icon {
  height: 100%;
}

.nav__js-embed, .nav__mobile-title {
  display: none;
}

.footer {
  background-color: #002d9600;
  background-image: linear-gradient(160deg, #000207, #081542 23%, #0e328d 51%, #081542 75%, #000207);
  padding-bottom: 0;
  position: relative;
}

.footer__brand {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  margin-bottom: 0;
  display: flex;
}

.footer__content {
  justify-content: space-around;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.footer__group {
  color: #fff9;
  width: 40%;
  position: relative;
  top: 37px;
}

.footer__group.centerred {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
  top: 0;
}

.footer__group.right-div {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
}

.footer__title {
  color: var(--gray-100);
  margin-bottom: 1.25rem;
  font-size: 2rem;
}

.footer__title.centered {
  text-align: center;
}

.footer__text {
  color: var(--gray-100);
  margin-bottom: 0;
  text-decoration: none;
}

.footer__text:hover {
  color: var(--secondary-200);
}

.footer__link {
  color: var(--gray-500);
  line-height: 1.8;
  display: block;
}

.footer__link:hover {
  color: var(--white);
}

.footer__colophon {
  color: var(--gray-500);
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer__colophon-content {
  justify-content: space-between;
  align-items: center;
  padding-top: .3rem;
  padding-bottom: .3rem;
  display: flex;
}

.image {
  opacity: 1;
  width: 70%;
  max-width: none;
  height: auto;
  min-height: auto;
  display: block;
  overflow: visible;
}

.banner-plax {
  z-index: 0;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  min-height: 30rem;
  max-height: 44rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-plax.banner-plax--short {
  background-image: linear-gradient(#00000057, #00000057), url('../images/HOME-SLIDER-1.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  height: 460px;
  min-height: auto;
  max-height: none;
  padding-top: 0;
}

.banner-plax.banner-plax--short.lunch {
  background-image: linear-gradient(#0000005e, #0000005e), url('../images/20220610_162408.jpg');
  height: 450px;
}

.banner-plax.banner-plax--short.breakfast {
  background-image: linear-gradient(#00000059, #00000059), url('../images/20240925_185227.jpg');
}

.banner-plax.banner-plax--short.about {
  background-image: linear-gradient(#00000042, #00000042), url('../images/IMG_20250904_163949-1.jpg');
  background-position: 0 0, 50% 70%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: 50vh;
}

.banner-plax.banner-plax--short.hours {
  background-image: linear-gradient(#00000059, #00000059), url('../images/IMG_20250904_163949-3.jpg');
  background-position: 0 0, 0%;
}

.banner-plax.banner-plax--short.contact {
  background-image: linear-gradient(#0000002b, #0000002b), url('../images/IMG_20250904_163949-1.jpg');
  background-position: 0 0, 50% 60%;
}

.banner-plax.banner-plax--short.galery {
  background-image: linear-gradient(#00000061, #00000061), url('../images/IMG_20250904_164112-1.jpg');
  height: 50vh;
}

.banner-plax.banner-plax--left {
  justify-content: flex-start;
}

.banner-plax__img {
  opacity: .4;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  transform: scale(1.2);
}

.banner-plax__img.banner-plax__img--dark {
  opacity: .25;
}

.banner-plax__title {
  margin-top: 6.15rem;
  margin-bottom: 1rem;
}

.banner-plax__title.banner-plax__title--short {
  margin-bottom: 1rem;
}

.banner-plax__content {
  z-index: 1;
  color: var(--white);
  text-align: left;
  background-image: none;
  align-items: center;
  display: flex;
  position: relative;
}

.banner-plax__content.banner-plax__content--center {
  background-image: none;
}

.banner-plax__content.banner-plax__content--center.banner-plax__content--pt-16 {
  z-index: 9999;
  padding-top: 0;
}

.banner-plax__content.banner-plax__content--left {
  margin-left: 6rem;
}

.banner-plax__content-wrapper {
  max-width: 42rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.banner-plax__content-wrapper.banner-plax__content-wrapper--center {
  text-align: center;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.banner-plax__cta {
  margin-bottom: 2rem;
}

.footer__social-wrapper {
  grid-column-gap: .875rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 1rem;
  display: grid;
}

.footer__social-link {
  width: 1.5rem;
  color: var(--gray-500);
  text-align: center;
  line-height: 1;
  text-decoration: none;
}

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

.footer__social-link.is-hidden.w--current {
  display: none;
}

.form__wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.form__wrapper.form__wrapper--grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: end;
  display: grid;
}

.form__input {
  border-style: none none dashed;
  border-width: 1px;
  border-color: black black var(--gray-800);
  height: 3rem;
  color: var(--gray-800);
  letter-spacing: .04rem;
  background-color: #0000;
  margin-bottom: 0;
  margin-right: 1rem;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: 0 0 #0000;
}

.form__input:focus {
  box-shadow: 0 2px 0 0 var(--primary-400);
  border-bottom-color: #0000;
}

.form__input::placeholder {
  color: var(--gray-800);
  font-weight: 400;
}

.form__input.form__input--white {
  border-bottom-style: solid;
  border-bottom-color: var(--white);
  color: var(--white);
}

.form__input.form__input--white:focus {
  border-bottom-color: var(--primary-400);
  box-shadow: 0 1px 0 0 var(--primary-400);
}

.form__input.form__input--white::placeholder {
  color: var(--white);
}

.form__input.form__input--mr-0 {
  margin-right: 0;
}

.form__input-flex-wrapper {
  flex: none;
  align-items: flex-end;
  width: 100%;
  margin-top: 1rem;
  margin-right: 1rem;
  display: flex;
  position: relative;
}

.form__input-flex-wrapper.wrap {
  flex-wrap: wrap;
}

.form.card {
  margin-bottom: 0;
}

.banner-plax__text {
  margin-bottom: 2rem;
  font-weight: 400;
}

.featured-post__list {
  display: flex;
}

.featured-post__item {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.featured-post__img-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 16rem;
  display: flex;
  overflow: hidden;
}

.featured-post__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
}

.featured-post__img:hover {
  transform: scale(1.05);
}

.featured-post__content {
  background-color: #ffffffb3;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
}

.featured-post__title-link {
  color: var(--gray-900);
  text-decoration: none;
}

.featured-post__pub-date {
  color: var(--gray-500);
  text-transform: uppercase;
  margin-top: .25rem;
  margin-bottom: .5rem;
  font-size: .75rem;
}

.featured-post__title {
  margin-bottom: .25rem;
}

.featured-post__card-wrapper {
  flex: 1;
  width: 90%;
  display: flex;
  transform: translate(0, -4rem);
}

.featured-post__empty-state {
  background-color: var(--gray-200);
  color: var(--gray-500);
  text-align: center;
  padding: 2rem 1rem;
}

.post__rich-text {
  padding-bottom: 2rem;
}

.hero__logo {
  opacity: 1;
  object-fit: contain;
  width: 100%;
  max-width: none;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.hero__logo.hero__logo--vert {
  display: block;
}

.standalone-quote__title {
  text-align: center;
}

.standalone-quote.pt-20 {
  margin-top: 5rem;
}

.standalone-quote__attribution {
  color: var(--gray-500);
  text-align: center;
}

.form__success {
  border: 1px solid var(--primary-500);
  color: var(--gray-800);
  text-align: left;
  background-color: #0000;
  border-radius: 1px;
}

.form__success.form__success--white {
  border-color: var(--white);
  color: var(--white);
}

.form__error {
  border: 1px solid var(--error);
  color: var(--error);
  background-color: #0000;
}

.recaptcha {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.menu-item__name {
  color: var(--gray-800);
  margin-right: .2rem;
  font-weight: 900;
}

.menu-item__ingredients {
  color: var(--gray-600);
  margin-right: .5rem;
  font-size: .875rem;
  font-style: italic;
}

.menu-item {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.menu-group {
  margin-bottom: 3rem;
}

.menu-item__info {
  align-items: flex-end;
  display: flex;
}

.menu-item__price {
  color: var(--gray-600);
  font-size: .875rem;
  font-style: italic;
}

.menu-item__dots {
  border-top: 1px dotted var(--gray-400);
  flex: 1;
  height: 1px;
  margin-right: .5rem;
  padding-bottom: .35rem;
}

.menu-group__empty {
  display: none;
}

.menu-group__description {
  color: var(--gray-600);
}

.menu-item__simple {
  align-items: flex-end;
  display: flex;
}

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

.event__title {
  font-family: Playfair Display, sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
}

.event__date {
  color: var(--gray-600);
  margin-top: .5rem;
  font-size: .825rem;
  font-weight: 400;
}

.rich-text-block {
  margin-top: 1.25rem;
}

.announcement-bar {
  z-index: 100;
  position: fixed;
  inset: auto 0% 0%;
}

.announcement-bar.card {
  padding: 0;
  transition: opacity .2s;
  inset: auto 1rem 1rem auto;
}

.announcement-bar.card.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.announcement-bar__link {
  background-color: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  text-decoration: none;
}

.announcement-bar__link:hover {
  color: var(--primary-500);
}

.announcement-bar__text {
  text-align: left;
  max-width: 360px;
  overflow: clip;
}

.announcement-bar__title {
  margin-bottom: .5rem;
  font-family: Playfair Display, sans-serif;
  font-size: 1.2rem;
}

.announcement-bar__title.announcement-bar__title--empty {
  margin-bottom: 0;
}

.announcement-bar__close {
  z-index: 101;
  cursor: pointer;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  transition: color .2s;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.announcement-bar__close:hover {
  color: var(--primary-500);
}

.announcement-bar--hide-embed, .resy-js {
  display: none;
}

.form__textarea {
  border-style: none none dashed;
  border-width: 1px;
  border-color: black black var(--gray-800);
  min-width: 100%;
  max-width: 100%;
  min-height: 8rem;
  color: var(--gray-800);
  letter-spacing: .04rem;
  background-color: #0000;
  margin-bottom: 0;
  margin-right: 1rem;
  padding: .825rem 1.25rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  box-shadow: 0 0 #0000;
}

.form__textarea:focus {
  box-shadow: 0 2px 0 0 var(--primary-400);
  border-bottom-color: #0000;
}

.form__textarea::placeholder {
  color: var(--gray-800);
  font-weight: 400;
}

.form__textarea.form__textarea--mr-0 {
  margin-right: 0;
}

.form__columns {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.form__title {
  margin-bottom: 1rem;
}

.form__description {
  color: var(--gray-800);
  margin-bottom: 2rem;
}

.footer__colophon-year {
  margin-left: .2rem;
  margin-right: .2rem;
}

.footer__colophon-wrapper {
  background-color: #000;
  width: 100%;
  margin-top: 3.1rem;
  margin-bottom: 0;
}

.menu-item__tag {
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  margin-left: .2rem;
  margin-right: .2rem;
  display: flex;
}

.menu-item__name-wrapper {
  align-items: center;
  margin-right: .3rem;
  display: flex;
}

.announcement-bar__empty {
  padding: 0;
}

.loading {
  z-index: 1000;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading__image {
  object-fit: contain;
  width: 3.5rem;
  display: block;
}

.loading__css {
  display: none;
}

.loading__spinner {
  border-top: 1px solid #000;
  border-bottom: 0 solid #0000;
  border-left: 0 solid #0000;
  border-right: 1px solid #0000;
  border-radius: 7rem;
  width: 7rem;
  height: 7rem;
  position: absolute;
}

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

.menu__disclaimer {
  text-align: left;
  font-style: italic;
}

.menu__key {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 0;
  padding-bottom: 1.5rem;
  display: flex;
}

.menu__key-wrapper {
  align-items: center;
  display: flex;
}

.menu__key-icon {
  display: flex;
}

.menu__key-desc {
  margin-left: 4px;
  font-size: .75rem;
  line-height: 1;
}

.menu-item__disclaimer {
  color: var(--error);
  margin-right: .2rem;
  font-weight: 900;
}

.menu__disclaimer-wrapper {
  display: flex;
}

.menu__disclaimer-mark {
  color: var(--error);
  margin-right: .4rem;
  font-weight: 700;
}

.img-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area Area ."
                 ". . ."
                 ". Area-2 Area-2"
                 ". . ."
                 ". . ."
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.img-grid__lighbox-link {
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.img-grid__img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .2s, opacity .2s;
}

.img-grid__img:hover {
  opacity: .8;
  transform: scale(1.1);
}

.announcement-bar__text-wrapper {
  grid-column-gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.announcement-bar__icon {
  display: flex;
}

.announcement-bar__close-icon {
  z-index: 101;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: .8rem;
  transition: color .2s;
  display: flex;
  position: static;
  inset: 0% 0% auto auto;
}

.announcement-bar__close-icon:hover {
  color: var(--primary-500);
}

.hidden {
  display: none;
}

.slider {
  height: 100vh;
  position: static;
  inset: 0%;
}

.left-arrow, .right-arrow {
  display: none;
}

.slide {
  background-image: url('../images/Greek-Salad.jpg');
  background-position: 0 0;
  background-size: cover;
}

.slide-nav {
  display: none;
}

.section {
  margin-top: 0;
}

.div-block {
  background-image: linear-gradient(#000, #0000);
  height: 300px;
  position: static;
  inset: 0% 0% auto;
}

.container-2 {
  max-width: 1290px;
  padding-left: 15px;
  padding-right: 15px;
}

.div-block-2 {
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding-left: 23px;
  padding-right: 23px;
  display: flex;
}

.div-block-3 {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  padding-top: 100px;
  display: flex;
}

.text-block-2 {
  font-weight: 700;
}

.heading {
  color: var(--orange);
  padding-right: 49px;
}

.text-block-3 {
  font-size: 1.375rem;
}

.section-2 {
  justify-content: center;
  align-items: center;
  padding-left: 55px;
  display: flex;
  position: relative;
}

.section-2.section-3 {
  padding: 62px 31px;
}

.section-2.section-3.section-4 {
  background-image: url('../images/20240925_185247.jpg');
  background-position: 50% 75%;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding: 0 33px;
  display: block;
}

.div-block-4 {
  width: 50%;
}

.mask-img {
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.movement {
  position: relative;
  overflow: hidden;
}

.movement-inverse {
  height: 100%;
  position: relative;
}

.image-size-one.about-three {
  width: auto;
  height: 700px;
  position: relative;
}

.image-inverse-one {
  vertical-align: baseline;
  width: auto;
  max-width: none;
  height: 120%;
  position: absolute;
  inset: 0 0 0 20px;
}

.container-img.image-height-auto.image-absolute-ten.amout-three-side-img {
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  padding-left: 0;
  display: flex;
}

.overlay-image-two {
  background-color: #0b0f12;
  display: none;
  position: absolute;
  inset: 0%;
}

.home-three-food-symbolic-lightbox {
  flex: 1;
  max-width: 30%;
}

.lightbox-link {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 222px;
  height: 222px;
  display: flex;
  position: relative;
}

.rotate-image {
  object-fit: cover;
  height: auto;
}

.play-icon {
  object-fit: cover;
  width: 124px;
  position: absolute;
}

.about-three-food-symbolic-text {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 67px;
  padding-right: 67px;
  display: flex;
}

.about-three-food-symbolic-text.about-three-creativity-block {
  background-color: #ffffffe6;
  justify-content: center;
  align-items: flex-start;
  max-width: 50%;
  height: auto;
  padding: 11px 4%;
}

.image-height-auto.align-left.margin-bottom-twenty {
  align-self: flex-start;
  width: 60px;
  max-width: 60%;
  margin-bottom: 0;
}

.image-height-auto.align-right.margin-top-fifty {
  align-self: flex-end;
  width: 60px;
  margin-top: 0;
}

.brown-text {
  color: var(--dark-blue);
  text-align: center;
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 0;
}

.chef-text.brown-chef-text {
  color: #1975c0;
  margin-top: 20px;
  padding-left: 0;
}

.larger-container {
  width: 100%;
  max-width: 1920px;
  padding: 129px 14px;
}

.div-block-5 {
  background-color: #00a2ffbf;
  background-image: linear-gradient(#00a2ff73, #00a2ff73), url('../images/6784299ddafe38769d1892db_64af816e6d4884f330ff4ade_About-Three-Food-Mood-Bg.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 54%;
  max-width: none;
  margin-top: 0;
  padding: 25px 3%;
  display: flex;
}

.small-heading-text {
  text-transform: uppercase;
}

.small-heading-text.color-white {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}

.margin-top-zero.color-white {
  width: 100%;
  color: var(--white);
  text-align: left;
  text-transform: capitalize;
  font-size: 2.8rem;
}

.blockquote-text.color-white {
  color: var(--white);
  padding-top: 15px;
  padding-bottom: 24px;
  font-size: 1.275rem;
  font-weight: 400;
}

.color-white {
  color: var(--white);
  margin-bottom: 10px;
}

.about-three-section-four {
  background-color: #fff;
  padding-top: 62px;
  padding-bottom: 62px;
}

.small-container {
  max-width: 1290px;
  padding-left: 15px;
  padding-right: 15px;
}

.small-container.no-padding {
  justify-content: flex-start;
  align-items: center;
  height: auto;
  padding-left: 50px;
  display: flex;
}

.hunngry-journey-block {
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.div-block-6 {
  background-color: var(--orange);
  width: 100px;
  height: 2px;
}

.heading-2 {
  color: var(--dark-blue);
  text-align: center;
  text-transform: uppercase;
  margin-left: 31px;
  margin-right: 31px;
  font-size: 5rem;
}

.heading-2.smaller-text {
  color: var(--orange);
  font-size: 3rem;
}

.paragraph {
  text-align: center;
  padding-left: 9%;
  padding-right: 9%;
  line-height: 150%;
}

.about-three-section-five {
  background-image: url('../images/IMG_20250904_163949-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 768px;
  display: flex;
}

.margin-top-ten.margin-bottom-twentyfive {
  color: var(--dark-blue);
  text-align: left;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 25px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}

.paragraph-2 {
  text-align: left;
  line-height: 150%;
}

.container-3 {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 4.6em 2em 4em;
  display: block;
}

.container-3.hero-container {
  z-index: 1;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  padding: 10em 0 4.7em;
  display: flex;
  position: relative;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.online-text {
  color: #8fa2a0;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 14.4px;
}

.online-reservation {
  background-color: #0e0d0ca3;
  flex-direction: column;
  justify-content: space-between;
  padding: 3em 2em;
  display: flex;
}

.form-2 {
  width: 100%;
}

.fade-in-move-on-scroll {
  margin-bottom: 10px;
}

.button {
  z-index: 999;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--error);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px #fff;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color .35s, color .35s;
  display: flex;
}

.button:hover {
  color: #151515;
  background-color: #fff;
}

.button.reverse-button {
  color: #d3433b;
  border-color: #d3433b;
}

.button.reverse-button:hover {
  background-color: #0e0d0c;
  border-color: #0e0d0c;
}

.black-text {
  color: #000;
}

.contact-section-bg {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.content-panel {
  color: #545454;
  justify-content: space-between;
  width: 100%;
  line-height: 1.5;
}

.error-message {
  color: #151515;
  text-align: center;
  background-color: #ffdede;
  border-style: none;
  border-width: 0;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
}

.information-holder {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 21px;
  display: grid;
}

.flex-center-text {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.section-3 {
  position: relative;
}

.section-3.overflow-hidden {
  background-image: linear-gradient(#000, #0e0d0c00 28%);
  overflow: hidden;
}

.section-gradient-top-color {
  z-index: 2;
  background-image: linear-gradient(#151515 9%, #15151533);
  position: absolute;
  inset: 0%;
}

.divider-silver {
  background-color: #8fa2a0;
  flex-direction: column;
  align-items: center;
  width: 2px;
  height: 40px;
  margin: 2em auto;
}

.divider-silver.div2 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.form-input-field {
  color: #fff;
  text-align: left;
  background-color: #1a1b1c00;
  background-image: url('../images/Icon.svg');
  background-position: 7%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #fff6;
  height: 100%;
  margin-bottom: 1em;
  padding: 6px 12px 6px 49px;
}

.form-input-field::placeholder {
  color: #fff6;
}

.form-input-field._2 {
  background-color: #1a1b1c00;
  background-image: url('../images/Icon-1.svg');
  border-color: #fff6;
  height: 100%;
  padding-left: 51px;
}

.form-input-field._3 {
  background-color: #1a1b1c00;
  background-image: url('../images/Icon-2.svg');
  border-color: #fff6;
  height: 100%;
  margin-bottom: 1.3em;
}

.form-input-field.textarea-field {
  background-image: none;
  min-height: 120px;
  padding: 1em;
}

.reservation-contact {
  color: #151515;
  background-color: #ebebeb;
  background-image: url('../images/BG-Noise_1BG Noise.webp');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  align-items: center;
  padding: 3em 1.4em;
  display: flex;
}

.subheading {
  color: #8fa2a0;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.subheading.light-subheading {
  color: #8fa2a0;
}

.subheading.black {
  margin-bottom: 10px;
  font-size: 17px;
}

.subheading.white-text {
  color: #fff;
}

.section-heading-container-center {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-bottom: 5em;
  display: flex;
}

.section-heading-container-center.small-margins {
  margin-bottom: 1em;
}

.grid-reservation {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  width: 100%;
  margin: 12px 20px;
  padding-left: 93px;
  padding-right: 93px;
}

.form-button-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

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

.contact-info-list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 2em;
  display: flex;
}

.success-message {
  color: #151515;
  background-color: #85eb89;
  width: 100%;
  margin-top: 1em;
  padding: 1em;
}

.phone-number-span {
  color: #fff;
}

.contact-info-item {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.small-dot-image-icon {
  margin-top: 1em;
  margin-bottom: 1em;
}

.heading-3 {
  color: var(--dark-blue);
  font-size: 3rem;
}

.section-5 {
  padding-top: 73px;
  padding-bottom: 73px;
}

.grid {
  grid-template-rows: auto;
}

.text-block-4 {
  color: var(--orange);
  font-size: 4rem;
}

.text-block-5 {
  font-size: 1.3rem;
}

.text-block-6 {
  color: var(--secondary-100);
  margin-right: 9px;
  font-size: .8rem;
}

.bold-text {
  color: #c21f1f;
}

.social-icons {
  display: flex;
}

.social-icons.hero-icons {
  float: right;
  margin-top: 0;
  margin-bottom: 32px;
  margin-right: -4px;
}

.social-icons.hero-icons.hidden {
  display: none;
}

.social-icons.footer-icons {
  margin-top: 8px;
  margin-left: -4px;
  margin-right: -4px;
}

.footer-social-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-link-block-social {
  border: 1px solid var(--black);
  border-radius: 200px;
  margin-right: 0;
  padding: 10px 18px;
  transition: transform .45s;
  transform: translate(0);
}

.footer-link-block-social:hover {
  transform: translate(0, -5px);
}

.footer-link-block-social.d {
  border: 1px solid #000;
  border-radius: 200px;
  margin-right: 0;
  padding: 5px;
  font-size: 12px;
  line-height: 20px;
}

.image-27 {
  opacity: .7;
  font-size: 10px;
  line-height: 10px;
}

.div-block-7 {
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 12px;
  display: flex;
}

.image-28, .image-28.bigger, .image-28.a-bit-bigger {
  width: 30px;
  margin-right: 11px;
}

.image-29 {
  opacity: .71;
  margin: 6px 7px;
}

.image-30 {
  opacity: .7;
  margin: 7px;
}

.text-block-7 {
  font-size: .8rem;
}

.text-block-8 {
  color: #ffffff96;
  font-size: .8rem;
}

.text-block-8:hover {
  color: #ffffff96;
}

.text-block-8.link {
  color: var(--secondary-400);
}

.text-block-8.link:hover {
  color: #ffffff96;
}

.link {
  color: var(--orange);
  text-decoration: none;
}

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

.contact-block {
  background-color: #fff;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 56px 4%;
  display: flex;
  box-shadow: 0 0 0 1px #e3e3e3;
}

.section-6 {
  color: #111;
  text-align: center;
  background-color: #fff;
  padding: 77px 56px 0;
  position: relative;
}

.section-6.no-paddings {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
}

.contact-block-text {
  color: #777;
  margin-top: 12px;
  font-size: 1.2rem;
}

.contact-block-text.link {
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-block-text.link:hover {
  color: var(--orange);
  text-decoration: none;
}

.link-4 {
  color: #f03e5a;
  text-decoration: none;
}

.big-icon {
  width: 64px;
}

.big-icon.contact-block-icon {
  margin-bottom: 16px;
}

.contact-block-link {
  color: #111;
  text-transform: uppercase;
  margin-top: 16px;
  font-family: Oswald, sans-serif;
  font-size: 17px;
  text-decoration: none;
}

.contact-block-link:hover {
  color: var(--orange);
  text-decoration: underline;
}

.contact-blocks {
  width: 100%;
  padding-top: 1px;
  padding-bottom: 1px;
  display: flex;
}

.divider {
  border-style: solid none;
  border-width: 1px;
  border-color: var(--orange);
  width: 70px;
  height: 4px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.base-container {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.subtitle-all-caps-2 {
  color: var(--orange);
  text-align: left;
  text-transform: uppercase;
  font-size: 18px;
}

.review-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 500px;
  display: flex;
  position: relative;
}

.info-client-wrap {
  grid-column-gap: 15px;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.review-img-bg {
  object-fit: cover;
  width: 70%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.mask-testimonials {
  width: 100%;
}

.title-wrapper-center {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hidden-2 {
  display: none;
}

.slider-testimonials {
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  height: 200px;
  margin-top: 20px;
  margin-bottom: 70px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.heading-18 {
  text-transform: capitalize;
  font-weight: 600;
}

.heading-18.centered {
  text-align: center;
}

.slide-review {
  vertical-align: bottom;
  background-color: #f1f1f1;
  padding: 78px 30px;
}

.right-arrow-testimonials {
  color: #1c1c1c;
  width: 40px;
  height: 40px;
  font-size: 22px;
  transition: color .3s;
  inset: auto auto -30% 8%;
}

.right-arrow-testimonials:hover {
  color: #961719;
}

.paragraph-large {
  font-size: 18px;
  font-style: italic;
  line-height: 1.5em;
}

.name-client {
  font-size: 18px;
  font-weight: 600;
}

.left-arrow-testimonials {
  color: #1c1c1c;
  width: 40px;
  height: 40px;
  font-size: 22px;
  transition: color .3s;
  inset: auto auto -30% 0%;
}

.left-arrow-testimonials:hover {
  color: #961719;
}

.section-7 {
  padding: 0 0 6px;
  position: relative;
}

.icon {
  color: var(--orange);
}

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

.icon-2 {
  color: var(--orange);
}

.icon-2:hover {
  color: var(--black);
}

.div-block-8 {
  z-index: 9;
  color: var(--white);
  position: relative;
}

.link-5 {
  color: var(--orange);
  font-size: 1.3rem;
  text-decoration: none;
}

.div-block-9 {
  z-index: 99;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100px;
  display: grid;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-10 {
  background-image: url('../images/gps-point.png');
  background-position: 14%;
  background-repeat: no-repeat;
  background-size: 13px;
}

.div-block-11 {
  background-color: #fff;
  width: 25px;
  height: 1px;
  margin-left: 55px;
  margin-right: 17px;
  display: inline-block;
  position: relative;
  top: -3px;
}

.text-block-9 {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 12px;
  display: inline-block;
}

.div-block-12 {
  text-align: center;
  width: auto;
  margin-top: 24px;
}

.text-block-10 {
  width: auto;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 53px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  font-size: 12px;
}

.div-block-13 {
  background-color: #fff;
  width: 2px;
  height: 50px;
  margin-top: 52px;
  margin-left: auto;
  margin-right: auto;
}

.text-block-11 {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: capitalize;
  background-color: #232e2300;
  margin-right: 26px;
  padding-top: 2px;
  font-size: 12px;
}

.div-block-14 {
  z-index: 8;
  background-image: linear-gradient(#0000, #000);
  height: 200px;
  position: absolute;
  inset: auto 0% 0%;
}

.slide-3 {
  cursor: pointer;
  background-color: #000;
  background-image: url('../images/20220610_162408.jpg');
  background-position: 50%;
  background-size: cover;
  width: 185%;
  height: 400px;
  margin-left: 10px;
  margin-right: 5px;
}

.heading-19 {
  color: #debeb6;
  margin-left: 11px;
  margin-right: 11px;
  font-size: 60px;
  display: inline-block;
}

.heading-19.asdf {
  margin-left: 0;
}

.div-block-21 {
  background-color: #debeb6;
  width: 120px;
  height: 1px;
  margin-right: 2px;
  display: inline-block;
  position: relative;
  top: -20px;
}

.right-arrow-2 {
  opacity: 0;
  width: 220px;
  display: none;
}

.image-3 {
  float: right;
  width: 102px;
  margin-right: 200px;
  position: relative;
  top: 0;
}

.heading-20 {
  color: #3f455f;
  letter-spacing: 1px;
  margin-top: 41px;
}

.div-block-17 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 39px 50px;
  display: flex;
  overflow: hidden;
}

.heading-5 {
  z-index: 9999;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 15px;
  transition: opacity .2s;
  position: absolute;
  inset: auto 0% -12%;
}

.div-block-19 {
  background-color: #debeb6;
  width: 50px;
  height: 1px;
  display: inline-block;
}

.div-block-22 {
  height: auto;
  margin-top: 0;
  padding-top: 10px;
}

.div-block-18 {
  padding-left: 0;
}

.paragraph-3 {
  color: var(--gray-600);
  text-transform: none;
  margin-top: 37px;
  margin-bottom: 21px;
  font-size: 22px;
  line-height: 38px;
}

.columns {
  position: sticky;
  top: 88px;
  overflow: hidden;
}

.slide-4 {
  cursor: pointer;
  background-color: #000;
  background-image: url('../images/Steak.jpg');
  background-position: 50% 100%;
  background-size: cover;
  width: 170%;
  height: 400px;
  margin-right: 0;
}

.div-block-29 {
  opacity: 1;
}

.column-2 {
  padding-left: 0;
}

.slide-nav-2 {
  z-index: 500;
  text-align: left;
  height: 32px;
  font-size: 10px;
  position: absolute;
  inset: 1% 0% auto;
}

.text-block-12 {
  color: var(--gray-500);
  text-transform: uppercase;
  margin-left: 14px;
  font-size: 16px;
  display: inline-block;
  position: relative;
  top: 4px;
}

.columns-2 {
  height: auto;
}

.div-block-20 {
  text-align: right;
  justify-content: flex-end;
  align-items: flex-end;
  width: 580px;
  height: auto;
  padding-top: 27px;
  padding-right: 0;
  display: flex;
  position: relative;
  inset: auto 0% -82% auto;
}

.div-block-20.sdg {
  text-align: left;
  max-width: 100%;
  margin-bottom: 45px;
}

.slide-5 {
  cursor: pointer;
  background-color: #000;
  background-image: url('../images/20221002_145427.jpg');
  background-position: 50%;
  background-size: cover;
  width: 185%;
  height: 400px;
  margin-left: 5px;
}

.slide-2 {
  cursor: pointer;
  background-color: #000;
  background-image: url('../images/Greek-Salad_1.jpg');
  background-position: 50%;
  background-size: cover;
  width: 185%;
  height: 400px;
  margin-left: 10px;
  margin-right: 0;
}

.slider-2 {
  background-color: #ddd0;
  height: auto;
  padding-top: 0;
}

.mask {
  width: 40%;
  height: auto;
  margin-left: 0;
  padding-top: 45px;
  left: 0;
  overflow: visible;
}

.button-5 {
  border: 2px solid var(--primary-300);
  color: #3f455f;
  text-transform: capitalize;
  background-color: #3898ec00;
  background-image: url('../images/Arrow-pink.png');
  background-position: 90% 49%;
  background-repeat: no-repeat;
  background-size: 30px;
  margin-top: 21px;
  padding-top: 17px;
  padding-bottom: 16px;
  padding-right: 93px;
  font-weight: 500;
  transition: all .3s;
}

.button-5:hover {
  background-color: var(--primary-300);
  color: var(--primary-900);
  background-image: url('../images/blue-arrow.png');
}

.left-arrow-2 {
  opacity: 0;
  width: 890px;
  margin-left: -241px;
  display: block;
}

.column {
  padding-left: 0;
}

.paragraph-4 {
  color: #14314480;
  width: 580px;
  padding-top: 0;
  padding-left: 28px;
  padding-right: 21px;
  font-size: 16px;
  line-height: 28px;
}

.columns-3 {
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 49px;
  padding-right: 74px;
  display: flex;
}

.div-block-25 {
  background-image: url('../images/drink.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 522px;
  height: 670px;
  margin-top: 82px;
  margin-left: -140px;
}

.column-3 {
  padding-top: 26px;
  padding-right: 18px;
}

.div-block-33 {
  background-color: #debeb6;
  width: 120px;
  height: 1px;
  margin-right: 2px;
  display: inline-block;
  position: relative;
  top: -20px;
}

.div-block-34 {
  height: auto;
  margin-top: 48px;
}

.column-16 {
  padding-left: 0;
}

.columns-4 {
  height: auto;
}

.div-block-23 {
  background-color: #e3e2db;
  height: 1290px;
  padding-top: 40px;
  padding-bottom: 0;
  overflow: hidden;
}

.paragraph-5 {
  color: #14314480;
  width: 460px;
  max-width: 100%;
  margin-top: 17px;
  font-size: 16px;
  line-height: 28px;
}

.div-block-35 {
  text-align: right;
  width: 580px;
  height: 140px;
  padding-top: 27px;
  padding-right: 20px;
  position: relative;
  inset: auto 0% -83% auto;
}

.div-block-35.sdg {
  text-align: left;
  max-width: 100%;
  margin-bottom: 45px;
}

.heading-6 {
  color: #2b345a;
  text-transform: capitalize;
}

.paragraph-6 {
  color: #14314480;
  width: 460px;
  max-width: 100%;
  margin-top: 57px;
  font-size: 16px;
  line-height: 28px;
}

.button-6 {
  color: #3f455f;
  text-transform: capitalize;
  background-color: #3898ec00;
  background-image: url('../images/Arrow-pink.png');
  background-position: 90% 49%;
  background-repeat: no-repeat;
  background-size: 30px;
  border: 2px solid #debeb6;
  margin-top: 21px;
  padding-top: 17px;
  padding-bottom: 16px;
  padding-right: 93px;
  font-weight: 500;
  transition: all .3s;
}

.button-6:hover {
  background-color: #debeb6;
  background-image: url('../images/blue-arrow.png');
}

.div-block-24 {
  background-image: url('../images/bar.jpg');
  background-position: 50%;
  background-size: cover;
  width: 600px;
  max-width: 100%;
  height: 450px;
  margin-top: 40px;
}

.heading-8 {
  z-index: 5;
  float: left;
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  text-shadow: 1px 1px 6px #00000054;
  width: 710px;
  padding-top: 100px;
  padding-left: 35px;
  padding-right: 0;
  font-size: 80px;
  line-height: 110px;
  position: relative;
}

.div-block-36 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 6px;
  padding-top: 145px;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
}

.wrapper-horizontal-shop-2 {
  background-color: #0000;
  border-radius: 0;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding-top: 0;
  display: flex;
  position: sticky;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.carsy-services-list {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: flex;
}

.horizontal-shop {
  background-color: #0000;
  border-top: 60px #24242417;
  justify-content: center;
  align-items: center;
  height: 400vh;
  margin-left: 0;
  display: flex;
  position: relative;
}

.horizontal-shop:focus {
  box-shadow: inset 0 0 0 85px #ff00004a;
}

.horizontal-shop.content-wrap {
  z-index: 3;
  object-fit: fill;
  background-color: #0000;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  height: 300vh;
  padding-top: 66px;
  padding-bottom: 0;
  top: -66px;
}

.hide-slide-nav {
  display: none;
}

.horizontal-scrollable-section-shop {
  background-color: #0000;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 400vh;
  height: 100%;
  margin-left: 0;
  margin-right: 24px;
  display: flex;
}

.horizontal-scrollable-section-shop.auto {
  flex-direction: column;
  justify-content: center;
  width: auto;
  margin-left: 0;
}

.horizontal-scrollable-section-shop.auto._2 {
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 6px 30px 88px;
}

.slider-arrow-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.h2-black-title {
  margin-top: 0;
  margin-bottom: 0;
}

.black-subtitle {
  letter-spacing: 1px;
  border-left: 3px solid #eee809;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10px;
  font-weight: 300;
  line-height: 24px;
}

.white-line {
  background-color: #fff;
  width: 100%;
  height: 100%;
}

.solid-video-button-outline {
  border: 1px solid #ffffff1a;
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.scroll-line {
  background-color: #2c2c2c;
  border-radius: 20px;
  width: 70%;
  height: 1px;
  margin-left: 20px;
  display: block;
  position: static;
  inset: auto auto 5%;
}

.left-arrow-3 {
  z-index: 25;
  border: 1px #eef0f6;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-left: 0;
  display: flex;
  inset: auto auto -84px 0%;
  overflow: visible;
}

.left-arrow-3.right {
  left: 60px;
}

.left-arrow-3.right.hidden, .left-arrow-3.left.hidden {
  display: none;
}

.video-button-outline {
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  border: 1px #fff3;
  border-radius: 0%;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 48px;
  height: 48px;
  margin-right: 1px;
  padding: 0;
  display: grid;
  position: absolute;
  inset: auto;
}

.wrapper-line-indicator-2 {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 90%;
  display: flex;
  position: sticky;
  bottom: 5%;
}

.heading-indicator {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1;
}

.cards-slider {
  z-index: 50;
  background-color: #0000;
  width: 100%;
  height: 60%;
  display: flex;
  left: 58px;
  right: 59px;
}

.video-outline {
  border: 1px solid #eee809;
  border-radius: 0%;
  width: 48px;
  height: 48px;
  position: absolute;
}

.video-outline.bottom {
  inset: auto 0% 0% auto;
}

.invert-small {
  z-index: 15;
  height: 20px;
  position: relative;
}

.video-outline-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-outline-wrapper.bottom {
  position: absolute;
  inset: auto 0% 0% auto;
}

.video-outline-wrapper.top {
  position: absolute;
  inset: 0% auto auto 0%;
}

.card-slide {
  margin-right: 30px;
  left: 0;
}

.services-coll-item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.overflow-mask-shop {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-top: -73px;
  padding-top: 155px;
  padding-left: 70px;
  overflow: visible;
}

.cards-mask {
  width: 40%;
  max-width: 525px;
  overflow: visible;
}

.card-heading {
  color: #fff;
  text-align: center;
  width: auto;
  font-size: 38px;
  line-height: 1.2;
}

.submit-button-card-shop {
  color: #fff;
  background-color: #0000;
  margin-top: 40px;
  font-size: 25px;
  transition: color .4s ease-in-out;
}

.submit-button-card-shop:hover {
  color: #920707;
}

.content-block {
  background-color: #ffb28585;
  border: 3px solid #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.content-block.flex {
  background-color: #00000057;
  border-style: none;
  position: static;
}

.wrapper-line-indicator {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  width: 90%;
  display: flex;
  position: sticky;
  bottom: 7%;
}

.price {
  color: #ae81dc;
  text-align: center;
  margin-top: 0;
  font-size: 20px;
  line-height: 1;
}

.price.big {
  color: #c39d42;
  font-size: 55px;
}

.bold-text-2 {
  color: #ae81dc;
  font-weight: 400;
}

.bold-text-2.big {
  color: #920707;
}

.card-shop {
  background-color: #0000;
  border-radius: 0;
  flex: none;
  width: 500px;
  height: 500px;
  margin-left: 40px;
  margin-right: 40px;
  position: relative;
  overflow: visible;
}

.card-shop.auto {
  width: 700px;
  margin-left: 140px;
}

.card-shop.auto.collection-item-shop {
  border: 1px #000;
  align-self: flex-start;
  width: 600px;
  height: auto;
  margin: 0;
  position: static;
  left: 0;
}

.section-10 {
  z-index: 98;
  opacity: .8;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-bottom: 17px;
  display: flex;
  position: absolute;
  inset: auto 0% 5%;
}

.icon-scroll {
  border: 1px solid #fff;
  border-radius: 25px;
  width: 25px;
  height: 40px;
  position: relative;
}

.scroll-dot {
  background-color: #fff;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  inset: 10px auto auto 50%;
  transform: translate(-50%);
}

.menu-desc {
  border-bottom: 1px solid #0000001a;
  margin-bottom: 30px;
  padding-bottom: 15px;
}

.menu-grid {
  grid-column-gap: 19px;
  grid-row-gap: 20px;
  grid-template: "."
                 "."
                 "."
                 "."
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  display: grid;
}

.menu-item-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.menu-item-2.center {
  text-align: center;
  margin-bottom: 20px;
}

.menu-item-2.other {
  margin-bottom: 1rem;
}

.promotion-section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 110%;
}

.menu-title {
  color: #000;
  text-align: center;
  margin-top: 0;
  margin-bottom: .4rem;
  font-family: Great Vibes, cursive;
  font-size: 54px;
  font-weight: 400;
  line-height: 110%;
}

.menu-section-title {
  color: #000;
  text-align: left;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}

.menu-section-title.less-padding-down {
  text-align: center;
  margin-bottom: 10px;
}

.menu-section-title.less-padding-down.space-down {
  margin-bottom: 28px;
}

.paragraph-7 {
  width: auto;
  font-size: .8rem;
  line-height: 1.1;
}

.paragraph-7._100-width {
  width: auto;
}

.paragraph-7.no-padding-down {
  margin-bottom: 0;
}

.paragraph-7.centered {
  text-align: center;
}

.section-11 {
  background-color: var(--white);
  padding: 24px;
}

.price-2 {
  margin-left: 13px;
}

.price-2._1-rem {
  margin-bottom: 1rem;
}

.menu-line-item-wrap {
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 5px;
  display: flex;
}

.menu-line-item-wrap.other {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.promo-section-lead-in {
  text-align: center;
}

.menu-section {
  border: 1px solid #0000003b;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 20px;
  display: flex;
}

.menu-section.promotion-section {
  border-width: 8px;
  border-color: var(--orange);
  width: 100%;
  height: 100%;
  color: var(--gray-800);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.menu-section.promotion-section.full-colour-back {
  background-color: var(--orange);
}

.container-4 {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.container-4.space {
  margin-top: 20px;
}

.menu-item-wrap {
  margin-bottom: 0;
}

.menu-item-wrap._100 {
  width: 100%;
}

.menu-line {
  border-bottom: 1px solid #0000001a;
  flex: 1;
  height: 1px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 16px;
}

.promo-image-wrap {
  width: auto;
  margin-bottom: 20px;
}

.image-31 {
  max-width: none;
}

.reserve-image-block {
  background-image: url('../images/Bitmap2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 100px;
  display: flex;
}

.reserve-image-block.no-hight {
  padding: 42px;
}

.white-div-block {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 40px;
}

.paragraph-8 {
  color: #585858;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.paragraph-8.normal-paragraph {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

.paragraph-8.tiny-parahgraph {
  font-size: 14px;
}

.paragraph-8.small-paragraph {
  color: #33333380;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.paragraph-9 {
  color: #585858;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.paragraph-9.normal-paragraph {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

.paragraph-9.tiny-parahgraph {
  font-size: 14px;
}

.paragraph-9.small-paragraph {
  color: #33333380;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.paragraph-10 {
  color: #585858;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.paragraph-10.normal-paragraph {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
}

.paragraph-10.tiny-parahgraph {
  font-size: 14px;
}

.paragraph-10.small-paragraph {
  color: #33333380;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.utility-page-wrap {
  background-image: linear-gradient(#000000a3, #000000a3), url('../images/GALLERY-7.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  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;
  justify-content: flex-start;
  align-items: center;
  width: 260px;
  display: flex;
}

.text-block-13 {
  color: var(--white);
  margin-bottom: 27px;
}

.heading-21 {
  color: var(--white);
}

.image-32 {
  padding: 3px;
}

.bold-text-3 {
  font-size: 24px;
}

.div-block-37 {
  display: flex;
}

.div-block-38 {
  justify-content: space-between;
  align-items: stretch;
  width: 400px;
  display: flex;
}

.div-block-39 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-40 {
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 59px 50px 28px;
  display: flex;
}

.italic-text {
  font-size: 12px;
}

.link-6, .link-7 {
  color: var(--orange);
}

.div-block-41 {
  width: 49%;
}

.div-block-42 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  display: flex;
}

.div-block-43 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-44 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.italic-text-2 {
  font-size: .9rem;
  line-height: 1.3;
  position: relative;
  top: -8px;
}

.column-17 {
  position: relative;
}

.paragraph-11 {
  font-size: 1.1rem;
  line-height: 1.6;
}

.navbar {
  background-color: #0000;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  display: flex;
}

.nav-menu {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu.left {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
}

.nav-menu.right {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: flex-end;
  align-items: center;
}

.container-5 {
  width: 100%;
  max-width: none;
  display: flex;
}

.dropdown-list-2 {
  background-color: #fff;
  border-top: 3px #ed1c24;
  border-bottom: 3px solid #ed1c24;
  border-radius: 8px;
  padding: 20px;
  display: none;
  inset: 0% auto auto 108%;
}

.dropdown-list-2.commercial {
  background-color: #ed1c24;
  display: none;
}

.dropdown-list-2.commercial.residential {
  background-color: #fff;
  border-top-style: none;
  border-bottom-style: none;
  margin-bottom: 12px;
  padding: 7px 12px;
  display: none;
  position: static;
}

.dropdown-list-2.commercial.residential.w--open {
  display: block;
}

.link-8 {
  color: #161c24;
}

.down-icon {
  color: #161c24;
  padding-left: 14px;
  font-size: 12px;
  display: block;
}

.service-image-one {
  height: 100%;
}

.service-image-three {
  height: 100%;
  position: absolute;
}

.grid-3 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-bottom: 17px;
}

.mega-menu-block {
  background-color: #fff;
  width: 100%;
  padding: 10px 16px;
  display: block;
}

.mega-menu-block.tablet {
  display: flex;
}

.flex-block-5 {
  color: #727f90;
  background-color: red;
  border-radius: 14px;
  justify-content: flex-start;
  align-items: center;
  height: 150px;
  padding: 20px;
}

.bold-text-4 {
  font-size: 18px;
  font-weight: 600;
}

.design-link {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  transition: color .35s;
}

.design-link:hover {
  color: #068fff;
}

.design-link.revert-colour {
  color: #068fff;
  text-transform: none;
}

.design-link.revert-colour:hover {
  color: #fff;
}

.menu-link {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff;
  letter-spacing: .45px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  display: flex;
}

.menu-link.mega-menu {
  padding-top: 15px;
  padding-bottom: 15px;
}

.div-block-45 {
  background-color: #000;
  border-radius: 14px;
  height: 150px;
  padding: 20px;
}

.text-block-14 {
  color: #bec3ca;
}

.text-block-15 {
  color: #fff;
  font-weight: 500;
}

.service-image-eight {
  height: 100%;
  position: absolute;
}

.flex-block-3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-end;
  align-items: flex-start;
  padding-left: 19px;
  padding-right: 19px;
  position: absolute;
  inset: auto 0% 6%;
}

.flex-block-4 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.service-image-four {
  height: 100%;
  position: absolute;
}

.link-2 {
  color: #bec3ca;
}

.link-9 {
  color: #fff;
  font-weight: 700;
  transition: all .425s;
}

.link-9:hover {
  font-size: 20px;
}

.service-name {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.service-name.service-name-eight, .service-name.service-name-nine {
  justify-content: flex-start;
  align-items: flex-start;
}

.service-name.service-name-three {
  color: #161c24;
  justify-content: flex-start;
  align-items: flex-start;
}

.service-name.service-name-six {
  justify-content: flex-start;
  align-items: flex-start;
}

.service-name.service-name-two {
  color: #161c24;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-name.service-name-one {
  color: #161c24;
  justify-content: flex-start;
  align-items: flex-start;
}

.service-name.service-name-four {
  color: #068fff;
  justify-content: flex-start;
  align-items: flex-start;
}

.service-name.service-name-five {
  justify-content: flex-start;
  align-items: flex-start;
}

.service-name.service-name-five.service-name-ten {
  text-align: left;
}

.service-name.service-name-seven {
  justify-content: flex-start;
  align-items: flex-start;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr 1fr 1fr;
  width: 100%;
}

.service-image-two {
  height: 100%;
  position: absolute;
}

.social-icon-wrapper {
  border: 1px solid #161c2426;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: relative;
}

.social-icon-wrapper.border-color-white {
  border-color: #fff6;
  transition: all .45s;
}

.social-icon-wrapper.border-color-white:hover {
  background-color: #068fff;
  border-color: #068fff;
}

.service-image-five {
  height: 100%;
  position: absolute;
}

.div-block-46 {
  background-color: #cacaca42;
  border-radius: 14px;
  width: 100%;
  padding: 10px;
}

.heading-style-h4 {
  color: #161c24;
  letter-spacing: 0;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41667;
}

.heading-style-h4.text-color-white {
  font-size: 20px;
}

.div-block-47 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/plumber-at-work-in-a-bathroom-1024x683-1-768x512.jpg');
  background-position: 0 0, 70%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.service-list-left-image {
  z-index: 2;
  flex: 1;
  justify-content: center;
  align-items: center;
  max-width: 330px;
  margin-bottom: 20px;
  margin-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-image-ten {
  height: 100%;
  position: absolute;
}

.text-block-22 {
  color: #fff;
}

.mega-menu-dropdown {
  display: none;
  position: absolute;
  inset: 59% 0% auto;
}

.mega-menu-dropdown.w--open {
  background-color: #ddd0;
  justify-content: center;
  align-items: center;
  width: 260px;
  display: flex;
  left: -42%;
}

.mega-menu-dropdown.otehr {
  background-color: #fff;
  display: flex;
  top: 60%;
  left: 58%;
  right: 54%;
}

.mega-menu-dropdown.otehr.w--open {
  display: none;
  left: 5%;
}

.mega-menu-dropdown.contact {
  display: flex;
  top: 60%;
}

.mega-menu-dropdown.contact.w--open {
  left: -15%;
}

.mega-menu-main {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: stretch;
}

.icon-3 {
  margin: 0;
  position: static;
}

.dropdown-2 {
  width: 100%;
}

.dropdown-2.other {
  margin-top: 2px;
  margin-bottom: 2px;
}

.dropdown-2.other.residential {
  color: #fff;
  background-color: #15141c00;
  border-radius: 8px;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-link {
  font-size: 18px;
  font-weight: 400;
}

.nav-link:hover {
  color: #068fff;
}

.mega-menu-container {
  max-width: 1730px;
  padding-left: 0;
  padding-right: 0;
}

.dropdown-toggle {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 3px 0;
  display: block;
}

.service-image-six {
  height: 100%;
  position: absolute;
}

.heading-style-h3 {
  color: #068fff;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.33333;
}

.heading-style-h3:hover {
  color: #068fff;
}

.dropdown {
  position: relative;
}

.dropdown.dropdown-static {
  margin-left: 0;
  margin-right: 0;
  position: static;
}

.paragraph-12 {
  color: #bec3ca;
}

.dropdown-link-3 {
  color: #15141c;
  letter-spacing: .3px;
  text-transform: uppercase;
  width: 100%;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.dropdown-link-3:hover, .dropdown-link-3.w--current {
  color: #ed1c24;
}

.dropdown-link-3.residential {
  color: #161c24;
  padding: 0;
  font-size: 16px;
}

.dropdown-link-3.residential:hover {
  color: #068fff;
}

.footer-top-social-links {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.service-image-seven, .service-image-nine {
  height: 100%;
  position: absolute;
}

.container-6 {
  width: 100px;
  margin-left: 29px;
  margin-right: 29px;
  display: none;
}

.image-33 {
  width: 300px;
  max-width: none;
  height: 200px;
}

.brand {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-left: 13px;
  margin-right: 13px;
  display: flex;
}

.brand.w--current {
  margin-top: 0;
}

.brand.tablet {
  display: none;
}

.image-34 {
  width: 100%;
  max-width: none;
}

.link-for-dropdown {
  color: #fff;
  text-decoration: none;
}

.link-for-dropdown:hover {
  color: #d81e05;
}

.navbar-menu-dropdown {
  margin-left: -.8984px;
  margin-right: -.8984px;
}

.dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: .5rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.dropdown-toggle-2 {
  color: #fff;
  align-items: center;
  padding: .75rem 30px .75rem 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  transition: all .3s;
  display: flex;
}

.dropdown-link {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  color: #fff;
  border-radius: .2rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: grid;
}

.dropdown-link:hover {
  background-color: #5f1212;
}

.text-block-28 {
  text-align: center;
  font-size: 20px;
  line-height: 22px;
}

.text-block-27 {
  font-size: 20px;
  font-weight: 400;
}

.dropdown-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.dropdown-list {
  width: 220px;
  display: flex;
  left: -47px;
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #10182808;
}

.dropdown-list.w--open {
  width: 220px;
  height: auto;
  box-shadow: none;
  color: #fff;
  background-color: #191717;
  background-image: url('../images/3.png');
  background-position: 0 0;
  background-size: 150px;
  border: 1px #403939;
  border-radius: .2rem;
  padding: 0;
  display: none;
  right: -100%;
}

.image-35 {
  width: 100%;
}

.body {
  background-color: #fff;
}

.dropdown-toggle-3 {
  color: #fff;
  align-items: center;
  padding: .75rem 30px .75rem 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  transition: all .3s;
  display: flex;
}

.text-block-29 {
  text-align: center;
  font-size: 20px;
  line-height: 22px;
}

.text-block-30 {
  font-size: 20px;
  font-weight: 400;
}

.dropdown-icon-2 {
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 5px;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.dropdown-list-3 {
  width: 220px;
  display: none;
  left: -49px;
}

.dropdown-list-3.w--open {
  width: 220px;
  height: auto;
  box-shadow: none;
  color: #fff;
  background-color: #fff0;
  border: 1px #403939;
  border-radius: .2rem;
  padding: 0;
  left: -50px;
  right: 0%;
}

.div-block-49 {
  justify-content: center;
  align-items: center;
  margin-top: 27px;
  margin-bottom: 0;
  display: flex;
}

.div-block-49.left-align {
  justify-content: flex-start;
  align-items: center;
}

.link-block {
  width: 45px;
  margin-left: 6px;
  margin-right: 6px;
}

.link-block.smaller-icon {
  width: 35px;
}

.image-36 {
  width: auto;
  margin-right: 0;
}

.footer-column {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 40%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.form-3 {
  width: 100%;
}

.success-message-2 {
  color: #151515;
  background-color: #fff;
  width: 100%;
  margin-top: 1em;
  padding: 1em;
}

.div-block-100 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.bg-section {
  background-color: #111;
  border: 12px solid #fff;
  padding: 120px 40px;
}

.bg-section.footer-section {
  background-color: #c92c25;
  background-image: url('../images/bg-pattern.jpg');
  background-position: 0 0;
  background-size: 200px;
  padding: 21px 0 0;
  position: relative;
}

.text-field-2 {
  color: #111;
  background-image: url('../images/Icon-Phone.svg');
  background-position: 2%;
  background-repeat: no-repeat;
  background-size: 20px;
  height: 100%;
  margin-bottom: 1rem;
  padding-left: 44px;
}

.text-field-2:hover, .text-field-2:active, .text-field-2:focus, .text-field-2:focus-visible, .text-field-2[data-wf-focus-visible], .text-field-2::placeholder {
  color: #111;
}

.text-field-2.small-text {
  background-image: url('../images/Icon-Mail.svg');
  background-position: 1%;
  background-size: 20px;
}

.text-field-2.message-field {
  background-image: url('../images/Icon-Message.svg');
  background-position: 1% 7%;
  background-size: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  height: 150px;
  display: flex;
}

.less-bottome-space {
  margin-bottom: 0;
}

.div-block-70 {
  text-align: center;
  width: 60%;
}

.text-block-66 {
  color: #fff;
  text-align: left;
  margin-bottom: 28px;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 200;
}

.slider-3 {
  justify-content: center;
  align-items: center;
  height: 800px;
  display: flex;
}

.footer-link {
  color: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: inline-block;
}

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

.footer-link.w--current {
  margin-top: 8px;
  margin-bottom: 8px;
}

.text-block-67 {
  margin-bottom: 10px;
}

.name-client-2 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.section-12 {
  width: 100vw;
  padding: 126px 40px;
  position: relative;
}

.section-12.light-background {
  background-color: #fafafa;
  padding: 158px 0;
}

.div-block-78 {
  background-image: url('../images/Main-catering-Image.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 360px;
  margin-bottom: 59px;
  display: flex;
}

.html-embed-6 {
  text-align: center;
  margin-bottom: 0;
  margin-right: 18px;
  line-height: 16px;
}

.footer-link-badge {
  align-items: center;
  display: flex;
}

.div-block-76 {
  flex-flow: column;
  display: flex;
  overflow: hidden;
}

.footer-email {
  color: #c33a34;
  margin-top: -12px;
  margin-bottom: 4px;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: none;
}

.form-input-field-2 {
  color: #000;
  text-align: left;
  background-color: #ffffffbf;
  background-image: url('../images/Icon-Name1.svg');
  background-position: 5%;
  background-repeat: no-repeat;
  background-size: auto 40%;
  border: 1px solid #ffffff1a;
  height: 100%;
  margin-bottom: 1em;
  padding: 6px 12px 6px 35px;
}

.form-input-field-2::placeholder {
  color: #777;
}

.form-input-field-2._2 {
  background-color: #ffffffbf;
  background-image: url('../images/Icon-Phone.svg');
  height: 100%;
  padding-left: 35px;
}

.form-input-field-2.textarea-field {
  background-color: #ffffffbf;
  background-image: url('../images/Icon-Message.svg');
  background-position: 10px 10px;
  background-size: 6%;
  min-height: 120px;
  padding: .6em 1em 1em 3em;
}

.form-input-field-2._3 {
  background-color: #ffffffbf;
  background-image: url('../images/Icon-Mail.svg');
  background-position: 3%;
  background-size: auto 30%;
  height: 100%;
  margin-bottom: 1.3em;
  padding-left: 40px;
}

.div-block-86 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
}

.slide-review-2 {
  vertical-align: middle;
  background-color: #111111e6;
  border: 1px solid #fff;
  padding: 20px 30px 30px;
  position: relative;
}

.div-block-74 {
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  display: block;
}

.heading-11 {
  color: #e3e3e3;
}

.slider-testimonials-2 {
  background-color: #0000;
  align-self: center;
  width: 60%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 70px;
}

.right-arrow-3 {
  display: none;
}

.text-block-68 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 200;
}

.text-block-65 {
  text-align: center;
  margin-bottom: 45px;
}

.sub-header {
  color: #c92c25;
  margin-bottom: 5px;
  font-family: Great Vibes, cursive;
  font-size: 40px;
  line-height: 40px;
}

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

.page-hero-header {
  color: #fff;
  text-align: left;
  max-width: none;
  margin: 20px auto;
  font-size: 62px;
  display: block;
}

.div-block-72 {
  z-index: 2;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(#0000, #0000);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 137px;
  padding-left: 82px;
  padding-right: 82px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.slide-nav-4 {
  display: none;
}

.badge {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #f03e5a;
  border-radius: 3px;
  padding-left: 8px;
  padding-right: 7px;
  font-size: 9px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.badge:hover {
  text-decoration: none;
}

.badge.footer-badge {
  margin-left: 10px;
}

.column-4 {
  padding-left: 0;
}

.wrapper {
  z-index: 1;
  text-align: left;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  display: flex;
  position: relative;
}

.wrapper.vertical {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.social-link {
  border: 1px solid #ffffff40;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-left: 4px;
  margin-right: 4px;
  transition: background-color .2s, border-color .2s;
  display: flex;
}

.social-link:hover {
  background-color: #c92c25;
  border-color: #c92c25;
}

.social-link.hero-link {
  border-color: #fff9;
}

.social-link.hero-link:hover {
  background-color: #c92c25;
  border-color: #c92c25;
}

.paragraph-large-2 {
  color: #fff;
  font-size: 16px;
  line-height: 1.5em;
}

.slider-4 {
  height: 100%;
}

.section-header-wrapper {
  text-align: center;
  border-bottom: 1px #bbb;
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-bottom: 9px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: flex;
}

.section-header-wrapper.line-bottom {
  text-align: left;
  border-bottom-style: solid;
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-73 {
  background-color: #00000069;
  width: 50%;
  padding: 13px 30px;
}

.image-21 {
  width: 100%;
  max-width: none;
  margin-right: 8px;
}

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

.center.margin-bottom {
  margin-bottom: 30px;
}

.right-arrow-4 {
  width: 60px;
  font-size: 30px;
}

.bold-text-24 {
  font-size: 18px;
}

.div-block-97 {
  width: 100%;
  height: 240px;
  margin-bottom: 56px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.button-16 {
  z-index: 999;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #c92c25;
  border: 1px #fff;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px;
  margin-bottom: 0;
  padding: 0 17px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color .35s, color .35s;
  display: flex;
}

.button-16:hover {
  color: #151515;
  background-color: #fff;
}

.button-16.other:hover {
  color: #fff;
  background-color: #111;
}

.form-button-holder-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.columns-5 {
  justify-content: center;
  align-self: center;
  width: 100%;
  margin-bottom: 26px;
  display: flex;
}

.footer-2 {
  color: #fff;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding-top: 0;
  display: flex;
  position: relative;
}

.oos {
  padding-right: 0;
}

.div-block-79 {
  background-color: #fff;
  border-radius: 20px;
  padding: 5px;
  display: flex;
}

.base-container-2 {
  z-index: 100;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 49px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: static;
}

.slide-8 {
  background-image: linear-gradient(#00000040, #00000040), url('../images/Catering-2.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100vw;
}

.slide-8.slide-1 {
  background-image: linear-gradient(#00000040, #00000040), url('../images/Catering-1.jpg');
  background-position: 0 0, 50%;
}

.slide-8.slide-3 {
  background-image: linear-gradient(#00000040, #00000040), url('../images/Greek-Salad_2.jpg');
  background-position: 0 0, 50% 0;
}

.slide-8.slide-2 {
  background-image: linear-gradient(#00000040, #00000040), url('../images/6.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
}

.slide-8.slide-5 {
  background-image: linear-gradient(#00000040, #00000040), url('../images/Grilled-Vegetables.jpg');
  background-position: 0 0, 50% 0;
}

.section-13 {
  color: #111;
  text-align: center;
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 67px 68px;
  display: flex;
  position: relative;
}

.section-13.hidden {
  width: 100vw;
  display: flex;
}

.div-block-77 {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.page-wrapper {
  width: 100vw;
}

.right-arrow-testimonials-2 {
  color: #1c1c1c;
  width: 40px;
  height: 40px;
  font-size: 22px;
  transition: color .3s;
  inset: auto auto -30% 8%;
}

.right-arrow-testimonials-2:hover {
  color: #a39161;
}

.link-block-6 {
  width: 50px;
  margin-right: 11px;
}

.menu-name {
  text-align: left;
  text-transform: none;
  width: auto;
  margin-top: 4px;
  margin-bottom: 3px;
  margin-right: 25px;
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
}

.menu-name.price {
  width: auto;
  color: var(--gray-600);
  margin-right: 10px;
  font-weight: 400;
}

.menu-name.price.hidden {
  display: none;
}

.menu-name.price.second-price {
  border-left: 1px solid #000;
  padding-left: 10px;
}

.italic-text-3 {
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
}

.div-block-99 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.review-img-bg-2 {
  object-fit: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.left-arrow-testimonials-2 {
  color: #1c1c1c;
  width: 40px;
  height: 40px;
  font-size: 22px;
  transition: color .3s;
  inset: auto auto -30% 0%;
}

.left-arrow-testimonials-2:hover {
  color: #a39161;
}

.paragraph-13 {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.information-holder-2 {
  grid-column-gap: 16px;
  grid-row-gap: 18px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 21px;
  display: grid;
}

.divider-2 {
  border-color: #c92c25;
  border-top-style: solid;
  border-top-width: 1px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  width: 100%;
  height: 4px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.title-wrapper-center-2 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.link-block-7 {
  width: 120px;
}

.scroll-up-button {
  float: right;
  background-color: #c92c25;
  background-image: url('../images/arrow-up-icon-white.svg');
  background-position: 50% 48%;
  background-repeat: no-repeat;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: background-color .2s;
  position: static;
  inset: auto 0% 0%;
}

.scroll-up-button:hover {
  background-color: #0000;
  border: .5px solid #fff;
}

.footer-header {
  margin-top: 34px;
  margin-bottom: 24px;
}

.div-block-101 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.rich-text-block-2 {
  display: block;
}

.rich-text-block-2.hidden {
  background-color: #0000;
  display: none;
}

.link-block-8 {
  width: 70px;
}

.image-24 {
  margin-right: 20px;
}

.left-arrow-4 {
  width: 60px;
  font-size: 30px;
}

.div-block-71 {
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.div-block-75 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.review-wrapper-2 {
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
}

.section-14 {
  padding-left: 50px;
  padding-right: 50px;
}

.image-37 {
  height: 100%;
}

.second-images-wrap, .third-images-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 33.3%;
  display: flex;
}

.project-two-title {
  z-index: 9;
  color: #15141c;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 28px;
}

.project-two-content {
  border-radius: 25px;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.first-images-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  width: 33.4%;
  display: flex;
}

.small-image {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 210px;
}

.project-two-content-inner {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  transform: translate(-30%, 100%)scale(.3)skew(25deg);
}

.project-block {
  margin-bottom: 60px;
}

.category {
  opacity: .82;
  color: #15141c;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 3px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

.category.global-text {
  color: #ed1c24;
  margin-bottom: 6px;
}

.project-two-link {
  border-radius: 20px;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.gallery-wrap {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 20px;
  display: flex;
}

.large-image {
  object-fit: cover;
  border-radius: 30px;
  width: 100%;
  height: 450px;
}

.lightbox-link-2 {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  transition: transform .4s, color .3s;
}

.lightbox-link-2:hover {
  transform: scale(1.1);
}

.container-7 {
  display: flex;
}

.container-8 {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.nav-menu-4 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
  display: flex;
  position: static;
}

.nav-link-3 {
  color: var(--gray-100);
  text-align: center;
  text-transform: uppercase;
  font-size: .85em;
  font-weight: 700;
  text-decoration: none;
}

.nav-link-3:hover {
  color: #68c8ff;
}

.container-9 {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.div-block-102 {
  background-color: #24211f00;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 200px;
  margin-top: 0;
  padding-left: 27px;
  padding-right: 27px;
  display: flex;
}

.dropdown-list-4.w--open {
  background-color: #fff;
  width: 250px;
  margin-left: -13px;
  padding: 15px;
  left: -28px;
}

.dropdown-3 {
  padding-left: 15px;
  padding-right: 0;
}

.dropdown-link-4 {
  color: var(--gray-900);
  text-align: center;
  font-weight: 700;
  transition: all .45s;
}

.dropdown-link-4:hover {
  color: var(--gray-900);
  background-color: #06669e4a;
}

.text-block-69 {
  color: var(--gray-100);
  text-transform: uppercase;
  font-size: .85em;
  font-weight: 700;
}

.icon-6 {
  color: var(--gray-100);
}

.div-block-103 {
  width: 100%;
  margin-top: 45px;
  margin-bottom: 45px;
}

.section-15 {
  padding-bottom: 0;
}

.div-block-104 {
  padding-left: 96px;
  padding-right: 50px;
}

.div-block-105 {
  display: flex;
}

.bold-text-25 {
  font-size: 1.2rem;
}

.bold-text-26 {
  font-weight: 400;
}

.bold-text-27 {
  font-size: 2rem;
}

.bold-text-28 {
  font-size: 1rem;
  line-height: 1.3;
}

.list {
  width: 100%;
  color: var(--gray-100);
  padding-left: 20px;
}

.bold-text-29 {
  font-size: 3rem;
  line-height: 1;
}

.map-2 {
  height: 100%;
}

.food-price-black {
  color: #151515;
  font-weight: 500;
}

.menu-item-image-holder {
  width: 100%;
  height: 100%;
}

.heading-tab {
  color: var(--gray-900);
  letter-spacing: 1px;
  background-color: #0000;
  font-size: 16px;
}

.text-block-70 {
  text-align: center;
  line-height: 1.5;
  display: flex;
}

.grid-option-menu {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  border-right: 0 #000;
  grid-template-rows: auto;
  grid-template-columns: 2fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: auto;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.grid-option-menu.padding-left-right {
  padding-left: 39px;
  padding-right: 39px;
}

.image-8 {
  width: 1005px;
}

.columns-12 {
  width: 100%;
  padding-top: 21px;
}

.text-block-76 {
  color: #fff;
  text-align: center;
  font-size: 32px;
  line-height: 40px;
}

.text-block-76.other-title {
  margin-bottom: 14px;
}

.winterlicious-menu-2 {
  width: 70%;
  padding: 20px;
}

.winterlicious-menu-2.background-colour {
  background-color: #fff0;
  width: 100%;
  margin-bottom: 0;
}

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

.menu-item-image {
  object-fit: contain;
  object-position: 100% 100%;
  width: 100%;
  height: 300px;
  position: absolute;
  inset: auto 0% 0% auto;
  transform: translate(20%, 30%);
}

.menu-item-image._2 {
  transform: translate(0%, 30%);
}

.menu-item-image.hidden {
  display: none;
}

.image-38 {
  min-width: 100%;
}

.text-block-77 {
  color: #fafafa;
  text-align: center;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
}

.text-block-77.small-text {
  font-size: 14px;
}

.tabs-menu {
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding-top: 15px;
  padding-bottom: 0;
  display: flex;
}

.menu-item-3 {
  flex-direction: column;
  padding: 15px;
  display: block;
  position: relative;
  overflow: hidden;
}

.menu-item-3.bg-noise {
  background-color: #ebebeb;
  background-image: url('../images/BG-Noise_1BG Noise.webp');
  background-size: auto;
  margin-bottom: 23px;
}

.menu-item-3.bg-noise.less-padding {
  background-color: #ebebeb;
  background-image: url('../images/BG-Noise_1BG Noise.webp');
  background-size: auto;
  align-items: center;
  width: 100%;
  height: auto;
  padding-bottom: 15px;
  display: flex;
}

.menu-item-3.bg-noise.catering-packages {
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-bottom: 20px;
}

.menu-item-3.bg-noise {
  background-color: #ebebeb;
  background-image: url('../images/BG-Noise_1BG Noise.webp');
  background-position: 0 0;
  background-size: auto;
  margin-bottom: 23px;
}

.menu-item-3.bg-noise.less-padding {
  height: auto;
  padding-bottom: 64px;
}

.text-block-51 {
  color: #ffffffbf;
  text-align: center;
  letter-spacing: 1px;
  font-family: Open Sans, sans-serif;
}

.darker-text {
  color: #4f4f4f;
  text-align: left;
  line-height: 1.3;
}

.darker-text.padding-up {
  margin-top: 29px;
  padding-bottom: 0;
  font-size: 22px;
}

.tabs-menu-2 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.menu-box-heading-black {
  color: #151515;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.menu-box-heading-black.centered {
  text-align: center;
  text-align: center;
}

.menu-box-heading-black.less-bottom-padding {
  margin-bottom: 7px;
  line-height: 38px;
}

.menu-box-heading-black.less-bottom-padding.no-padding {
  margin-bottom: 0;
}

.menu-box-heading-black.less-padding-down {
  text-transform: uppercase;
  margin-bottom: 0;
}

.category-item-link-2 {
  color: #fff;
  text-transform: uppercase;
  background-color: #0e0d0c;
  border: 1px solid #fff0;
  justify-content: center;
  align-items: center;
  padding: 11px 20px;
  transition: all .35s;
  display: flex;
  position: relative;
}

.category-item-link-2:hover {
  color: #d4d4d4;
  background-color: #24211f;
  border-style: solid;
  border-color: #fafafa;
}

.category-item-link-2:active {
  border-color: #d3433b;
}

.category-item-link-2:focus {
  border-color: #f8f8fa;
}

.category-item-link-2:visited {
  border-color: #fafafa;
}

.category-item-link-2.w--current {
  color: #fff;
  text-transform: uppercase;
  background-color: #d3433b;
  border-color: #d3433b;
  border-radius: 4px;
}

.bold-text-34 {
  font-size: 20px;
  font-weight: 700;
}

.div-block-16 {
  background-color: #00000014;
  margin-bottom: 25px;
  padding: 20px;
}

.menu-item-content {
  margin-top: 3px;
}

.menu-item-content.other {
  margin-top: 10px;
}

.column-32 {
  height: 100%;
}

.food-name {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.food-name.centered {
  text-align: center;
  flex-direction: column;
}

.food-title-black-5 {
  color: #151515;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
}

.food-title-black-5._100-wd, .tabs-men {
  width: 100%;
}

.text-block-78 {
  color: #ffffffbf;
  text-align: center;
  letter-spacing: 1px;
  font-family: Open Sans, sans-serif;
}

.tabs {
  width: 100%;
}

.category-item-link {
  color: var(--gray-900);
  text-transform: uppercase;
  background-color: #d4e6f0a3;
  border: 1px solid #fff0;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 11px 20px;
  transition: all .35s;
  display: flex;
  position: relative;
}

.category-item-link:hover {
  color: #fff;
  background-color: #bbdaf7;
  border-style: solid;
  border-color: #fafafa;
}

.category-item-link:active {
  border-color: #d3433b;
}

.category-item-link:focus {
  border-color: #f8f8fa;
}

.category-item-link:visited {
  border-color: #fafafa;
}

.category-item-link.w--current {
  color: #fff;
  text-transform: uppercase;
  background-color: #8ac3ff;
  border-color: #8ac3ff;
  border-radius: 4px;
  display: flex;
}

.category-item-link.w--current:hover {
  background-color: #bbdaf7;
}

.category-item-link.hidden {
  display: none;
}

.darker-text-3 {
  color: #4f4f4f;
}

.tab-menu {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.food-title-black {
  color: #151515;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
}

.text-span-3 {
  color: var(--gray-800);
}

.tab-second-menu {
  border-right: 0 #2c2c2c;
  width: 100%;
}

.column-33 {
  height: 100%;
}

.heading-22 {
  font-size: 1.7rem;
}

.div-block-106 {
  width: 100%;
  height: 200px;
}

.div-block-107 {
  margin-bottom: 10px;
}

.paragraph-15 {
  color: #fff;
}

.image-90 {
  width: 60%;
  position: relative;
}

.pop-up-wrapper-3 {
  opacity: 1;
  text-align: center;
  background-color: #04141400;
  border: 5px #f08b21;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 50%;
  height: auto;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  position: relative;
}

.heading-78 {
  color: #fff;
  font-size: 26px;
}

.enter-wrapper-2 {
  z-index: 2147483647;
  background-color: #090909cf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 80px;
  display: none;
  position: fixed;
  inset: 0%;
}

.button-floating {
  z-index: 99;
  color: #fff;
  text-align: center;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background-color: #961719;
  border: 1px solid #1c1c1c;
  border-radius: 0 0 0 7px;
  justify-content: center;
  align-items: center;
  width: 166px;
  min-height: 46px;
  padding: 11px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1em;
  transition: all .3s;
  display: flex;
  position: absolute;
  inset: 100% 0% auto auto;
}

.button-floating:hover {
  opacity: 1;
  color: #fff;
  background-color: #961719;
  border-color: #1c1c1c;
}

.button-floating.pop-button {
  background-color: var(--dark-blue);
  border-bottom-left-radius: 0;
  width: auto;
  min-height: 36px;
  margin-top: 14px;
  padding: 5px 14px;
  position: static;
}

.text-span-48 {
  color: #ff575a;
  letter-spacing: 1px;
  font-size: 24px;
}

.link-33 {
  z-index: 3;
  color: var(--dark-blue);
  text-align: center;
  letter-spacing: 0;
  background-color: #f1eee8;
  border: 2px #fff;
  border-radius: 3px;
  align-self: center;
  margin-bottom: 11px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  transition: all .475s;
  position: static;
  inset: 2% -25% auto auto;
}

.link-33:hover {
  color: #be7f57;
  background-color: #fff;
}

.div-block-117 {
  background-color: #ca585a;
  background-image: url('../images/ROUTE-48-.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
}

.container-10 {
  z-index: 2147483647;
  flex-direction: row;
  justify-content: flex-end;
  height: auto;
  display: flex;
  position: absolute;
  right: 3px;
}

.html-embed {
  text-align: center;
  justify-content: center;
  width: 300px;
  margin-top: -112px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  display: flex;
  position: fixed;
  inset: 250px 0% auto auto;
}

.html-embed.right-alignment {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  position: relative;
  inset: -5% 0% 0% auto;
}

.html-embed.right-alignment.hidden {
  display: none;
}

.dropdown-4 {
  text-align: center;
  background-color: #f4a074;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 44px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 8px;
  padding-right: 8px;
  transition: all .5s;
  display: flex;
  position: static;
  inset: auto 11% -31% auto;
}

.dropdown-4:hover {
  background-color: #415d6b;
}

.dropdown-toggle-4 {
  text-align: center;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 28px;
}

.dropdown-toggle-4.w--open {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.bold-text-5 {
  color: #fff;
  text-align: center;
  justify-content: center;
  font-size: 11px;
  line-height: 24px;
  display: flex;
}

.dropdown-list-5 {
  background-color: #0e0e0f;
}

.dropdown-list-5.w--open {
  background-color: #415d6b;
  flex: none;
  order: 0;
  width: 200px;
  margin-top: 82px;
  padding-left: 0;
  position: relative;
  left: -63px;
}

.dropdown-link-2 {
  float: none;
  color: #fff;
  width: auto;
  height: 50px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  font-weight: 400;
  transition: all .475s;
  position: static;
}

.dropdown-link-2:hover {
  background-color: #f4a074;
}

.div-block-118 {
  justify-content: space-between;
  align-items: stretch;
  height: 50px;
  display: flex;
  position: absolute;
  inset: 100% 0% 0% auto;
}

.div-block-119 {
  max-width: 800px;
  margin-bottom: 30px;
}

.image-91 {
  width: 100%;
}

.bold-text-35 {
  text-transform: uppercase;
  font-family: Source Sans Pro, sans-serif;
}

.image-92 {
  width: 100%;
  position: relative;
  top: -103px;
}

.grid-4 {
  grid-row-gap: 40px;
  grid-template-columns: 1fr 10px 1fr;
  place-items: start stretch;
  width: 100%;
}

.heading-79 {
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-120 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.div-block-121 {
  border-right: 1px solid var(--secondary-200);
  width: 1px;
  height: 100%;
}

.div-block-122 {
  flex-flow: column;
  max-width: 1300px;
  display: flex;
}

.paragraph-16 {
  color: var(--error);
  font-size: 1.5rem;
  font-weight: 700;
}

.subtitle-all-caps {
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.left-title-wrapper {
  text-align: center;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: static;
  top: 110px;
}

.image-93 {
  margin-bottom: 0;
  margin-left: 20px;
  padding-top: 0;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1px 0;
  display: flex;
}

.section-9 {
  width: 100vw;
  padding: 68px 40px 70px;
}

.base-container-3 {
  z-index: 100;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: static;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.accordion-wrapper-one-column {
  justify-content: center;
  width: 100%;
  padding-top: 46px;
  padding-bottom: 0;
}

.faq-s-wrapper {
  grid-column-gap: 40px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.heading-61 {
  text-align: center;
  margin-top: 10px;
  font-size: 36px;
  line-height: 1.2em;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #e9ddce;
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 20px;
  position: static;
}

.accordion-title {
  color: var(--dark-blue);
  font-size: 16px;
  line-height: 22px;
}

.bold-text-36 {
  font-size: 16px;
}

.bold-text-37 {
  font-weight: 400;
}

.text-block-79 {
  margin-top: 0;
}

.div-block-123 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-80 {
  margin-bottom: 0;
  font-family: Source Sans Pro, sans-serif;
  font-size: 3rem;
  font-weight: 700;
}

.text-block-80 {
  color: var(--error);
  margin-bottom: 23px;
}

.heading-81 {
  color: var(--dark-blue);
  margin-bottom: 1.9rem;
  font-family: Varela Round, sans-serif;
  font-weight: 400;
}

.title-2 {
  margin-bottom: 0;
  font-size: 34px;
}

.title-2.post-item {
  color: var(--dark-blue);
  margin-top: .55rem;
  font-size: 30px;
  line-height: 1.3em;
}

.title-2.blog {
  margin-bottom: 0;
  font-size: 44px;
}

.title-2.color-neutral-100 {
  color: #fff;
}

.title-2.color-neutral-100.post {
  color: #333;
  margin-bottom: 0;
}

.image-94 {
  background-color: #f6faf1;
  border: 1px #000;
}

.image-94.post-item-image {
  object-fit: cover;
  width: 100%;
}

.text-block-81 {
  color: var(--dark-blue);
  font-size: 14px;
}

.text-block-81:hover {
  color: var(--gray-700);
}

.paragraph-42 {
  margin-top: 11px;
  display: block;
}

.post-item-content-bottom-line {
  background-color: #090909;
  width: 12px;
  min-height: 1px;
  margin-right: 6px;
}

.container-default {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.post-item-content {
  flex-direction: column;
  flex: 1;
  max-width: 559px;
  display: flex;
}

.section-16 {
  padding-top: 67px;
  padding-bottom: 110px;
}

.section-16.blog {
  padding: 38px 80px 131px;
  overflow: hidden;
}

.section-16.post {
  padding: 31px 50px 0;
  position: static;
}

.image-wrapper {
  align-items: center;
  display: flex;
  overflow: hidden;
  transform: translate(0);
}

.image-wrapper.post-item-image {
  height: 300px;
  margin-bottom: 0;
}

.content-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.content-top.blog {
  border-bottom: 1px solid #bcbcbc;
  justify-content: center;
  align-items: center;
  margin-bottom: 68px;
  padding-bottom: 39px;
  display: flex;
}

.post-item-content-bottom {
  color: #090909;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.125em;
  display: flex;
}

.post-item-wrapper {
  color: #828282;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  display: flex;
}

.post-item-wrapper:hover {
  color: #828282;
}

.image-95 {
  background-color: #f6faf1;
  border: 1px #000;
}

.image-95.post-image {
  object-fit: cover;
  width: 100%;
}

.container-medium-965px {
  max-width: 965px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-medium-965px.post {
  z-index: 1;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.container-default-2 {
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.container-default-2.post-image {
  z-index: 1;
  margin-bottom: 81px;
  position: relative;
}

.page-wrapper-2 {
  padding-top: 0;
  position: static;
  inset: 0%;
}

.container-medium-890px {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-medium-890px.post-body {
  max-width: 1248px;
  padding-left: 50px;
  padding-right: 50px;
}

.container-11 {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4em 2em 4em;
  display: block;
}

.container-11.other-container {
  z-index: 2;
  margin-top: 103px;
  margin-bottom: 103px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.list-3 {
  margin-bottom: 0;
  padding-left: 24px;
}

.div-block-124 {
  flex-flow: column;
  display: flex;
}

.left-aligned-paragraph {
  color: #b5b5b5;
  text-align: left;
  justify-content: center;
  align-items: stretch;
  line-height: 1.4;
}

.left-aligned-paragraph.dark-text {
  color: #0e0d0cb5;
}

.left-aligned-paragraph.dark-text.psace-down {
  margin-bottom: 20px;
}

.div-block-96 {
  margin-top: 21px;
}

.adventure-heading {
  color: #fafafa;
  text-align: left;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}

.adventure-heading.dark-text {
  color: #1b1b1b;
}

.adventure-heading.dark-text.centered {
  text-align: center;
}

.button-17 {
  z-index: 999;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background-color .35s, color .35s;
  display: flex;
}

.button-17:hover {
  color: #151515;
  background-color: #fff;
}

.button-17.red-button {
  background-color: var(--dark-blue);
  border-style: none;
  border-color: #d3433b;
  margin-top: 32px;
  margin-bottom: 0;
}

.button-17.red-button {
  background-color: #d3433b;
  border-color: #d3433b;
  margin-top: 32px;
  margin-bottom: 0;
}

.button-17.red-button:hover {
  color: #fafafa;
  background-color: #2b2b2b;
  border-color: #2b2b2b;
}

.button-17.red-button.cold-button {
  background-color: #d3cb3b;
  background-image: linear-gradient(139deg, #836e10, #836e10 36% 50%, #836e10 64%, #25200a);
  border-style: none;
  transition: all .55s;
}

.button-17.red-button.cold-button:hover {
  background-image: linear-gradient(225deg, #836e10, #836e10 36% 50%, #836e10 64%, #25200a);
}

.white-section-background {
  z-index: -1;
  background-color: #ebebeb;
  background-image: url('../images/BG-Noise_1BG Noise.webp');
  background-position: 50%;
  background-size: auto;
  display: block;
  position: absolute;
  inset: 0%;
}

.white-section-background.front {
  z-index: 1;
}

.div-block-125 {
  background-color: #be7f57;
  width: 2px;
  height: 40px;
  margin-top: 1px;
  margin-bottom: 1px;
}

.section-17 {
  position: relative;
}

.section-17.overflow-hidden {
  background-image: linear-gradient(#000, #0e0d0c00 28%);
  overflow: hidden;
}

.section-17.main-section-home {
  background-image: linear-gradient(#000000ad, #000000ad), url('../images/About-Us-2_1About Us 2.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section-17.main-section-home.gift-card-main-section {
  background-image: linear-gradient(#151515, #0000 48%), linear-gradient(#0e0d0c96, #0e0d0c96), url('../images/IMG_20250904_164112-1.jpg');
  background-position: 0 0, 0 0, 50% 100%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  width: 100%;
  padding-top: 174px;
}

.paragraph-36 {
  color: #7e7e7e;
  margin-top: 11px;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 11px;
}

.heading-82 {
  color: #2b2b2b;
  text-align: center;
}

.home-flex-center-text {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bold-text-33 {
  font-size: 14px;
}

.list-item-2 {
  line-height: 10px;
}

.italic-text-5 {
  color: var(--gray-200);
}

.container-12 {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 4.6em 2em 4em;
  display: block;
}

.container-12.other-container {
  z-index: 2;
  margin-top: 41px;
  margin-bottom: 103px;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.bold-text-31 {
  color: #fafafa;
}

.list-4 {
  margin-bottom: 0;
  padding-left: 24px;
}

.image-5 {
  margin-bottom: 30px;
}

.div-block-126 {
  flex-flow: column;
  display: flex;
}

.image-6 {
  margin-bottom: 0;
}

.section-18 {
  position: relative;
}

.section-18.overflow-hidden {
  background-image: linear-gradient(#000, #0e0d0c00 28%);
  overflow: hidden;
}

.section-18.main-section-home {
  background-image: linear-gradient(#000000ad, #000000ad), url('../images/About-Us-2_1About Us 2.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.section-18.main-section-home.gift-card-main-section {
  background-image: linear-gradient(#151515, #0000 48%), linear-gradient(#0e0d0c80, #0e0d0c80), url('../images/IMG_20250904_164111-2.jpg');
  background-position: 0 0, 0 0, 50% 80%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-attachment: scroll, scroll, fixed;
  width: 100%;
  padding-top: 70px;
}

.paragraph-43 {
  color: #7e7e7e;
  margin-top: 11px;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 11px;
}

.text-block-82 {
  color: #0e0d0cb5;
  line-height: 1.25;
}

.bold-text-32 {
  line-height: 1.3;
}

.list-5 {
  color: #c5a804;
}

.heading-83 {
  color: #2b2b2b;
  text-align: center;
}

.heading-83.small-text {
  font-size: 28px;
}

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

.bold-text-39 {
  font-size: 14px;
}

.main {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 0;
  display: flex;
}

.text-block-73 {
  color: #d6bb20;
}

.text-block-83.white {
  color: #fff;
  font-weight: 400;
}

.nav-items {
  grid-column-gap: 10px;
  display: flex;
}

.nav-items.rewards-button {
  display: flex;
}

.nav-items.rewards-button.desktop {
  display: none;
}

.link-background {
  z-index: -1;
  background-color: #ffffff1a;
  border-radius: 4px;
  position: absolute;
  inset: 0%;
}

.link-background.rewards-button {
  background-color: #8a7500;
}

.link-background.gift-card-button {
  background-color: #d3433b;
}

.nav-link-holder {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.nav-link-holder:focus {
  background-color: #8a7500;
}

.nav-link-4 {
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  display: flex;
  position: relative;
}

.nav-link-4.w--current {
  color: #b5b5b5;
  font-weight: 600;
  transition: color .35s;
}

.nav-link-4.w--current:visited {
  background-color: #8a7500;
}

.nav-link-4.reward-button {
  background-color: #8a7500;
  text-decoration: none;
}

.nav-link-4.reward-button:hover {
  background-color: #c5a804;
}

.nav-link-4.reward-button.w--current {
  background-color: #8a7500;
}

.nav-link-4.reward-button.w--current:hover {
  background-color: #c5a804;
}

.nav-link-4.gift-card {
  background-color: #d3433b;
  text-decoration: none;
}

.nav-link-4.gift-card:hover {
  background-color: #a32b24;
}

.nav-link-4.gift-card.w--current {
  background-color: #d3433b;
}

.areas-links {
  color: var(--gray-500);
  font-family: Exo, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  text-decoration: none;
}

.areas-links:hover {
  color: var(--gray-200);
}

.text-block-84 {
  color: var(--gray-300);
}

.bold-text-40 {
  font-size: 1.8rem;
}

.paragraph-44 {
  font-size: 1.3rem;
}

.link-34 {
  color: var(--dark-blue);
  text-decoration: none;
}

.bold-text-41 {
  color: var(--gray-100);
}

@media screen and (min-width: 1280px) {
  .about-three-food-symbolic-text.about-three-creativity-block {
    height: auto;
  }

  .online-text, .button {
    font-size: 17px;
  }

  .black-text, .black-text.no-margins {
    font-size: 40px;
  }

  .flex-center-text {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .subheading {
    font-size: 17px;
  }

  .subheading.white-text {
    font-size: 19px;
  }

  .image-28, .image-28.bigger, .image-28.a-bit-bigger {
    width: 30px;
  }

  .base-container {
    justify-content: flex-start;
    align-items: center;
  }

  .subtitle-all-caps-2 {
    margin-bottom: 10px;
  }

  .review-wrapper {
    grid-template-rows: auto;
    width: 100%;
    display: flex;
  }

  .review-img-bg {
    width: 58%;
  }

  .title-wrapper-center {
    width: 62%;
  }

  .slider-testimonials {
    margin-bottom: 75px;
  }

  .slide-review {
    padding: 30px 50px 40px;
  }

  .section-7 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .div-block-36 {
    margin-bottom: 9px;
    padding-top: 180px;
    padding-left: 15px;
  }

  .horizontal-shop.content-wrap {
    padding-top: 161px;
  }

  .horizontal-scrollable-section-shop.auto._2 {
    padding-top: 0;
  }

  .down-icon {
    padding-left: 15px;
  }

  .menu-link {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dropdown-toggle {
    justify-content: center;
    align-items: center;
    margin-right: 0;
    padding-left: 0;
    padding-right: 15px;
    display: flex;
  }

  .section-12 {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .form-input-field-2.textarea-field {
    background-size: 4.5%;
    padding-left: 2.7em;
  }

  .form-input-field-2._3 {
    background-position: 2%;
  }

  .slide-review-2 {
    padding: 30px 50px 40px;
  }

  .slider-testimonials-2 {
    margin-bottom: 75px;
  }

  .button-16 {
    font-size: 17px;
  }

  .section-13 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .review-img-bg-2 {
    width: 58%;
  }

  .title-wrapper-center-2 {
    width: 62%;
  }

  .review-wrapper-2 {
    grid-template-rows: auto;
    width: 100%;
    display: flex;
  }

  .project-two-title {
    color: #15141c;
    font-size: 24px;
    line-height: 30px;
  }

  .project-two-content {
    z-index: 99;
  }

  .project-two-content-inner {
    background-color: #f7f7f7a3;
    display: block;
  }

  .project-two-link {
    margin-bottom: 0;
  }

  .map-2 {
    height: 100%;
  }

  .food-price-black {
    font-size: 17px;
  }

  .menu-box-heading-black {
    font-size: 30px;
  }

  .food-title-black-5, .food-title-black {
    font-size: 17px;
  }

  .enter-wrapper-2 {
    display: none;
  }

  .html-embed.right-alignment {
    inset: 0% 0% 0% auto;
  }

  .subtitle-all-caps {
    margin-bottom: 10px;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

  .left-aligned-paragraph, .adventure-heading, .button-17 {
    font-size: 17px;
  }

  .home-flex-center-text {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .nav-link-4 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1440px) {
  .container {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }

  .footer {
    background-color: var(--orange);
  }

  .footer__content {
    margin-top: 0;
  }

  .footer__group {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
    display: flex;
  }

  .footer__group.centerred {
    justify-content: flex-start;
    align-items: center;
  }

  .footer__title {
    color: var(--white);
    font-size: 2rem;
  }

  .footer__text {
    width: auto;
    color: var(--gray-100);
    text-align: left;
    margin-bottom: 0;
    font-size: 1.3rem;
    text-decoration: none;
  }

  .image {
    margin-bottom: 39px;
  }

  .text-block-2 {
    font-size: 1.375rem;
    font-weight: 400;
  }

  .heading {
    font-size: 4rem;
  }

  .text-block-3 {
    letter-spacing: .51px;
    margin-top: 12px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .image-size-one.about-three {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-inverse-one {
    width: 100%;
    height: auto;
  }

  .about-three-food-symbolic-text.about-three-creativity-block {
    height: auto;
  }

  .div-block-5 {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .about-three-section-four {
    background-color: #fff;
  }

  .small-container.no-padding {
    padding-left: 49px;
  }

  .about-three-section-five {
    background-color: #fff;
    background-size: 90%;
  }

  .container-3 {
    max-width: 1350px;
  }

  .button {
    font-size: 18px;
  }

  .black-text.no-margins {
    font-size: 42px;
  }

  .form-input-field, .form-input-field._2, .form-input-field._3 {
    background-image: none;
    padding-left: 14px;
    padding-right: 14px;
  }

  .subheading, .subheading.white-text {
    font-size: 18px;
  }

  .section-5 {
    background-color: #fff;
    padding-top: 73px;
    padding-bottom: 73px;
  }

  .grid {
    grid-template-rows: auto;
  }

  .text-block-4 {
    color: var(--orange);
    font-size: 4rem;
  }

  .text-block-5 {
    font-size: 1.5rem;
  }

  .text-block-6 {
    margin-right: 9px;
  }

  .bold-text {
    color: #ce2424;
  }

  .social-icons.hero-icons {
    flex-flow: column;
  }

  .footer-social-block {
    border-radius: 200px;
  }

  .footer-link-block-social {
    border: 1px solid var(--black);
    border-radius: 300px;
    margin-right: 0;
    padding: 15px 22px;
  }

  .footer-link-block-social.d {
    border: 1px solid var(--black);
    border-radius: 100px;
    margin-left: 1.1875em;
    margin-right: 1.1875em;
    padding: 12px;
  }

  .div-block-7 {
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin-bottom: 24px;
    display: flex;
  }

  .image-28 {
    width: 10%;
    max-width: none;
    margin-top: 8px;
    margin-right: 14px;
  }

  .image-28.bigger {
    width: 16%;
  }

  .image-28.a-bit-bigger {
    width: 13%;
  }

  .image-29 {
    margin: 4px;
  }

  .base-container {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-36 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    max-width: 1400px;
    margin-bottom: 0;
    padding-top: 120px;
    padding-left: 22px;
  }

  .wrapper-horizontal-shop-2 {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  .horizontal-shop.content-wrap {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 90px;
    padding-bottom: 0;
    overflow: visible;
  }

  .horizontal-scrollable-section-shop.auto {
    flex-direction: column;
    justify-content: space-between;
    margin-left: 0;
    margin-right: 0;
  }

  .horizontal-scrollable-section-shop.auto._2 {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-top: 46px;
  }

  .wrapper-line-indicator-2 {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .overflow-mask-shop {
    overflow: hidden;
  }

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

  .submit-button-card-shop {
    margin-top: 40px;
  }

  .submit-button-card-shop:hover {
    color: #920707;
  }

  .content-block {
    opacity: 1;
    background-color: #ffb28585;
    position: absolute;
    inset: 0%;
  }

  .content-block.flex {
    background-color: #00000057;
    justify-content: center;
  }

  .wrapper-line-indicator {
    justify-content: center;
    width: 100%;
  }

  .price {
    color: #ae81dc;
    margin-top: 20px;
  }

  .price.big {
    color: #920707;
    font-size: 75px;
  }

  .bold-text-2 {
    color: #ae81dc;
    font-weight: 400;
  }

  .card-shop {
    width: 500px;
    height: 500px;
    position: relative;
  }

  .card-shop.auto {
    width: 700px;
    margin-left: 140px;
  }

  .card-shop.auto.collection-item-shop {
    width: 700px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 0;
  }

  .div-block-40 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .slider-3 {
    width: 100%;
  }

  .section-12.light-background {
    padding-top: 137px;
    padding-bottom: 137px;
  }

  .form-input-field-2 {
    background-image: url('../images/Icon-Name1.svg');
  }

  .form-input-field-2._2 {
    background-image: url('../images/Icon-Phone.svg');
  }

  .form-input-field-2.textarea-field {
    background-size: 4%;
  }

  .form-input-field-2._3 {
    background-position: 2%;
  }

  .div-block-97 {
    height: 350px;
  }

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

  .section-13 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .gallery-wrap {
    margin-top: 20px;
  }

  .food-price-black {
    font-size: 18px;
  }

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

  .food-title-black-5, .food-title-black {
    font-size: 18px;
  }

  .enter-wrapper-2 {
    display: none;
  }

  .div-block-119 {
    max-width: 800px;
  }

  .mask-2 {
    width: 100%;
  }

  .container-11 {
    max-width: 1350px;
  }

  .left-aligned-paragraph, .adventure-heading, .button-17, .home-flex-center-text {
    font-size: 18px;
  }

  .container-12 {
    max-width: 1350px;
  }
}

@media screen and (min-width: 1920px) {
  .footer {
    background-color: var(--orange);
    width: 100%;
  }

  .section-2 {
    width: 1700px;
    padding-left: 0;
  }

  .section-2.section-3 {
    width: 100%;
  }

  .image-size-one.about-three {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-inverse-one {
    width: 100%;
    height: auto;
  }

  .lightbox-block.about-one-lightbox {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .small-container.no-padding {
    width: 100%;
    max-width: none;
    padding-left: 143px;
  }

  .about-three-section-five {
    background-size: cover;
  }

  .section-3.overflow-hidden {
    width: 100%;
  }

  .footer-link-block-social {
    border-color: var(--black);
  }

  .base-container {
    justify-content: center;
    align-items: center;
  }

  .review-img-bg {
    width: 56%;
  }

  .section-7 {
    padding-top: 130px;
  }

  .div-block-36 {
    max-width: 1600px;
    margin-bottom: 59px;
    padding-top: 188px;
    padding-left: 15px;
  }

  .body-2 {
    background-color: #fff;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .form-input-field-2 {
    background-position: 4%;
    padding-left: 38px;
  }

  .form-input-field-2._2 {
    background-position: 4%;
    padding-left: 37px;
  }

  .form-input-field-2.textarea-field {
    background-size: 3%;
  }

  .form-input-field-2._3 {
    background-position: 2%;
  }

  .div-block-97 {
    height: 500px;
  }

  .section-13 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .page-wrapper {
    width: 100vw;
  }

  .review-img-bg-2 {
    width: 56%;
  }

  .image-90 {
    width: 90%;
  }

  .enter-wrapper-2 {
    display: none;
  }

  .html-embed.right-alignment {
    right: 0%;
  }

  .accordion-wrapper-one-column {
    width: 100%;
  }

  .section-16 {
    padding-top: 172px;
    padding-bottom: 172px;
  }

  .section-16.blog {
    padding-top: 164px;
    padding-bottom: 164px;
  }

  .section-16.post {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 991px) {
  .hero-plax {
    min-height: 0;
  }

  .hero-plax__img--top-layer {
    min-width: 100%;
  }

  .hero-plax__content {
    z-index: 2;
    background-image: linear-gradient(#0006, #0006);
  }

  .nav {
    background-color: #fff0;
    height: 90px;
  }

  .nav.delete {
    background-color: #fff0;
    height: auto;
    inset: 0% 0% auto;
  }

  .nav__container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 90px;
    padding-bottom: 4rem;
    padding-left: 18px;
    padding-right: 18px;
    position: absolute;
  }

  .nav__brand.w--current {
    justify-content: flex-start;
    align-items: center;
    height: 90px;
    max-height: none;
    padding-left: 1rem;
    padding-right: 1rem;
    inset: 0% auto auto 0%;
  }

  .nav__logo {
    width: 60px;
    height: auto;
  }

  .nav__logo.coloured-logo {
    width: 80px;
    top: 13px;
  }

  .nav__link-wrapper {
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .nav__link-wrapper.nav__link-wrapper--right {
    padding-bottom: 4rem;
  }

  .nav__link {
    letter-spacing: .04rem;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 300;
    display: flex;
  }

  .nav__link:hover, .nav__link:active, .nav__link:focus {
    color: var(--white);
  }

  .nav__link.nav__link--dropdown {
    color: var(--white);
    text-transform: uppercase;
  }

  .nav__link.nav__link--dropdown:hover, .nav__link.nav__link--dropdown:active {
    color: var(--white);
  }

  .nav__link.nav__link--parent {
    display: none;
  }

  .nav__link.tabelt {
    text-transform: uppercase;
    display: flex;
  }

  .spacer._1st-section {
    padding-bottom: 0;
  }

  .nav__bg {
    background-color: #0b0d0fe6;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
  }

  .container.container__footer {
    padding-top: 0;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .img-text {
    justify-content: center;
    min-height: 0;
    margin-bottom: 2rem;
  }

  .img-text.img-text--reverse-mobile {
    margin-bottom: 3.8rem;
    padding-top: 2.6rem;
    padding-bottom: 8.7rem;
  }

  .card.img-text__card.img-text__card--right {
    bottom: -10%;
    right: auto;
  }

  .card.img-text__card.img-text__card--left {
    inset: auto auto -10%;
  }

  .nav__svg-embed {
    margin-left: .25rem;
  }

  .nav__link-group {
    flex-direction: column;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav__dropdown {
    width: 100%;
    box-shadow: none;
    background-color: #0000;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
    overflow: hidden;
  }

  .nav__toggle {
    z-index: 101;
    color: var(--gray-100);
    background-color: #0000;
    transition-property: none;
    display: flex;
  }

  .nav__toggle-icon {
    width: 100%;
    color: var(--gray-200);
  }

  .nav__mobile-title {
    color: var(--white);
    letter-spacing: .1rem;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Lato, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 4.5rem;
    display: block;
    position: relative;
  }

  .footer__brand {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-top: 39px;
  }

  .footer__content {
    grid-column-gap: 23px;
    grid-row-gap: 23px;
    flex-flow: row;
    padding-left: 0;
    padding-right: 0;
  }

  .footer__group {
    width: 45%;
    top: 4px;
  }

  .footer__group.centerred {
    order: -1;
    width: 22%;
  }

  .footer__group.right-div {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 12px;
  }

  .footer__colophon-content {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .image {
    width: 100%;
    height: auto;
  }

  .banner-plax {
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .banner-plax.banner-plax--short, .banner-plax.banner-plax--short.lunch {
    height: 300px;
  }

  .banner-plax.banner-plax--short.about {
    background-image: linear-gradient(#00000063, #00000063), url('../images/IMG_20250904_163949-1.jpg');
    background-position: 0 0, 50% 70%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 30vh;
  }

  .banner-plax.banner-plax--short.galery {
    height: 40vh;
  }

  .banner-plax__img {
    height: 100%;
  }

  .banner-plax__title {
    font-size: 2.6rem;
  }

  .banner-plax__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .banner-plax__content.banner-plax__content--center {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .banner-plax__content.banner-plax__content--left {
    width: 100%;
    margin-left: 0;
  }

  .form__input:focus {
    border-bottom-style: solid;
    border-bottom-color: var(--primary-400);
    box-shadow: none;
  }

  .form.card {
    margin-left: 47px;
    margin-right: 47px;
  }

  .hero__logo {
    padding-left: 4rem;
    padding-right: 4rem;
    display: none;
  }

  .hero__logo.hero__logo--vert {
    height: 100%;
    display: inline-block;
  }

  .standalone-quote__title {
    margin-top: 0;
  }

  .standalone-quote.pt-20 {
    margin-top: 1.6rem;
  }

  .menu-item__ingredients {
    width: 100%;
  }

  .menu-item__info, .menu-item__simple {
    flex-wrap: wrap;
  }

  .announcement-bar__close {
    margin-left: .25rem;
  }

  .form__textarea:focus {
    border-bottom-style: solid;
    border-bottom-color: var(--primary-400);
    box-shadow: none;
  }

  .img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "Area Area"
                         ". ."
                         ". ."
                         ". Area-2";
    margin-top: 52px;
  }

  .img-grid__lighbox-link {
    height: 300px;
  }

  .announcement-bar__close-icon {
    margin-left: .25rem;
  }

  .heading {
    font-size: 2.4rem;
    line-height: 1;
  }

  .text-block-3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .section-2 {
    padding-left: 0;
  }

  .section-2.section-3 {
    flex-flow: column;
  }

  .image-size-one.about-three {
    height: 500px;
    top: 41px;
  }

  .image-inverse-one {
    height: 100%;
  }

  .about-three-food-symbolic-text.about-three-creativity-block {
    height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .div-block-5 {
    width: 100%;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-three-section-four {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hunngry-journey-block {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .heading-2, .heading-2.smaller-text {
    font-size: 2.5rem;
  }

  .margin-top-ten.margin-bottom-twentyfive {
    text-align: left;
    font-size: 3rem;
  }

  .container-3 {
    padding-top: 2.9em;
  }

  .container-3.hero-container {
    padding-top: 3.2em;
    padding-bottom: 3.2em;
  }

  .online-reservation {
    padding: 2em 1em;
  }

  .button {
    margin-top: 29px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
  }

  .button.reverse-button {
    margin-bottom: 0;
  }

  .black-text {
    font-size: 30px;
  }

  .information-holder {
    grid-column-gap: 5px;
  }

  .form-input-field, .form-input-field._2 {
    padding-left: 30px;
    padding-right: 0;
  }

  .reservation-contact {
    padding: 2em 1em;
  }

  .subheading {
    font-size: 14px;
  }

  .subheading.light-subheading {
    font-size: 12px;
  }

  .grid-reservation {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .contact-info-item {
    margin-bottom: 16px;
  }

  .social-icons.hero-icons {
    margin-bottom: 0;
  }

  .footer-social-block {
    padding-top: 0;
  }

  .image-28, .image-28.bigger, .image-28.a-bit-bigger {
    width: 25px;
  }

  .contact-block {
    flex: 0 auto;
    width: 50%;
  }

  .section-6 {
    padding: 80px 8px;
    overflow: hidden;
  }

  .section-6.no-paddings {
    background-color: #fff0;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    display: flex;
  }

  .big-icon {
    width: 56px;
  }

  .contact-blocks {
    background-color: #fff;
    flex-wrap: wrap;
    width: 90%;
  }

  .base-container {
    max-width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .review-wrapper {
    height: 340px;
  }

  .title-wrapper-center {
    margin-bottom: 0;
  }

  .slider-testimonials {
    height: 140px;
  }

  .slide-review {
    padding-top: 9px;
    padding-bottom: 0;
  }

  .right-arrow-testimonials {
    bottom: -32%;
    left: 16%;
  }

  .paragraph-large {
    font-size: 16px;
  }

  .left-arrow-testimonials {
    bottom: -32%;
  }

  .section-7 {
    padding: 40px 30px;
  }

  .paragraph-3 {
    font-size: 28px;
    line-height: 42px;
  }

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

  .columns-3 {
    padding-top: 42px;
    padding-right: 0;
  }

  .wrapper-horizontal-shop-2 {
    background-color: #0000;
    width: auto;
    height: auto;
    top: 0;
  }

  .horizontal-shop.content-wrap {
    z-index: 4;
    height: auto;
    margin-top: 63px;
    padding-top: 22px;
    padding-bottom: 0;
  }

  .horizontal-scrollable-section-shop {
    flex-direction: column;
    width: auto;
  }

  .horizontal-scrollable-section-shop.auto {
    align-items: center;
    margin-right: 0;
  }

  .horizontal-scrollable-section-shop.auto._2 {
    height: 600px;
    padding-top: 23px;
  }

  .wrapper-line-indicator-2 {
    display: none;
  }

  .card-slide {
    margin-right: 20px;
  }

  .overflow-mask-shop {
    height: 660px;
    padding-left: 29px;
    display: flex;
  }

  .cards-mask {
    width: 60%;
  }

  .card-heading {
    color: #0b0a10;
    width: auto;
    margin-top: 0;
    margin-right: auto;
    font-size: 28px;
  }

  .card-heading.ig {
    margin-left: auto;
  }

  .content-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
    position: static;
  }

  .content-block.flex {
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .wrapper-line-indicator {
    display: none;
  }

  .price {
    text-align: left;
    margin-bottom: 0;
    margin-right: auto;
    font-size: 14px;
  }

  .price.big {
    text-align: center;
    margin-left: auto;
  }

  .bold-text-2.big {
    margin-left: auto;
  }

  .card-shop {
    flex-direction: column;
    height: auto;
    margin-bottom: 100px;
  }

  .menu-grid {
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "."
                         "."
                         "."
                         "."
                         ".";
    margin-bottom: 0;
  }

  .div-block-40 {
    padding-top: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .paragraph-11 {
    line-height: 1.4;
  }

  .navbar {
    background-color: #0000;
    justify-content: space-between;
    align-items: stretch;
  }

  .nav-menu.left {
    background-color: var(--dark-blue);
  }

  .nav-menu.right {
    display: flex;
  }

  .container-5 {
    justify-content: space-between;
    align-items: center;
    max-width: none;
    display: flex;
  }

  .dropdown-list-2.commercial, .dropdown-list-2.commercial.residential {
    padding-top: 10px;
    padding-bottom: 10px;
    display: none;
    position: static;
  }

  .down-icon {
    color: #f7f7f7;
    margin-right: 20px;
    display: block;
  }

  .mega-menu-block {
    background-color: var(--dark-blue);
    width: 100%;
    display: none;
  }

  .mega-menu-block.tablet {
    flex-flow: column;
    display: flex;
    position: absolute;
    inset: 99% 0% auto;
  }

  .menu-link {
    color: #161c24;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all .475s;
  }

  .menu-link:hover {
    color: #068fff;
  }

  .menu-link.mega-menu, .service-list-left-image, .mega-menu-dropdown {
    display: none;
  }

  .mega-menu-dropdown.w--open {
    position: static;
  }

  .mega-menu-dropdown.contact {
    background-color: var(--dark-blue);
  }

  .dropdown-2.other.residential {
    width: 100%;
  }

  .dropdown-toggle {
    border: 1px #ed1c24;
    border-radius: 8px;
    justify-content: flex-start;
    width: auto;
    padding-right: 0;
  }

  .dropdown-toggle.w--open {
    border-style: none;
  }

  .heading-style-h3 {
    font-size: 28px;
  }

  .dropdown {
    display: block;
  }

  .dropdown.dropdown-static {
    display: none;
  }

  .dropdown-link-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-link-3.residential {
    width: auto;
    padding-left: 10px;
    padding-right: 30px;
  }

  .container-6 {
    justify-content: space-between;
    align-items: center;
    width: auto;
    display: block;
  }

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

  .image-33 {
    width: 200px;
    max-width: none;
    height: auto;
  }

  .icon-4 {
    color: var(--gray-100);
    font-size: 3rem;
    text-decoration: none;
  }

  .brand.w--current {
    margin-top: 0;
  }

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

  .div-block-48 {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 0;
    display: flex;
  }

  .navbar-menu-dropdown {
    width: 100%;
    margin: 10px 0;
    display: block;
    position: relative;
  }

  .dropdown-link-list {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .dropdown-toggle-2 {
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
  }

  .dropdown-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dropdown-link:hover {
    background-color: #63140a;
  }

  .dropdown-icon {
    inset: auto 0% auto auto;
  }

  .dropdown-list {
    position: static;
    overflow: hidden;
  }

  .dropdown-list.w--open {
    width: auto;
    box-shadow: none;
    border-style: none;
    border-color: #0000;
    padding: 0;
  }

  .dropdown-toggle-3 {
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
  }

  .dropdown-icon-2 {
    inset: auto 0% auto auto;
  }

  .dropdown-list-3 {
    position: static;
    overflow: hidden;
  }

  .dropdown-list-3.w--open {
    width: auto;
    box-shadow: none;
    border-style: none;
    border-color: #0000;
    padding: 0;
  }

  .link-block {
    width: 48px;
    margin-right: 8px;
  }

  .image-36 {
    margin-right: 0;
  }

  .footer-column {
    width: 50%;
    margin-bottom: 24px;
    margin-right: 0%;
    padding-left: 4%;
    padding-right: 4%;
  }

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

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

  .bg-section.footer-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .text-block-66 {
    text-align: left;
    font-size: 18px;
    line-height: 1.4;
  }

  .slider-3 {
    height: 700px;
  }

  .footer-link {
    margin-top: 8px;
    margin-bottom: 8px;
    margin-right: 25px;
    font-size: 13px;
  }

  .footer-link.w--current {
    margin-right: 25px;
  }

  .footer-link.other {
    margin-right: 0;
  }

  .section-12.light-background {
    padding-top: 86px;
    padding-bottom: 119px;
  }

  .div-block-78 {
    height: 160px;
  }

  .html-embed-6 {
    margin: 41px 0 42px;
  }

  .footer-link-badge {
    margin-right: 25px;
  }

  .form-input-field-2, .form-input-field-2._2 {
    padding-left: 30px;
    padding-right: 0;
  }

  .div-block-74 {
    width: 45%;
  }

  .sub-header {
    font-size: 34px;
  }

  .page-hero-header {
    text-align: left;
    margin-top: 56px;
    margin-bottom: 56px;
    font-size: 48px;
    line-height: 1;
  }

  .div-block-72 {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    padding-top: 60px;
    padding-left: 27px;
    padding-right: 27px;
  }

  .column-4 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    margin-bottom: 17px;
    display: block;
  }

  .wrapper {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .slider-4 {
    background-color: #ddd0;
    height: auto;
    margin: 14px;
  }

  .section-header-wrapper {
    flex-direction: column;
    align-items: center;
    width: 100vw;
    margin-bottom: 24px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }

  .section-header-wrapper.line-bottom {
    padding: 25px 43px 0;
  }

  .div-block-73 {
    width: 60%;
  }

  .right-arrow-4 {
    width: 40px;
    font-size: 30px;
  }

  .div-block-97 {
    height: 300px;
    margin-bottom: 0;
  }

  .button-16 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
  }

  .columns-5 {
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }

  .footer-2 {
    display: block;
  }

  .base-container-2 {
    max-width: 1300px;
  }

  .section-13 {
    justify-content: center;
    align-items: center;
    padding: 40px 40px 80px;
    display: flex;
    overflow: hidden;
  }

  .section-13.hidden {
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .div-block-77 {
    width: 100%;
  }

  .right-arrow-testimonials-2 {
    bottom: -20%;
    left: 16%;
  }

  .form-block-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-name {
    text-align: left;
    font-size: 15px;
  }

  .menu-name.price {
    text-align: left;
  }

  .div-block-99 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .left-arrow-testimonials-2 {
    bottom: -20%;
  }

  .information-holder-2 {
    grid-column-gap: 5px;
  }

  .title-wrapper-center-2 {
    margin-bottom: 121px;
  }

  .scroll-up-button {
    display: none;
  }

  .div-block-101 {
    padding-left: 4%;
    padding-right: 4%;
  }

  .rich-text-block-2.hidden {
    padding-left: 40px;
    padding-right: 40px;
  }

  .left-arrow-4 {
    width: 40px;
    font-size: 30px;
  }

  .div-block-75 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-14 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .second-images-wrap, .third-images-wrap {
    grid-row-gap: 0px;
  }

  .project-two-title {
    font-size: 24px;
    line-height: 30px;
  }

  .first-images-wrap {
    grid-row-gap: 0px;
  }

  .small-image {
    height: 180px;
  }

  .project-two-link {
    margin-bottom: 20px;
  }

  .gallery-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }

  .large-image {
    height: 360px;
  }

  .container-7 {
    justify-content: space-between;
    align-items: center;
  }

  .menu-button-2 {
    background-color: #fff0;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .container-8 {
    background-color: #fff0;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .nav-menu-2, .nav-link-2, .nav-menu-3 {
    background-color: #fff0;
  }

  .nav-menu-4 {
    background-color: var(--orange);
  }

  .nav-link-3 {
    width: 100%;
  }

  .div-block-102 {
    justify-content: space-between;
    align-items: center;
    height: auto;
  }

  .dropdown-list-4 {
    position: relative;
  }

  .dropdown-list-4.w--open {
    background-color: #ffffff21;
    width: 100%;
    margin-left: 0;
    left: 0;
  }

  .dropdown-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: 0;
    display: flex;
  }

  .dropdown-link-4 {
    color: var(--gray-100);
    justify-content: center;
    align-items: center;
    font-size: .85em;
    font-weight: 700;
    display: flex;
  }

  .dropdown-link-4:hover {
    background-color: #06669ed1;
  }

  .food-price-black {
    font-size: 15px;
    line-height: 15px;
  }

  .heading-tab {
    font-size: 14px;
  }

  .grid-option-menu {
    width: 100%;
    max-width: none;
  }

  .text-block-76 {
    font-size: 32px;
  }

  .winterlicious-menu-2 {
    width: 90%;
  }

  .winterlicious-menu-2.background-colour {
    margin-bottom: 0;
  }

  .tabs-menu {
    padding-top: 0;
  }

  .menu-item-3 {
    padding: 11px;
  }

  .menu-item-3.bg-noise.catering-packages {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-item-3.bg-noise.less-padding {
    padding-left: 19px;
    padding-right: 19px;
  }

  .darker-text {
    font-size: 15px;
    line-height: 1.5;
  }

  .menu-box-heading-black {
    font-size: 26px;
  }

  .div-block-16 {
    padding: 15px;
  }

  .column-32 {
    height: auto;
  }

  .food-name {
    justify-content: space-between;
    align-items: flex-start;
  }

  .food-title-black-5 {
    padding-right: 0;
    font-size: 15px;
    line-height: 1.25;
  }

  .darker-text-3 {
    font-size: 15px;
    line-height: 1.5;
  }

  .tab-menu {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }

  .food-title-black {
    margin-top: 6px;
    margin-bottom: 0;
    padding-right: 0;
    font-size: 15px;
    line-height: 16px;
  }

  .image-90 {
    width: 70%;
  }

  .pop-up-wrapper-3 {
    text-align: center;
    border-color: #f08b21;
    width: 80%;
    height: auto;
    margin: 0;
    padding: 18px;
  }

  .heading-78 {
    font-size: 22px;
  }

  .enter-wrapper-2 {
    display: flex;
  }

  .button-floating {
    min-height: auto;
    display: block;
  }

  .button-floating.pop-button {
    display: flex;
  }

  .text-span-48 {
    font-size: 20px;
  }

  .link-33 {
    top: 3%;
    right: -41%;
  }

  .container-10 {
    right: -19px;
  }

  .html-embed {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    inset: 14% 0% auto auto;
  }

  .html-embed.right-alignment {
    position: relative;
    inset: -2% 0% 0% auto;
  }

  .dropdown-4 {
    right: 16%;
  }

  .div-block-122 {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
  }

  .columns-13 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .column-34 {
    padding-left: 0;
    padding-right: 0;
  }

  .left-title-wrapper {
    text-align: center;
    position: static;
  }

  .section-9 {
    padding: 25px;
  }

  .base-container-3 {
    max-width: 1300px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-wrapper-one-column {
    width: 100%;
    padding-top: 0;
  }

  .faq-s-wrapper {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-2.color-neutral-100.post {
    margin-bottom: 0;
  }

  .container-default {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .section-16 {
    padding: 110px 40px 80px;
  }

  .section-16.blog {
    padding: 28px 30px 105px;
  }

  .section-16.post {
    padding: 36px 50px 0;
  }

  .content-top.blog {
    margin-bottom: 60px;
    padding-bottom: 33px;
  }

  .container-medium-965px.post {
    margin-bottom: 0;
  }

  .container-default-2 {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .container-default-2.post-image {
    margin-bottom: 68px;
  }

  .container-medium-890px.post-body {
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-11 {
    padding-top: 2.9em;
  }

  .container-11.other-container {
    margin-top: 49px;
  }

  .left-aligned-paragraph {
    letter-spacing: 1px;
    font-size: 15px;
  }

  .adventure-heading {
    font-size: 15px;
  }

  .button-17 {
    margin-top: 29px;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
  }

  .button-17.red-button {
    z-index: 2;
    z-index: 2;
    position: relative;
  }

  .paragraph-36 {
    line-height: 16px;
  }

  .container-12 {
    padding-top: 9.9em;
  }

  .container-12.other-container {
    margin-top: 49px;
  }

  .paragraph-43 {
    line-height: 16px;
  }

  .main {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .text-block-83.white {
    text-align: center;
    font-weight: 400;
    line-height: 18px;
  }

  .nav-items {
    flex-direction: column;
    order: 0;
    align-items: center;
  }

  .nav-items.rewards-button {
    display: none;
  }

  .nav-items.rewards-button.desktop {
    flex-flow: row;
    width: 50%;
    display: flex;
  }

  .link-background {
    width: 100%;
  }

  .nav-link-holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 5px 0;
    display: flex;
  }

  .nav-link-holder:hover {
    background-color: #a59f9f0f;
  }

  .nav-link-4 {
    color: #fff;
    width: 100%;
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

@media screen and (max-width: 767px) {
  .hero-plax {
    height: 100vh;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .spacer {
    height: 2rem;
  }

  .spacer._1st-section {
    padding-top: 23px;
  }

  .container.container__footer {
    padding-top: 0;
  }

  .img-text {
    flex-direction: column;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .img-text.img-text--reverse-mobile {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }

  .img-text__img {
    max-height: 320px;
  }

  .img-text__img.s {
    top: 0;
  }

  .card.img-text__card.img-text__card--right {
    max-width: 100%;
    margin-bottom: 40px;
    position: static;
  }

  .card.img-text__card.img-text__card--left {
    max-width: 100%;
    position: static;
  }

  .img-text__map {
    height: 250px;
  }

  .footer {
    padding-top: 0;
  }

  .footer__brand {
    flex: 0 auto;
    width: 18rem;
    height: auto;
    padding-top: 0;
  }

  .footer__content {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer__group {
    margin-top: .5rem;
  }

  .banner-plax.banner-plax--short.lunch, .banner-plax.banner-plax--short.breakfast {
    height: 300px;
  }

  .banner-plax.banner-plax--short.about {
    padding-top: 49px;
  }

  .banner-plax.banner-plax--short.hours {
    height: 300px;
  }

  .banner-plax.banner-plax--short.galery {
    height: 40vh;
  }

  .form__wrapper.form__wrapper--grid {
    justify-items: start;
  }

  .form.card {
    margin-left: 29px;
    margin-right: 29px;
  }

  .featured-post__list {
    flex-direction: column;
  }

  .featured-post__item {
    margin-top: 2rem;
  }

  .featured-post__img-wrapper {
    width: 100%;
  }

  .featured-post__list-wrapper {
    display: flex;
  }

  .featured-post__card-wrapper {
    width: 100%;
    transform: translate(0);
  }

  .hero__logo.hero__logo--vert {
    margin-bottom: 3rem;
  }

  .standalone-quote__title {
    font-size: 1.3rem;
  }

  .hero-plax__cta {
    margin-bottom: 20%;
  }

  .announcement-bar.card {
    display: none;
  }

  .loading {
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  .img-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "Area Area"
                         ". ."
                         ". ."
                         "Area-2 .";
  }

  .img-grid__lighbox-link {
    height: 240px;
  }

  .div-block-2 {
    width: 100%;
  }

  .div-block-3 {
    padding-top: 53px;
  }

  .text-block-3 {
    margin-bottom: 20px;
  }

  .section-2 {
    flex-flow: column;
  }

  .section-2.section-3 {
    padding-top: 41px;
    padding-bottom: 9px;
  }

  .image-size-one.about-three {
    width: 100%;
    display: flex;
  }

  .container-img.image-height-auto.image-absolute-ten.amout-three-side-img {
    width: 100%;
  }

  .lightbox-link {
    height: auto;
  }

  .about-three-food-symbolic-text {
    padding-left: 0;
    padding-right: 0;
  }

  .about-three-food-symbolic-text.about-three-creativity-block {
    max-width: none;
  }

  .image-height-auto.align-left.margin-bottom-twenty, .image-height-auto.align-right.margin-top-fifty {
    width: 30px;
  }

  .brown-text {
    font-size: 2rem;
  }

  .div-block-5 {
    padding-top: 31px;
    padding-bottom: 31px;
  }

  .margin-top-zero.color-white {
    font-size: 2.6rem;
  }

  .about-three-section-four {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .small-container.no-padding {
    padding-left: 32px;
    padding-right: 32px;
  }

  .heading-2, .heading-2.smaller-text {
    font-size: 2rem;
  }

  .about-three-section-five {
    background-position: 50% 100%;
    margin-bottom: 45px;
  }

  .container-3 {
    padding: 4.9em 2em 2em;
  }

  .black-text {
    text-align: center;
    font-size: 27px;
  }

  .subheading {
    font-size: 13px;
  }

  .subheading.light-subheading {
    font-size: 11px;
  }

  .grid-reservation {
    grid-template-rows: auto auto;
    grid-template-columns: 2.5fr;
    padding-left: 29px;
    padding-right: 29px;
  }

  .social-icons.hero-icons {
    justify-content: flex-end;
    align-items: center;
    width: 40%;
  }

  .footer-social-block {
    padding-top: 0;
  }

  .footer-link-block-social {
    margin-right: 1em;
  }

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

  .section-6 {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .subtitle-all-caps-2 {
    text-align: center;
  }

  .review-wrapper {
    height: 450px;
  }

  .review-img-bg {
    object-position: 50% 80%;
    width: 100%;
    height: 60%;
  }

  .title-wrapper-center {
    margin-bottom: 0;
  }

  .slider-testimonials {
    width: 90%;
    height: 120px;
    margin: 195px auto 68px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slide-review {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .right-arrow-testimonials {
    font-size: 24px;
    inset: auto 0% -32% auto;
  }

  .paragraph-large {
    font-size: 14px;
  }

  .left-arrow-testimonials {
    font-size: 24px;
    inset: auto 18% -32% auto;
  }

  .section-7 {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .div-block-11, .text-block-9, .text-block-11 {
    display: none;
  }

  .slide-4 {
    width: 400px;
  }

  .div-block-32 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .div-block-20 {
    text-align: left;
    width: 100%;
    height: auto;
    padding-top: 1px;
    padding-right: 0;
    bottom: -22%;
  }

  .slider-2 {
    height: 500px;
  }

  .mask {
    width: auto;
    height: 500px;
  }

  .paragraph-4 {
    text-align: left;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .columns-3 {
    flex-flow: column;
    padding-left: 36px;
  }

  .wrapper-horizontal-shop-2 {
    align-items: center;
    width: 100%;
    overflow: visible;
  }

  .carsy-services-list {
    grid-template-columns: 1fr;
  }

  .horizontal-scrollable-section-shop.auto {
    align-items: center;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .horizontal-scrollable-section-shop.auto._2 {
    height: 500px;
    padding-top: 0;
    padding-left: 0;
  }

  .cards-slider {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .overflow-mask-shop {
    justify-content: center;
    height: 500px;
  }

  .cards-mask {
    width: 80%;
  }

  .content-block {
    padding-left: 0;
    padding-right: 0;
  }

  .content-block.flex {
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-shop {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .card-shop.auto.collection-item-shop {
    align-self: center;
    width: auto;
    height: 500px;
  }

  .menu-grid {
    flex-flow: column;
    grid-template-columns: auto;
    grid-template-areas: ".";
    display: flex;
  }

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

  .menu-section, .menu-item-wrap {
    width: 100%;
  }

  .reserve-image-block {
    padding: 60px;
  }

  .paragraph-8 {
    line-height: 1.4em;
  }

  .paragraph-8.normal-paragraph {
    font-size: 16px;
  }

  .paragraph-8.small-paragraph {
    font-size: 14px;
  }

  .paragraph-9 {
    line-height: 1.4em;
  }

  .paragraph-9.normal-paragraph {
    font-size: 16px;
  }

  .paragraph-9.small-paragraph {
    font-size: 14px;
  }

  .paragraph-10 {
    line-height: 1.4em;
  }

  .paragraph-10.normal-paragraph {
    font-size: 16px;
  }

  .paragraph-10.small-paragraph {
    font-size: 14px;
  }

  .div-block-38 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: center;
    align-items: center;
  }

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

  .div-block-40 {
    padding-top: 40px;
  }

  .div-block-41 {
    width: 100%;
  }

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

  .div-block-44 {
    flex-flow: column;
    grid-auto-flow: column;
    display: flex;
  }

  .column-17 {
    padding-left: 0;
  }

  .map {
    height: 300px;
  }

  .heading-style-h4 {
    font-size: 22px;
  }

  .dropdown-toggle {
    justify-content: flex-start;
  }

  .heading-style-h3 {
    font-size: 24px;
  }

  .dropdown-link-list {
    grid-row-gap: .5rem;
    max-width: none;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .dropdown-toggle-2, .dropdown-toggle-3 {
    font-size: 1rem;
  }

  .div-block-49.left-align {
    justify-content: center;
    align-items: center;
  }

  .bg-section {
    border-style: none;
    border-width: 8px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .bg-section.footer-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .text-block-66 {
    text-align: center;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 16px;
  }

  .slider-3 {
    height: 900px;
  }

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

  .html-embed-6 {
    margin-left: -1px;
    margin-right: -1px;
  }

  .div-block-86 {
    margin-bottom: 0;
  }

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

  .slider-testimonials-2 {
    width: 90%;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .slide-nav-3 {
    display: none;
  }

  .page-hero-header {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 36px;
  }

  .div-block-72 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    padding-top: 178px;
    padding-bottom: 26px;
  }

  .section-header-wrapper {
    border-bottom-style: none;
    width: auto;
    margin-bottom: 16px;
    padding-bottom: 0;
  }

  .section-header-wrapper.line-bottom {
    width: 100vw;
    padding-left: 22px;
    padding-right: 22px;
  }

  .div-block-73 {
    width: 100%;
  }

  .right-arrow-4 {
    width: 30px;
    font-size: 20px;
  }

  .columns-5 {
    margin-bottom: 0;
  }

  .section-13 {
    padding: 64px 0;
  }

  .section-13.hidden {
    display: flex;
  }

  .div-block-77 {
    margin-bottom: 16px;
  }

  .right-arrow-testimonials-2 {
    font-size: 24px;
    inset: auto 0% -20% auto;
  }

  .review-img-bg-2 {
    object-position: 50% 80%;
    width: 100%;
    height: 60%;
  }

  .left-arrow-testimonials-2 {
    font-size: 24px;
    inset: auto 18% -20% auto;
  }

  .title-wrapper-center-2 {
    margin-bottom: 40px;
  }

  .left-arrow-4 {
    width: 30px;
    font-size: 20px;
  }

  .section-14 {
    padding-left: 9px;
    padding-right: 9px;
  }

  .second-images-wrap {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .third-images-wrap {
    width: 100%;
    margin-top: 20px;
  }

  .project-two-title {
    font-size: 22px;
    line-height: 28px;
  }

  .first-images-wrap {
    width: 100%;
  }

  .small-image {
    height: 300px;
  }

  .gallery-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
  }

  .large-image {
    height: 300px;
  }

  .div-block-102 {
    padding-left: 3px;
    padding-right: 3px;
  }

  .div-block-103 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .food-price-black {
    font-size: 16px;
  }

  .grid-option-menu {
    width: 100%;
  }

  .text-block-76 {
    font-size: 32px;
  }

  .winterlicious-menu-2 {
    width: 90%;
  }

  .tabs-menu {
    padding-top: 0;
  }

  .menu-item-3 {
    margin-bottom: 0;
    padding: 12px;
  }

  .menu-item-3.bg-noise {
    padding-bottom: 39px;
  }

  .menu-box-heading-black {
    font-size: 28px;
  }

  .menu-box-heading-black.centered {
    margin-bottom: 19px;
  }

  .category-item-link-2 {
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .div-block-16 {
    margin-bottom: 10px;
  }

  .column-32 {
    height: auto;
  }

  .food-name {
    margin-bottom: 4px;
  }

  .food-name.centered {
    margin-top: 0;
  }

  .food-title-black-5 {
    font-size: 16px;
  }

  .category-item-link {
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .tab-menu {
    flex-direction: column;
    align-items: center;
    padding: 9px 0;
  }

  .food-title-black {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .image-90 {
    width: 80%;
  }

  .pop-up-wrapper-3 {
    width: 90%;
    height: auto;
    margin-top: 11px;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .enter-wrapper-2 {
    text-align: left;
    padding-left: 28px;
    padding-right: 28px;
    display: flex;
    position: fixed;
  }

  .link-33 {
    letter-spacing: 0;
    padding-left: 10px;
    padding-right: 10px;
    position: static;
    top: 1%;
    right: 4%;
  }

  .container-10 {
    right: 3px;
  }

  .html-embed {
    margin-top: 0;
    inset: 14% 0% auto auto;
  }

  .html-embed.right-alignment {
    inset: -2% 0% 0% auto;
  }

  .dropdown-4 {
    right: 25%;
  }

  .grid-4 {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
  }

  .div-block-120 {
    width: 100%;
  }

  .paragraph-16 {
    justify-content: center;
    align-items: flex-start;
    padding-left: 36px;
    padding-right: 36px;
    display: flex;
  }

  .italic-text-4 {
    line-height: 1.5;
  }

  .columns-13 {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
  }

  .column-34 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-9 {
    padding-top: 41px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .base-container-3 {
    max-width: none;
  }

  .accordion-wrapper-one-column {
    width: 100%;
    padding-top: 0;
  }

  .faq-s-wrapper {
    grid-row-gap: 40px;
    padding-left: 21px;
    padding-right: 21px;
  }

  .title-2.post-item {
    font-size: 25px;
  }

  .title-2.blog {
    margin-bottom: 35px;
  }

  .container-default {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .post-item-content {
    max-width: 575px;
  }

  .section-16 {
    padding: 88px 80px;
  }

  .section-16.blog {
    padding-top: 39px;
    padding-bottom: 84px;
  }

  .section-16.post {
    padding: 50px 50px 0;
  }

  .image-wrapper.post-item-image {
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    margin-bottom: 31px;
  }

  .content-top.blog {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 28px;
    padding-bottom: 0;
  }

  .container-medium-965px.post {
    margin-bottom: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-default-2 {
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .container-default-2.post-image {
    margin-bottom: 57px;
  }

  .container-medium-890px.post-body {
    padding-left: 50px;
    padding-right: 50px;
  }

  .container-11 {
    padding: 1.8em 2em 2em;
  }

  .container-11.other-container {
    margin-top: 41px;
    padding-left: 2em;
    padding-right: 2em;
  }

  .container-12 {
    padding: 10.4em 2em 2em;
  }

  .container-12.other-container {
    margin-top: 41px;
    padding-left: 2em;
    padding-right: 2em;
  }

  .section-18.main-section-home.gift-card-main-section {
    padding-top: 42px;
  }

  .main {
    width: 100vw;
  }

  .nav-items.rewards-button.desktop {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .hero-plax {
    height: 100vh;
  }

  .hero-plax__heading {
    justify-content: center;
    display: flex;
  }

  .container {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .container.container--sm {
    max-width: none;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .card.img-text__card.img-text__card--right {
    padding: 1.1rem;
  }

  .card.img-text__card.img-text__card--left {
    padding: 1.4rem;
  }

  .text-block__text {
    font-size: 1.1rem;
  }

  .img-text__map {
    height: 200px;
  }

  .footer__brand {
    width: 14rem;
  }

  .footer__content {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .footer__group, .footer__group.right-div {
    width: 100%;
  }

  .image {
    padding-top: 17px;
  }

  .banner-plax.banner-plax--short, .banner-plax.banner-plax--short.lunch, .banner-plax.banner-plax--short.breakfast, .banner-plax.banner-plax--short.hours {
    height: 200px;
  }

  .banner-plax.banner-plax--short.galery {
    height: 30vh;
  }

  .banner-plax__title {
    font-size: 2rem;
  }

  .form__wrapper.form__wrapper--grid {
    justify-items: stretch;
  }

  .form__input {
    border-radius: 0;
  }

  .form__input-flex-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    align-items: stretch;
    margin-top: 0;
    display: grid;
  }

  .form.card {
    margin-left: 1px;
    margin-right: 1px;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .hero__logo.hero__logo--vert {
    margin-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-plax__cta {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    padding-bottom: 20%;
  }

  .form__textarea {
    border-radius: 0;
    min-height: 8rem;
  }

  .form__columns {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .form__title {
    text-align: center;
    font-size: 1.6rem;
  }

  .menu-item__name-wrapper {
    width: 100%;
  }

  .img-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "Area"
                         "."
                         "."
                         "Area-2";
  }

  .heading {
    font-size: 2rem;
  }

  .section-2.section-3.section-4 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .larger-container {
    padding: 74px 0;
  }

  .div-block-5 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .small-container.no-padding {
    padding-left: 12px;
    padding-right: 12px;
  }

  .heading-2 {
    font-size: 1.3rem;
  }

  .heading-2.smaller-text {
    font-size: 1.6rem;
  }

  .about-three-section-five {
    background-position: 50% 120%;
    height: auto;
    margin-bottom: 65px;
    padding-top: 33px;
    padding-bottom: 33px;
  }

  .margin-top-ten.margin-bottom-twentyfive {
    font-size: 2rem;
  }

  .container-3 {
    padding-top: 2.4em;
    padding-left: 1.3em;
    padding-right: 1.3em;
  }

  .container-3.hero-container {
    order: 0;
    padding: 0 .6em;
    display: block;
  }

  .no-margin-bottom {
    font-weight: 500;
  }

  .online-text {
    font-size: 12px;
  }

  .online-reservation {
    padding-bottom: .5em;
    padding-left: 0;
    padding-right: 0;
  }

  .form-2 {
    padding: 8px;
  }

  .fade-in-move-on-scroll {
    margin-bottom: 0;
  }

  .black-text {
    text-align: center;
    font-size: 26px;
  }

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

  .section-3.overflow-hidden {
    padding-top: 0;
    padding-bottom: 0;
  }

  .form-input-field, .form-input-field._2 {
    padding-left: 45px;
  }

  .subheading {
    text-align: center;
    align-self: center;
  }

  .subheading.light-subheading {
    font-size: 12px;
  }

  .section-heading-container-center {
    margin-bottom: 2em;
  }

  .section-heading-container-center.small-margins {
    margin-bottom: .3em;
  }

  .grid-reservation {
    grid-template-rows: auto;
    margin-left: 0;
    margin-right: 0;
    padding-left: 7px;
    padding-right: 7px;
  }

  .form-button-holder {
    padding-left: 22px;
    padding-right: 22px;
  }

  .heading-3 {
    font-size: 2rem;
  }

  .social-icons.hero-icons {
    width: auto;
    margin-bottom: 48px;
    margin-right: 0;
  }

  .footer-link-block-social {
    margin-right: .8em;
  }

  .text-block-8 {
    font-size: .5rem;
  }

  .contact-block {
    width: 100%;
    padding: 13px;
  }

  .section-6 {
    padding-top: 23px;
    padding-bottom: 23px;
  }

  .contact-blocks {
    width: 100%;
  }

  .base-container {
    width: 100%;
    padding-top: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .info-client-wrap {
    grid-row-gap: 15px;
    flex-direction: column;
    justify-content: center;
  }

  .review-img-bg {
    height: 40%;
  }

  .title-wrapper-center {
    width: 100%;
  }

  .slider-testimonials {
    height: 140px;
    margin-top: 135px;
    margin-bottom: 23px;
  }

  .heading-18 {
    font-size: 1.6rem;
  }

  .slide-review {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .right-arrow-testimonials {
    bottom: -19%;
    right: 24%;
  }

  .left-arrow-testimonials {
    bottom: -19%;
    right: 63%;
  }

  .section-7 {
    width: 100%;
    padding-bottom: 0;
    padding-left: 2px;
    padding-right: 2px;
  }

  .div-block-10 {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    padding-left: 9px;
  }

  .div-block-11 {
    display: none;
  }

  .text-block-9 {
    font-size: 3vw;
    display: none;
  }

  .text-block-10 {
    width: 140px;
    font-size: 11px;
  }

  .text-block-11 {
    margin-right: 7px;
    font-size: 3vw;
    display: none;
  }

  .slide-3 {
    height: 320px;
  }

  .column-5 {
    display: none;
  }

  .image-3 {
    top: 104px;
    left: 141px;
  }

  .heading-20 {
    margin-top: 23px;
    padding-left: 0;
  }

  .div-block-17 {
    padding-top: 73px;
    padding-bottom: 101px;
  }

  .heading-5 {
    font-size: 4vw;
    bottom: -15%;
  }

  .div-block-22 {
    margin-top: 12px;
  }

  .paragraph-3 {
    margin-top: 17px;
    font-size: 26px;
    line-height: 40px;
  }

  .slide-4 {
    height: 320px;
  }

  .div-block-32 {
    padding-left: 0;
  }

  .column-2 {
    padding-left: 18px;
    padding-right: 0;
  }

  .div-block-20 {
    text-align: left;
    max-width: 100%;
    padding-top: 45px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-20.sdg {
    padding-top: 0;
  }

  .column-6 {
    display: none;
  }

  .slide-5, .slide-2 {
    height: 320px;
  }

  .slider-2 {
    height: 450px;
  }

  .mask {
    height: 84%;
  }

  .button-5 {
    margin-top: 2px;
    margin-left: 62px;
  }

  .button-5.jhj {
    margin-left: 0;
  }

  .column-15 {
    padding-left: 62px;
    padding-right: 0;
  }

  .paragraph-4 {
    max-width: 100%;
    padding-left: 54px;
    padding-right: 0;
  }

  .div-block-25 {
    width: 360px;
    max-width: 100%;
    height: 410px;
    margin-top: 60px;
    margin-left: 0;
  }

  .column-3 {
    padding-left: 62px;
  }

  .div-block-34 {
    margin-top: 12px;
  }

  .column-16 {
    padding-left: 62px;
    padding-right: 18px;
  }

  .div-block-23 {
    height: auto;
    padding-top: 60px;
    padding-bottom: 33px;
  }

  .div-block-35 {
    text-align: left;
    max-width: 100%;
    padding-top: 45px;
    padding-left: 38px;
    padding-right: 0;
  }

  .div-block-35.sdg {
    padding-top: 0;
  }

  .div-block-35.sdg._786kjh {
    height: auto;
    margin-bottom: -19px;
    padding-left: 63px;
  }

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

  .paragraph-6 {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .button-6 {
    margin-top: 2px;
    margin-left: 62px;
  }

  .button-6.as {
    margin-left: 0;
  }

  .column-8 {
    display: none;
  }

  .div-block-24 {
    width: 360px;
  }

  .column-9 {
    display: none;
  }

  .heading-8 {
    float: left;
    width: 80%;
    max-width: 100%;
    padding-top: 16px;
    padding-left: 45px;
    font-size: 45px;
    line-height: 50px;
  }

  .horizontal-shop {
    margin-left: 0;
  }

  .horizontal-scrollable-section-shop {
    width: 100%;
    margin-right: 0;
  }

  .horizontal-scrollable-section-shop.auto {
    align-items: center;
    display: flex;
  }

  .horizontal-scrollable-section-shop.auto._2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cards-slider {
    align-items: stretch;
    display: block;
  }

  .card-slide {
    height: 100%;
  }

  .overflow-mask-shop {
    padding-left: 0;
  }

  .cards-mask {
    width: 90%;
    max-width: none;
    height: 100%;
  }

  .card-heading {
    text-align: center;
    white-space: break-spaces;
    width: auto;
    margin-top: 10px;
    margin-right: 0;
  }

  .card-heading.ig {
    margin-left: 0;
  }

  .content-block {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 10px;
    display: none;
    position: static;
    inset: 0%;
  }

  .price {
    text-align: center;
    margin-right: 0;
  }

  .bold-text-2.big {
    margin-left: 0;
  }

  .card-shop {
    align-self: center;
    align-items: center;
    width: auto;
    height: auto;
    max-height: none;
    margin-bottom: 100px;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
  }

  .card-shop.auto.collection-item-shop {
    width: auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
    display: flex;
  }

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

  .section-11 {
    padding-left: 0;
    padding-right: 0;
  }

  .price-2 {
    margin-left: 0;
    line-height: 1;
  }

  .menu-line-item-wrap {
    text-align: left;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

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

  .menu-section.promotion-section {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .menu-item-wrap {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .menu-line {
    padding-top: 2px;
  }

  .reserve-image-block {
    height: 100px;
    padding: 20px;
  }

  .reserve-image-block.no-hight {
    height: 100%;
  }

  .div-block-40 {
    padding-top: 25px;
  }

  .div-block-41 {
    width: 100%;
  }

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

  .div-block-44 {
    width: 90%;
  }

  .map {
    height: 160px;
  }

  .dropdown-list-2.commercial {
    padding: 4px 7px;
    display: none;
  }

  .image-33 {
    width: 100px;
  }

  .brand {
    margin-top: -20px;
    padding-left: 0;
  }

  .brand.w--current {
    margin-left: 0;
  }

  .dropdown-link-list.navigation {
    overflow: auto;
  }

  .div-block-49 {
    margin-top: 10px;
  }

  .link-block {
    width: 30px;
  }

  .footer-column {
    flex-direction: column;
    width: 100%;
  }

  .div-block-100 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .text-block-66 {
    text-align: left;
    margin-bottom: 8px;
  }

  .slider-3 {
    height: 900px;
  }

  .footer-link {
    margin-top: 1px;
    margin-bottom: 1px;
  }

  .footer-link.w--current {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .section-12.light-background {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .html-embed-6 {
    margin: 13px 5px;
  }

  .footer-email {
    font-size: 18px;
  }

  .form-input-field-2 {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 45px;
  }

  .form-input-field-2._2 {
    padding-left: 45px;
  }

  .form-input-field-2.textarea-field {
    min-height: 100px;
  }

  .slide-review-2 {
    text-align: center;
    padding-left: 17px;
    padding-right: 17px;
  }

  .div-block-74 {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .heading-11 {
    font-size: 1.6rem;
  }

  .text-block-68 {
    font-size: 16px;
  }

  .sub-header {
    padding-left: 10px;
  }

  .page-hero-header {
    text-align: left;
    margin-top: 0;
    margin-bottom: 22px;
  }

  .div-block-72 {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    height: auto;
    padding: 151px 9px 63px;
  }

  .column-4 {
    margin-bottom: 0;
  }

  .wrapper {
    display: block;
  }

  .wrapper.vertical {
    max-width: 100vw;
    display: block;
  }

  .section-header-wrapper {
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .section-header-wrapper.line-bottom {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-73 {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .right-arrow-4 {
    width: 30px;
    font-size: 16px;
  }

  .icon-5 {
    font-size: 16px;
  }

  .div-block-97 {
    height: 200px;
  }

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

  .form-button-holder-2 {
    justify-content: flex-start;
    align-items: stretch;
  }

  .columns-5 {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .footer-2 {
    flex-direction: column;
    display: block;
  }

  .base-container-2 {
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-13 {
    padding-top: 52px;
    position: static;
  }

  .section-13.hidden {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .div-block-77 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 7px;
  }

  .right-arrow-testimonials-2 {
    bottom: -15%;
    right: 24%;
  }

  .form-block-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-name {
    text-align: left;
    width: auto;
    margin-bottom: 0;
    margin-right: 0;
  }

  .div-block-99 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .left-arrow-testimonials-2 {
    bottom: -15%;
    right: 63%;
  }

  .information-holder-2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .divider-2 {
    margin-bottom: 24px;
    padding-left: 10px;
  }

  .title-wrapper-center-2 {
    width: 100%;
  }

  .scroll-up-button {
    display: none;
  }

  .footer-header {
    margin-bottom: 9px;
  }

  .rich-text-block-2.hidden {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-arrow-4 {
    width: 30px;
  }

  .review-wrapper-2 {
    height: auto;
  }

  .section-14 {
    padding-left: 17px;
    padding-right: 17px;
  }

  .second-images-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }

  .third-images-wrap {
    margin-top: 0;
  }

  .project-two-title {
    font-size: 18px;
    line-height: 22px;
  }

  .small-image {
    height: 200px;
  }

  .project-two-content-inner {
    padding: 12px 15px 15px;
  }

  .project-block {
    margin-bottom: 16px;
  }

  .category {
    display: inline-block;
  }

  .gallery-wrap {
    margin-top: 20px;
  }

  .large-image {
    height: 200px;
  }

  .menu-button-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-102 {
    padding-top: 31px;
    padding-bottom: 11px;
  }

  .div-block-103 {
    padding-left: 0;
    padding-right: 0;
  }

  .food-price-black {
    font-size: 16px;
    line-height: 16px;
  }

  .grid-option-menu {
    grid-template-columns: 1.5fr;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-76 {
    font-size: 26px;
  }

  .winterlicious-menu-2 {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .winterlicious-menu-2.background-colour {
    padding-top: 0;
    padding-bottom: 0;
  }

  .tabs-menu {
    padding-top: 0;
  }

  .menu-item-3 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 7px;
  }

  .menu-item-3.bg-noise.catering-packages {
    width: 96%;
    padding: 5px;
  }

  .menu-item-3.bg-noise {
    padding-left: 19px;
    padding-right: 19px;
  }

  .menu-item-3.bg-noise.less-padding {
    padding: 1px 14px 33px;
  }

  .text-block-51 {
    letter-spacing: .6px;
    font-size: 12px;
  }

  .darker-text {
    margin-bottom: 13px;
    font-size: 15px;
    line-height: 18px;
  }

  .menu-box-heading-black.centered {
    line-height: 1;
  }

  .category-item-link-2 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .div-block-16 {
    padding: 11px;
  }

  .column-32 {
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .food-name {
    justify-content: space-between;
    align-items: flex-start;
  }

  .food-title-black-5 {
    font-size: 14px;
    line-height: 1.2;
  }

  .text-block-78 {
    letter-spacing: .6px;
    font-size: 12px;
  }

  .category-item-link {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .category-item-link.w--current {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .darker-text-3 {
    font-size: 12px;
  }

  .tab-menu {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .food-title-black {
    letter-spacing: 1px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.2;
  }

  .column-33 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-15 {
    font-size: 13px;
  }

  .image-90 {
    width: 100%;
    position: static;
  }

  .pop-up-wrapper-3 {
    text-align: center;
    flex-direction: column;
    width: 90%;
    height: auto;
    margin-top: 6px;
    margin-bottom: 0;
    padding: 0;
    line-height: 28px;
    display: flex;
  }

  .heading-78 {
    font-size: 14px;
  }

  .enter-wrapper-2 {
    padding: 13px 0 10px;
    display: flex;
  }

  .button-floating {
    width: 100%;
    min-height: auto;
    padding: 6px 11px;
    font-size: 10px;
    line-height: 14px;
    top: 104px;
  }

  .text-span-48 {
    font-size: 14px;
    line-height: 1em;
  }

  .link-33 {
    text-align: center;
    letter-spacing: 0;
    border-radius: 4px;
    padding: 7px 8px 7px 10px;
    font-size: 13px;
    top: 3%;
    right: 3%;
  }

  .container-10 {
    z-index: 9;
  }

  .html-embed {
    flex-direction: column;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
    display: block;
    top: 14%;
  }

  .html-embed.right-alignment {
    inset: -2% 0% 0% auto;
  }

  .dropdown-4 {
    right: 43%;
  }

  .bold-text-5 {
    font-size: 11px;
  }

  .bold-text-35 {
    font-size: 1.6rem;
  }

  .image-92 {
    top: 0;
  }

  .grid-4 {
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .heading-79 {
    text-align: left;
  }

  .div-block-122 {
    width: 100%;
  }

  .paragraph-16 {
    padding-left: 0;
    padding-right: 0;
  }

  .italic-text-4 {
    width: 100%;
    font-size: 1.2rem;
  }

  .columns-13 {
    flex-flow: column;
  }

  .column-34 {
    padding-left: 0;
    padding-right: 0;
  }

  .subtitle-all-caps {
    text-align: left;
    font-size: 12px;
  }

  .section-9 {
    padding-top: 33px;
  }

  .accordion-list-content {
    font-size: 14px;
  }

  .accordion-wrapper-one-column {
    padding-top: 0;
  }

  .heading-61 {
    text-align: left;
    font-size: 26px;
  }

  .accordion-item {
    padding-left: 11px;
    padding-right: 11px;
  }

  .accordion-title {
    font-size: 16px;
  }

  .text-block-79 {
    line-height: 1.1;
  }

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

  .column-35 {
    padding-left: 0;
    padding-right: 0;
  }

  .bold-text-38 {
    line-height: 1.2;
  }

  .column-36 {
    padding-left: 0;
    padding-right: 0;
  }

  .title-2.post-item {
    font-size: 21px;
  }

  .title-2.blog {
    margin-bottom: 30px;
  }

  .title-2.color-neutral-100.post {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 28px;
  }

  .post-item-content-bottom-line {
    margin-right: 10px;
  }

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

  .container-default {
    padding-left: 0;
    padding-right: 0;
  }

  .section-16 {
    padding: 41px 0;
  }

  .section-16.blog {
    padding: 51px 20px 67px;
  }

  .section-16.post {
    padding: 40px 25px 0;
  }

  .image-wrapper.post-item-image {
    height: 200px;
    margin-bottom: 26px;
  }

  .content-top.blog {
    margin-bottom: 40px;
    padding-bottom: 0;
  }

  .post-item-content-bottom {
    font-size: 15px;
  }

  .container-medium-965px {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container-medium-965px.post {
    margin-bottom: 2px;
  }

  .container-default-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .container-default-2.post-image {
    margin-bottom: 48px;
  }

  .page-wrapper-2 {
    padding-top: 204px;
  }

  .container-medium-890px {
    padding-left: 0;
    padding-right: 0;
  }

  .container-medium-890px.post-body {
    padding-left: 21px;
    padding-right: 21px;
  }

  .container-11 {
    padding-top: .3em;
    padding-left: 1.3em;
    padding-right: 1.3em;
  }

  .container-11.other-container {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.3em .9em 1.8em;
  }

  .list-3 {
    padding-left: 14px;
  }

  .left-aligned-paragraph {
    width: 100%;
    font-size: 13px;
  }

  .adventure-heading.dark-text.centered {
    margin-top: 0;
  }

  .button-17.red-button {
    margin-top: 19px;
  }

  .div-block-125 {
    margin-bottom: 8px;
  }

  .section-17.overflow-hidden {
    padding-top: 30px;
  }

  .bold-text-33 {
    font-size: 12px;
  }

  .container-12 {
    padding-top: 10.2em;
    padding-left: 1.3em;
    padding-right: 1.3em;
  }

  .container-12.other-container {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.3em .9em 1.8em;
  }

  .list-4 {
    padding-left: 14px;
  }

  .image-5 {
    max-width: 80%;
  }

  .columns-17 {
    grid-column-gap: 27px;
    grid-row-gap: 27px;
    flex-flow: column;
    display: flex;
  }

  .image-6 {
    max-width: 30%;
  }

  .section-18.overflow-hidden {
    padding-top: 30px;
  }

  .section-18.main-section-home.gift-card-main-section {
    padding-top: 28px;
  }

  .text-block-82 {
    font-size: 14px;
  }

  .bold-text-32 {
    font-size: 13px;
  }

  .list-5 {
    padding-left: 16px;
  }

  .heading-83.small-text {
    margin-top: 8px;
  }

  .bold-text-39 {
    font-size: 12px;
  }

  .main {
    width: 100%;
    height: 100%;
  }

  .text-block-73 {
    font-size: 14px;
  }

  .text-block-83.white {
    font-size: 12px;
  }

  .nav-link-holder:hover {
    background-color: #0000000f;
  }

  .nav-link-4.reward-button {
    padding: 4px 1px;
  }

  .nav-link-4.gift-card {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .bold-text-40 {
    line-height: 1.3;
  }

  .paragraph-44 {
    font-size: 1.1rem;
  }

  .bold-text-41 {
    font-size: 2.4rem;
    line-height: 1;
  }

  .div-block-127 {
    width: 100%;
  }

  .paragraph-45 {
    line-height: 1.1;
  }
}

#w-node-bd862944-e213-7032-2a97-e32622e552a1-f3432263, #w-node-d1d8daa0-c776-cafe-8657-eda209e9ee43-f3432263, #w-node-ee265c26-7a7c-9499-ef36-2e18d4d54ef1-f3432263, #w-node-_1244c69b-ecd1-48f6-3ada-8c082c0a9736-f3432263, #w-node-_68bfa564-c5b6-0a81-c110-045bb3cb5f88-f3432263, #w-node-f2da31fd-f7cd-cf90-cf80-f37348a256d5-f3432263 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_90dd59e5-b9c5-4d44-ddaf-572311aa7194-f3432263 {
  place-self: center start;
}

#w-node-_90dd59e5-b9c5-4d44-ddaf-572311aa7198-f3432263 {
  place-self: center;
}

#w-node-_90dd59e5-b9c5-4d44-ddaf-572311aa719c-f3432263 {
  place-self: center end;
}

#w-node-_1b57fbda-2685-926f-de57-ec1b3185c994-f3432263 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f54f639e-8b57-d835-2e2a-f59b8130560c-f3432263, #w-node-f54f639e-8b57-d835-2e2a-f59b8130560e-f3432263, #w-node-e2b8afdf-ed91-5a9e-f2a7-db3558af2154-f3432263, #w-node-f54f639e-8b57-d835-2e2a-f59b81305610-f3432263, #w-node-f54f639e-8b57-d835-2e2a-f59b81305612-f3432263, #w-node-_832c6d0f-2f95-d643-16ee-4d7d33474d2e-f3432263, #w-node-f54f639e-8b57-d835-2e2a-f59b81305614-f3432263 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f54f639e-8b57-d835-2e2a-f59b81305616-f3432263 {
  grid-area: Area-2;
}

#w-node-_73b1be61-0765-2563-bb75-668fce4cd90a-f3432263 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ac4f1f6-ebcc-7ad6-91fa-f0467afcff07-f3432263 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_795f6441-ed67-8b24-3a55-45849ec26a8f-f3432263, #w-node-d7e1becc-9fc4-ba72-59cd-64a611b5b20e-11b5b208, #w-node-_6ceb34a9-f66b-d3d2-edc9-bf7dfa3b9cd1-ce462abc, #w-node-_44ca3743-72a8-c3ea-b2ba-c25ea26cb515-ce462abc, #w-node-_25be3300-1d01-5aef-1f3c-a33a57b7f9b0-ce462abc, #w-node-e6f35581-d416-2e57-61d9-1c6c4548ae0d-ce462abc, #w-node-_07d82133-864b-51d7-ca07-291701628bee-ce462abc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#email.w-node-f14240cb-b326-f978-91c7-acf7fcdbd373-a4402c97, #message.w-node-f14240cb-b326-f978-91c7-acf7fcdbd374-a4402c97, #w-node-f14240cb-b326-f978-91c7-acf7fcdbd375-a4402c97 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-f14240cb-b326-f978-91c7-acf7fcdbd389-a4402c97 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#email2.w-node-f14240cb-b326-f978-91c7-acf7fcdbd4f6-a4402c97 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1920px) {
  #email.w-node-f14240cb-b326-f978-91c7-acf7fcdbd373-a4402c97, #message.w-node-f14240cb-b326-f978-91c7-acf7fcdbd374-a4402c97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (min-width: 1280px) {
  #w-node-_6ceb34a9-f66b-d3d2-edc9-bf7dfa3b9cd1-ce462abc, #w-node-_44ca3743-72a8-c3ea-b2ba-c25ea26cb515-ce462abc, #w-node-_25be3300-1d01-5aef-1f3c-a33a57b7f9b0-ce462abc, #w-node-e6f35581-d416-2e57-61d9-1c6c4548ae0d-ce462abc, #w-node-_07d82133-864b-51d7-ca07-291701628bee-ce462abc {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #message.w-node-f14240cb-b326-f978-91c7-acf7fcdbd374-a4402c97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_73b1be61-0765-2563-bb75-668fce4cd90a-f3432263, #w-node-_795f6441-ed67-8b24-3a55-45849ec26a8f-f3432263 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #name.w-node-f14240cb-b326-f978-91c7-acf7fcdbd371-a4402c97, #phone.w-node-f14240cb-b326-f978-91c7-acf7fcdbd372-a4402c97, #w-node-f14240cb-b326-f978-91c7-acf7fcdbd375-a4402c97 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


