:root {
  --goldenrod: #e87200;
  --dark-slate-gray: #301a05;
  --green: #007934;
  --linen: #faf3eb;
  --black: #00000029;
  --black-3: #000000b3;
  --black-2: #000000b5;
}

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

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

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

h3 {
  color: #e88f2a;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
}

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

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 15px;
  font-family: Merriweather, serif;
}

a {
  color: #e88f2a;
}

a:hover {
  color: #5c5246;
}

li {
  margin-bottom: 6px;
}

.button {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background-color: #2b2825;
  border-radius: 3px;
  margin-top: 0;
  margin-right: 6px;
  padding: 4px 25px;
  font-family: Oswald, sans-serif;
  line-height: 40px;
  transition: background-color .3s, color .3s;
  display: block;
}

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

.button.slider-button {
  background-color: var(--goldenrod);
  margin-top: 0;
  margin-left: 8px;
  margin-right: 8px;
  display: block;
}

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

.button.submit-button {
  width: 100%;
  margin-top: 10px;
}

.button.yellow {
  background-color: var(--goldenrod);
}

.button.yellow:hover {
  background-color: #3d3833;
}

.button.blog-archive {
  background-color: #e88f2a;
  margin-top: 0;
  padding-left: 18px;
  padding-right: 18px;
  line-height: 30px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.button.blog-archive:hover {
  background-color: #f1a348;
}

.button.outline-button {
  color: #000;
  background-color: #0000;
  border: 2px solid #000;
}

.button.outline-button:hover {
  border-color: var(--dark-slate-gray);
  background-color: var(--dark-slate-gray);
  color: #fff;
}

.button.btn-home-menu {
  margin-top: 27px;
  padding-top: 4px;
}

.button.bg-orange {
  background-color: var(--goldenrod);
  margin-top: 0;
  margin-right: 0;
  display: block;
}

.button.bg-orange.oos {
  margin-top: 14px;
}

.button.bg-orange.hidden, .button.hidden {
  display: none;
}

.navbar-left {
  text-align: center;
  background-color: #000;
  background-image: url('../images/IMG_3123.jpg');
  background-position: 50%;
  background-size: cover;
  width: 300px;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

.logo-container {
  float: none;
  text-align: center;
  width: 100%;
  padding-top: 35px;
  padding-bottom: 25px;
  display: block;
}

.logo-container.w--current {
  flex: 0 auto;
  height: auto;
  padding-top: 0;
  padding-bottom: 1px;
}

.nav-menu {
  float: none;
  text-align: center;
  align-self: center;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 5px;
}

.logo-text {
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Oswald, sans-serif;
  font-size: 28px;
}

.logo-text.subtitle {
  opacity: .3;
  letter-spacing: 3px;
  font-size: 10px;
  font-weight: 300;
  line-height: 14px;
}

.nav-link {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 10px;
  transition: background-color .2s;
  display: block;
}

.nav-link:hover {
  background-color: var(--goldenrod);
  color: #fff;
}

.nav-link.w--current {
  color: var(--green);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

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

.nav-link.dropdown {
  color: var(--linen);
  padding-top: 0;
  padding-bottom: 0;
}

.nav-link.dropdown:hover {
  color: var(--goldenrod);
  background-color: #0000;
}

.nav-link.hidden {
  display: none;
}

.menu-divider {
  background-color: #fff0;
  border-top: 1px #faf3eb47;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.nav-contact-block {
  flex-direction: column;
  align-items: center;
  height: auto;
  margin-top: 0;
  display: flex;
}

.nav-social-button {
  opacity: 1;
  margin-left: 4px;
  margin-right: 4px;
}

.nav-social-button:hover {
  opacity: .3;
}

.nav-social-icon {
  height: 18px;
}

.nav-bottom-text {
  color: #fff;
  letter-spacing: 1px;
  margin-top: 22px;
  font-family: Lato, sans-serif;
  font-size: 11px;
}

.nav-bottom-text._2 {
  opacity: .5;
  margin-top: 5px;
  line-height: 11px;
}

.hero-slider {
  width: 100%;
  height: 100vh;
  padding-left: 300px;
}

.hero-slide {
  background-image: linear-gradient(#301a0559, #301a0559), url('../images/IMG_3123.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  height: 100%;
}

.hero-slide._2 {
  background-image: linear-gradient(#301a0566, #301a0566), url('../images/deli-menu-resized-1.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.hero-slide._3 {
  background-image: linear-gradient(#301a0566, #301a0566), url('../images/IMG_2026-1024x694.jpg');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.hero-slide-overlay {
  background-color: var(--black);
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: 1px;
  padding-left: 35px;
  padding-right: 35px;
}

.hero-slide-button {
  color: #fff;
  background-color: #0003;
  width: 100px;
  height: 80px;
  font-size: 19px;
  transition: background-color .3s;
}

.hero-slide-button:hover {
  color: #000;
  background-color: #faf3eb;
}

.hero-slide-title {
  color: var(--linen);
  text-transform: uppercase;
  text-shadow: 0 0 6px #0006;
  font-family: Oswald, sans-serif;
  font-size: 95px;
  font-weight: 700;
  line-height: 90px;
}

.hero-slide-title.subtitle {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 50px;
}

.section {
  background-color: #faf3eb;
  justify-content: center;
  align-items: center;
  padding: 100px 35px 100px 333px;
  display: flex;
}

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

.section.menu-page-section.more-space {
  padding-top: 80px;
}

.section.white {
  background-color: #fff;
  padding-left: 344px;
  padding-right: 24px;
}

.section.testimonial {
  padding-top: 55px;
  padding-bottom: 55px;
}

.container {
  text-align: center;
  flex: 1;
}

.container.left-align {
  text-align: left;
  margin-bottom: 45px;
}

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

.container.no-padding {
  flex: 1;
  max-width: 100vh;
}

.section-intro-block {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.section-intro-title {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 0;
  font-family: Oswald, sans-serif;
  font-size: 32px;
  line-height: 50px;
}

.section-intro-title.subtitle {
  color: var(--goldenrod);
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 400;
  line-height: 21px;
}

.section-intro-title.small {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}

.image-section {
  background-image: linear-gradient(#00000080, #00000080), url('../images/family-menu-resized.jpg');
  background-position: 0 0, 0%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.image-section.owner {
  background-image: url('../images/catering-menu-fixed.jpg');
  background-position: 50% 0;
  background-size: cover;
  background-attachment: fixed;
}

.image-section-overlay {
  color: #fff;
  background-color: #0006;
  width: 100%;
  height: 100%;
  padding: 125px 35px 125px 335px;
}

.image-section-overlay.owner {
  background-image: linear-gradient(to right, #0009, #0000);
}

.image-section-row {
  margin-top: 70px;
}

.image-section-icon {
  height: 80px;
  margin-bottom: 27px;
}

.image-section-column-title {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.menu-tabs-menu {
  border-radius: 3px;
  margin-top: 45px;
  display: inline-block;
  overflow: hidden;
}

.menu-tab-button {
  color: #ab9f91;
  text-transform: uppercase;
  background-color: #faf3eb;
  padding-left: 45px;
  padding-right: 45px;
  font-family: Oswald, sans-serif;
  line-height: 30px;
  transition: background-color .3s, color .35s;
}

.menu-tab-button:hover {
  color: #fff;
  background-color: #3d3935;
}

.menu-tab-button.w--current {
  color: #fff;
  background-color: #e88f2a;
}

.menu-tab-button.w--current:hover {
  background-color: #e88f2a;
}

.menu-tab-pane {
  padding-top: 55px;
}

.menu-list-item {
  text-align: left;
  border-bottom: 1px #0003;
  flex-direction: column;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-right: 0;
  display: flex;
  position: relative;
}

.menu-list-item.single-line {
  width: 100%;
}

.menu-item-title {
  border-bottom: 1px dashed #0003;
  margin-bottom: 21px;
  padding-bottom: 13px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.menu-item-title.description {
  color: #9e9e9e;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  display: inline-block;
}

.menu-item-price {
  float: none;
  background-color: var(--goldenrod);
  color: #fff;
  border-radius: 3px;
  margin-top: 0;
  padding-left: 9px;
  padding-right: 9px;
  font-family: Open Sans, sans-serif;
  font-weight: 700;
  line-height: 24px;
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 24px;
}

.link {
  color: #e88f2a;
  letter-spacing: 1px;
  font-family: Lato, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.link:hover {
  color: #000;
}

.link.white {
  color: #fff;
}

.link.white:hover {
  opacity: 1;
  color: #ffffff80;
}

.link.white.small-text {
  font-size: 11px;
}

.hero-slide-container {
  padding-top: 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.intro-title {
  color: var(--goldenrod);
  text-align: center;
  text-shadow: none;
  margin-bottom: 14px;
  font-family: Satisfy, sans-serif;
  font-size: 26px;
  line-height: 20px;
}

.intro-title.slider-intro-title {
  color: var(--goldenrod);
  text-shadow: 0 0 6px #0003;
  line-height: 40px;
}

.footer {
  color: #b1b1b1;
  text-align: left;
  background-color: #1c1a17;
  padding: 65px 35px 65px 335px;
}

.menu-overlay {
  background-color: #0000009c;
  background-image: linear-gradient(to top, #3d383300, #0000006e);
  width: 100%;
  height: 100vh;
}

.section-divider-line {
  background-color: #00000017;
  width: 40%;
  height: 1px;
  margin: 35px auto 25px;
  display: block;
}

.text-column-left {
  padding-top: 30px;
  padding-right: 45px;
}

.gallery-thumb {
  border-radius: 4px;
  width: 100%;
  height: auto;
}

.gallery-thumb.large {
  height: 675px;
}

.gallery-thumb.custom {
  height: auto;
}

.small-gallery-row {
  margin-bottom: 15px;
}

.small-gallery-lightbox {
  float: left;
  width: 97%;
}

.small-gallery-lightbox:hover {
  opacity: .8;
}

.small-gallery-lightbox._2 {
  float: right;
}

.small-gallery-lightbox._2:hover {
  opacity: .7;
}

.footer-row {
  text-align: left;
  align-items: center;
  display: flex;
}

.footer-text {
  color: #fff;
  font-family: Merriweather, serif;
  font-size: 12px;
}

.footer-text.small {
  font-size: 10px;
}

.go-to-top-link-block {
  text-align: left;
  background-color: #1c1a17;
  border-radius: 20%;
  width: 90px;
  height: 90px;
  margin-top: -90px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  transform: rotate(45deg);
}

.icon-go-to-top {
  opacity: .4;
  width: 100%;
  height: 100%;
  padding: 35px;
  position: absolute;
  transform: rotate(-45deg);
}

.icon-go-to-top:hover {
  opacity: 1;
}

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

.page-header {
  background-image: url('../images/IMG_3123.jpg');
  background-position: 50%;
  background-size: cover;
  padding-left: 300px;
}

.page-header.reservations {
  background-image: url('../images/Photo-1.jpg');
  background-position: 50% 0;
}

.page-header.gallery {
  background-image: url('../images/cropped-20210118_194739-scaled-4.jpg');
}

.page-header.contact-us {
  background-image: url('../images/IMG_3090-1024x683.jpg');
  background-position: 50%;
}

.page-header.blog-post {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-header.license {
  background-image: url('../images/Beans.jpg');
}

.page-header-overlay {
  color: #fff;
  background-color: #0000008c;
  flex-wrap: wrap;
  align-content: center;
  height: 40vh;
  padding-top: 245px;
  padding-bottom: 245px;
  display: flex;
  position: relative;
}

.page-header-overlay.menu {
  background-color: #000000b3;
  height: 40vh;
  padding-bottom: 280px;
}

.page-header-overlay.blog-post {
  padding-top: 135px;
  padding-bottom: 175px;
}

.menu-page-tabs {
  width: auto;
}

.menu-page-tabs-menu {
  margin-top: -70px;
  top: -80px;
}

.menu-page-tabs-menu.menu-tabs-main {
  margin-top: 0;
  top: -211px;
}

.menu-page-tabs-menu.family-menu, .menu-page-tabs-menu.catering {
  margin-top: 0;
  display: flex;
  top: -70px;
}

.menu-page-tab-button {
  color: #fff;
  background-color: #0006;
  width: 25%;
  height: 70px;
  padding: 15px 0 15px 51px;
  transition: background-color .2s;
  position: relative;
}

.menu-page-tab-button:hover {
  color: #fff;
  background-color: #3d3833;
}

.menu-page-tab-button.w--current {
  background-color: var(--goldenrod);
  color: #fff;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.menu-page-tab-button.w--current:hover {
  background-color: #e88f2a;
}

.menu-page-tab-button.catering-tab {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 20%;
  padding-top: 15px;
  display: inline-block;
}

.menu-page-tab-button.catering-tab.more-space {
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.menu-page-tab-button.catering-tab.more-space.w--current {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding: 0 20px;
  display: flex;
}

.menu-page-tab-button.family-tab.w--current {
  width: 50%;
}

.menu-page-tab-button.family-tab.more-space.w--current {
  top: -80px;
}

.menu-page-tab-button.family-tab.little-more-space-up.w--current, .menu-page-tab-button.more-space {
  padding-top: 25px;
}

.menu-page-tab-button.more-space.w--current {
  padding-top: 20px;
}

.menu-page-tab-title {
  float: none;
  text-transform: uppercase;
  padding-left: 0;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.menu-page-tab-title.subtitle {
  opacity: .49;
  color: #fff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
}

.menu-tab-icon {
  float: left;
  height: 29px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 11px;
}

.menu-page-tab-pane {
  padding-top: 0;
}

.menu-page-tabs-content {
  padding-left: 30px;
  overflow: visible;
}

.gallery-lightbox {
  margin-bottom: 20px;
}

.gallery-lightbox:hover {
  opacity: .8;
}

.gallery-block-left {
  float: left;
  width: 50%;
}

.gallery-block-right {
  float: right;
  width: 50%;
  padding-left: 20px;
}

.contact-us-row {
  align-items: center;
  width: 100%;
  margin: 11px 0;
  display: flex;
}

.contact-us-image {
  background-image: url('../images/person-woman-coffee-cup.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 0 5px 0 0;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.contact-us-image._2 {
  background-image: url('../images/exterior.jpg');
  border-top-right-radius: 0;
  border-bottom-left-radius: 5px;
}

.contact-us-image._2.eyd {
  background-image: url('../images/20210116_120128-2-768x1024.jpg');
}

.contact-us-column {
  order: 1;
  padding-left: 0;
  padding-right: 0;
}

.contact-us-column.text-left {
  order: 1;
  padding: 45px 13px 25px;
}

.contact-us-column.text-left.other {
  order: 1;
}

.contact-us-column.text-right {
  order: -1;
  padding-top: 77px;
  padding-left: 45px;
  padding-right: 45px;
}

.contact-us-column.form-left {
  padding-left: 45px;
  padding-right: 45px;
}

.contact-us-column.first-column {
  order: -1;
}

.logo-icon {
  opacity: 1;
  width: 80%;
  height: auto;
  margin-bottom: 0;
}

.contact-us-map {
  height: 100%;
}

.field {
  border: 2px solid #fff;
  border-radius: 3px;
  width: 100%;
  height: 48px;
  margin-bottom: 14px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  transition: border .2s;
}

.field:hover {
  border-color: #e8e0d8;
}

.field:focus {
  border-color: #e88f2a;
  box-shadow: 0 0 13px #e88f2a80;
}

.field.area {
  height: 108px;
}

.field.first-half {
  float: left;
  width: 99%;
}

.field.last-half {
  float: right;
  width: 99%;
}

.contact-us-reservation-link-block {
  text-align: left;
  background-image: url('../images/20210116_120128-2-768x1024.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 487px;
  position: relative;
  overflow: hidden;
}

.contact-us-reservation-link-block.opd {
  background-image: url('../images/family-menu-resized.jpg');
}

.reservation-link-block-overlay {
  background-image: linear-gradient(#0000, #000000a6 53%);
  width: 100%;
  padding: 100px 45px 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.reservation-overlay-title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Oswald, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 44px;
}

.reservation-overlay-title._2 {
  font-size: 22px;
  font-weight: 300;
}

.success-bg {
  background-color: #0000;
  padding-top: 150px;
  padding-left: 0;
}

.success-text {
  color: #e88f2a;
  font-family: Satisfy, sans-serif;
  font-size: 27px;
  line-height: 30px;
}

.success-text._2 {
  color: #000;
  font-family: Oswald, sans-serif;
  font-size: 37px;
  line-height: 46px;
}

.error-bg {
  border-radius: 4px;
  padding-bottom: 5px;
}

.error-text {
  color: red;
  font-size: 11px;
}

.reservation-image-block {
  background-image: url('../images/Reservation-image.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 487px;
}

.reservation-image-block._2 {
  background-image: url('../images/Interior.jpg');
}

.about-us-image {
  background-image: url('../images/family-menu-resized.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 580px;
}

.about-us-image.eyd {
  background-image: url('../images/20210116_120128-2-768x1024.jpg');
  background-size: cover;
}

.about-us-text-col-right {
  padding-left: 45px;
  padding-right: 45px;
}

.about-us-text-col-right.orange {
  background-color: var(--goldenrod);
  font-family: Oswald, sans-serif;
  font-size: 16px;
  transition: all .425s;
}

.about-us-text-col-right.orange:hover {
  color: #fff;
  background-color: #e87200c4;
}

.owner-image {
  border: 5px solid #fff;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin-bottom: 19px;
}

.owner-title {
  color: #e88f2a;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 21px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.owner-signature {
  color: #9e9e9e;
  margin-top: 38px;
  font-family: Reenie Beanie, sans-serif;
  font-size: 34px;
  line-height: 40px;
}

.owner-signature.hidden {
  display: none;
}

.event-image-section {
  background-image: url('../images/55d82b0753965dde61577b33_Spare-ribs.jpg');
  background-position: 50% 100%;
  background-size: cover;
  background-attachment: fixed;
}

.event-image-section._2 {
  background-image: url('../images/55d82b1aa811abde4e36a0d7_Coffee.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
}

.event-image-section-overlay {
  color: #fff;
  text-align: left;
  background-color: #0000007d;
  width: 100%;
  height: 100%;
  padding: 90px 35px;
  transition: background-color .5s;
}

.event-title {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Oswald, sans-serif;
  font-size: 61px;
  line-height: 60px;
}

.event-title._2 {
  color: #e88f2a;
  margin-bottom: 29px;
  font-size: 30px;
  line-height: 30px;
}

.event-info-title {
  color: #e88f2a;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.event-info-title._2 {
  color: #0a0a0a;
  margin-bottom: 45px;
  font-size: 34px;
  line-height: 30px;
}

.more-info-text {
  margin-left: 12px;
  font-family: Merriweather, serif;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
}

.footer-social-block {
  text-align: center;
  background-color: #47443e;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  margin-left: 3px;
  padding-top: 6px;
  transition: background-color .25s;
}

.footer-social-block:hover {
  background-color: #e88f2a;
}

.image-background-section {
  background-color: #fff;
  background-image: url('../images/BG-food.jpg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 1400px;
  background-attachment: fixed;
  padding: 0;
}

.image-background-section.coffee {
  background-image: url('../images/55d8297553965dde61577b1f_BG-coffee.jpg');
  background-position: 100%;
}

.image-background-section.hidden {
  display: none;
}

.rating-block {
  text-align: center;
  margin-top: 0;
}

.star-rating {
  width: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

.star-rating.gray {
  opacity: .2;
}

.rating-stars-wrapper {
  margin-bottom: 7px;
}

.rating-title {
  margin-bottom: 13px;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  line-height: 31px;
}

.rating-name {
  margin-top: 13px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 25px;
}

.empty-state {
  background-color: #0000001a;
  border-radius: 3px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.blog-link-title {
  color: #1a1a1a;
  text-align: left;
  text-transform: uppercase;
  margin-top: 20px;
  font-family: Oswald, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 35px;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.blog-link-title:hover {
  color: #e88f2a;
}

.blog-post-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.blog-post-item {
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

.blog-text-column-right {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.blog-post-text-block {
  text-align: left;
  width: 100%;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.image-background-overlay {
  background-image: linear-gradient(90deg, #fff 68%, #ffffff03);
  padding: 100px 35px 100px 335px;
}

.image-background-overlay.hidden {
  display: none;
}

.event-column-right {
  padding-top: 32px;
  padding-left: 45px;
  padding-right: 45px;
}

.event-title-link {
  color: #333;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  transition: color .2s;
}

.event-title-link:hover {
  color: #e88f2a;
}

.event-overview-image {
  background-image: url('../images/Owner.jpg');
  background-position: 50%;
  background-size: cover;
  border-radius: 4px;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.events-row {
  margin-bottom: 20px;
}

.event-header-block {
  text-align: left;
  width: 500px;
}

.blog-date {
  color: #e88f2a;
  font-family: Satisfy, sans-serif;
  font-size: 22px;
  line-height: 34px;
}

.blog-post-author-block {
  float: none;
  color: #fff;
  text-align: left;
  background-color: #3d383300;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 31px 0;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-post-profile-image {
  float: left;
  border: 5px solid #fff;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  margin-left: 0;
  margin-right: 20px;
}

.blog-post-author-title {
  float: none;
  margin-top: 15px;
  font-size: 12px;
}

.blog-post-author-title.name {
  text-transform: uppercase;
  margin-top: 0;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.blog-post-block {
  z-index: 10;
  background-color: #fff;
  width: 70%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 46px 140px;
  font-family: Lato, sans-serif;
  display: block;
  position: relative;
}

.image-link-block {
  width: 100%;
  height: 0%;
  transition: background-color .2s;
}

.image-link-block:hover {
  background-color: #e88f2acc;
}

.blog-author-wrapper {
  float: left;
  width: 265px;
}

.empty-state-icon {
  height: 90px;
}

.empty-state-title {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 700;
}

.empty-state-title.subtitle {
  font-size: 15px;
  font-weight: 400;
}

.menu-white-wrapper {
  background-color: #ffffffb3;
  padding: 23px 13px 3px 0;
}

.copyright-text {
  margin-right: 10px;
  font-family: Lato, sans-serif;
  display: inline-block;
}

.bottom-footer-link {
  color: var(--linen);
}

.bottom-footer-link:hover {
  color: #fff;
}

.style-block {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.style-block.first {
  border-bottom-width: 0;
  margin-bottom: 40px;
  padding-bottom: 0;
}

.license-block {
  border: 1px solid #0000001a;
  margin-top: 20px;
  padding: 20px 350px 20px 40px;
  position: relative;
}

.license-block-title {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 30px;
  display: block;
}

.license-links-wrapper {
  position: absolute;
  inset: 50% 50px auto auto;
  transform: translate(0, -50%);
}

.license-link {
  margin-left: 20px;
  display: inline-block;
}

.text-block {
  line-height: 23px;
}

.subpage-intro-nav {
  margin-top: 20px;
}

.subpage-intro-nav-link {
  color: #fff;
  border-right: 1px solid #ffffff1a;
  margin-right: 14px;
  padding-right: 14px;
}

.subpage-intro-nav-link:hover, .subpage-intro-nav-link.w--current {
  color: #ffffff80;
}

.subpage-intro-nav-link.last {
  border-right-width: 0;
  margin-right: 0;
  padding-right: 0;
}

.subpage-intro-nav-link-title {
  text-transform: capitalize;
  display: inline-block;
}

.rtb {
  margin-bottom: -15px;
}

.style-title {
  margin-bottom: 30px;
  font-size: 23px;
  font-weight: 700;
}

.font-2 {
  font-size: 15px;
}

.checklist-item-2 {
  background-image: url('../images/verified.svg');
  background-position: 0;
  background-repeat: no-repeat;
  background-size: 13px;
  padding-left: 25px;
}

.template-color {
  background-color: var(--goldenrod);
  color: #fff;
  text-align: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.template-color._2 {
  background-color: var(--linen);
  color: #000;
  border: 1px solid #000;
}

.template-color._3 {
  background-color: var(--dark-slate-gray);
  color: #fff;
}

.container-5 {
  flex-direction: column;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.container-5:hover {
  opacity: 1;
}

.link-block-5 {
  text-align: center;
  width: auto;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  transition: all .55s;
  display: flex;
}

.link-block-3 {
  text-align: center;
  width: auto;
}

.link-block-3:hover {
  opacity: 1;
}

.container-4 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.container-4:hover {
  opacity: 1;
  color: #552020;
}

.submit-button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #333;
  width: 150px;
  min-width: auto;
  margin-top: 10px;
  font-size: 12px;
  transition: background-color .4s;
}

.submit-button:hover {
  background-color: #000;
}

.submit-button.menu-button-3.line {
  text-align: center;
  border: 1px solid #fff;
  justify-content: center;
  margin-top: 75px;
}

.submit-button.menu-button-3.line.hover-other {
  background-color: var(--goldenrod);
  width: 60%;
  color: var(--linen);
  border-style: none;
  border-width: .5px;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.submit-button.menu-button-3.line.hover-other:hover {
  background-color: var(--black-3);
  opacity: 1;
  border-style: none;
  border-color: #0000;
}

.submit-button.menu-button-3.line.hover-yellow-colour {
  background-color: var(--goldenrod);
  border-style: none;
  border-width: .5px;
  font-family: Montserrat, sans-serif;
  transition: all .45s, background-color .4s;
}

.submit-button.menu-button-3.line.hover-yellow-colour:hover {
  background-color: var(--black-3);
  color: var(--linen);
  border-style: none;
  border-color: #ffab00;
}

.image-9 {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 55px;
}

.image-9.logo-2 {
  border-width: 0;
  width: 400px;
  max-width: none;
  margin-top: 0;
  margin-left: auto;
  padding-bottom: 0;
}

.image-8 {
  color: #0000;
  margin-top: -288px;
  margin-left: -231px;
  display: block;
}

.column-2 {
  background-color: var(--linen);
  color: #fff;
  background-image: linear-gradient(#000000ad, #000000ad), url('../images/exterior.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-top: 0;
  transition: all .525s;
  display: flex;
}

.column-2:hover {
  background-color: #ece0d2;
  background-image: linear-gradient(#0000008c, #0000008c), url('../images/exterior.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.column-2.col-2 {
  background-color: #0000;
  background-image: linear-gradient(#ffffff9e, #ffffff9e), url('../images/20210116_120128-2-768x1024.jpg');
  background-position: 0 0, 53%;
  background-size: auto, cover;
  padding-top: 0;
}

.column-2.col-2:hover {
  background-color: #ece0d2;
  background-image: linear-gradient(#ffffffb3, #ffffffb3), url('../images/20210116_120128-2-768x1024.jpg');
  background-position: 0 0, 53%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.no-padding-left {
  padding-left: 0;
}

.image-10 {
  opacity: 1;
  color: #fff;
  background-color: #0000;
  border: 1px #000;
  border-radius: 0;
  margin: 0 auto 30px;
  position: static;
}

.container-6 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  display: flex;
}

.logo-contact {
  width: 50%;
  margin-bottom: 20px;
}

.paragraph {
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.collection-list-wrapper {
  align-items: center;
  display: block;
}

.dropdown-list {
  background-color: #301a052b;
  display: none;
  position: static;
}

.dropdown-list:hover {
  background-color: #0000;
}

.dropdown-list.w--open {
  text-align: center;
  background-color: #301a0599;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.dropdown-link {
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.dropdown-link:hover {
  background-color: var(--goldenrod);
  color: var(--goldenrod);
}

.dropdown-link-2, .dropdown-link-3 {
  text-align: center;
}

.text-dropdown {
  color: #fff;
  text-align: center;
}

.icon {
  color: #fcfcfc;
  margin-left: 0;
  margin-right: 20px;
}

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

.paragraph-2 {
  text-align: left;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

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

.m-2 {
  margin-bottom: 30px;
}

.bold-text {
  font-family: Lato, sans-serif;
}

.paragraph-4 {
  font-family: Lato, sans-serif;
  font-size: 16px;
}

.paragraph-5 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.paragraph-6 {
  font-family: Lato, sans-serif;
  line-height: 26px;
}

.bold-text-2, .bold-text-3 {
  font-weight: 400;
}

.paragraph-7 {
  text-align: left;
  font-family: Lato, sans-serif;
  font-size: 15px;
}

.paragraph-8 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.div-block, .div-block-2, .div-block-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.html-embed, .html-embed-2 {
  text-decoration: none;
}

.div-block-4, .div-block-5 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-9 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.paragraph-10 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.paragraph-11 {
  flex-direction: column;
  height: 100px;
  text-decoration: none;
  display: flex;
}

.bold-text-4 {
  font-family: Lato, sans-serif;
  text-decoration: none;
}

.bold-text-5 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.paragraph-12 {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.paragraph-13 {
  font-family: Lato, sans-serif;
  line-height: 26px;
}

.description {
  color: #33333391;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
}

.columns {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.collection-list {
  flex-direction: column;
  display: flex;
}

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

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

.body-404 {
  background-image: linear-gradient(#00000080, #00000080), url('../images/DSC_0038-1024x786.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  display: flex;
}

.heading {
  color: #fff;
  font-family: Lato, sans-serif;
}

.image-11 {
  opacity: 1;
  color: #fff;
  margin-bottom: 19px;
}

.text-block-2 {
  color: var(--linen);
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.div-block-10 {
  display: none;
}

.bold-text-10 {
  font-size: 16px;
}

.mask {
  height: 100%;
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 17px;
    line-height: 26px;
  }

  p {
    font-size: 12px;
  }

  .button {
    margin-top: 10px;
    font-size: 12px;
    line-height: 31px;
  }

  .button.blog-archive {
    top: 24px;
    right: 23px;
  }

  .button.bg-orange {
    letter-spacing: 1px;
    font-size: 22px;
    text-decoration: none;
  }

  .navbar-left {
    width: 220px;
  }

  .nav-link {
    line-height: 5px;
  }

  .nav-contact-block {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-social-icon {
    height: 17px;
  }

  .nav-bottom-text._2 {
    font-size: 10px;
  }

  .hero-slider {
    padding-left: 220px;
  }

  .hero-slide-overlay {
    padding-top: 1px;
    padding-left: 55px;
    padding-right: 55px;
  }

  .hero-slide-button {
    width: 50px;
  }

  .hero-slide-title {
    font-size: 65px;
    line-height: 60px;
  }

  .hero-slide-title.subtitle {
    margin-bottom: 14px;
    font-size: 26px;
    line-height: 30px;
  }

  .section {
    padding-top: 84px;
    padding-bottom: 84px;
    padding-left: 255px;
  }

  .section.menu-page-section {
    padding-bottom: 25px;
    padding-left: 220px;
  }

  .section-intro-block {
    width: 90%;
  }

  .section-intro-title {
    width: auto;
    padding-top: 0;
    font-size: 26px;
    line-height: 32px;
  }

  .section-intro-title.subtitle {
    color: var(--goldenrod);
    font-size: 22px;
  }

  .section-intro-title.small {
    font-size: 26px;
    line-height: 26px;
  }

  .image-section {
    background-attachment: scroll;
  }

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

  .image-section-row {
    margin-top: 40px;
  }

  .image-section-icon {
    height: 60px;
  }

  .image-section-column-title {
    font-size: 15px;
    line-height: 19px;
  }

  .menu-tab-button {
    line-height: 20px;
  }

  .menu-tab-pane {
    padding-top: 35px;
  }

  .menu-list-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .menu-item-title {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .menu-item-title.description {
    font-size: 10px;
    line-height: 15px;
  }

  .menu-item-price {
    font-size: 13px;
    right: 11px;
  }

  .intro-title {
    width: auto;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .footer {
    padding: 55px 25px 25px 245px;
  }

  .section-divider-line {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .text-column-left {
    padding-right: 10px;
  }

  .gallery-column-right {
    padding-top: 72px;
  }

  .gallery-thumb, .gallery-thumb.large, .gallery-thumb.custom {
    height: auto;
  }

  .footer-col-left {
    padding-top: 7px;
  }

  .go-to-top-link-block {
    width: 60px;
    height: 60px;
    margin-top: -69px;
    margin-bottom: -21px;
  }

  .icon-go-to-top {
    width: 70%;
    max-width: 70%;
    height: 70%;
    padding: 14px;
  }

  .page-header {
    padding-left: 220px;
  }

  .page-header-overlay {
    background-color: #0000008c;
    height: 30vh;
    padding: 125px 35px 90px;
  }

  .page-header-overlay.menu {
    height: 30vh;
    padding: 115px 0 165px;
  }

  .page-header-overlay.blog-post {
    padding-top: 114px;
    padding-bottom: 114px;
  }

  .menu-page-tabs {
    flex-flow: column;
    display: flex;
  }

  .menu-page-tabs-menu {
    margin-top: -120px;
  }

  .menu-page-tabs-menu.menu-tabs-main {
    top: -222px;
  }

  .menu-page-tabs-menu.family-menu {
    top: -62px;
  }

  .menu-page-tabs-menu.catering {
    justify-content: space-between;
    height: 100%;
    display: flex;
    top: -40px;
  }

  .menu-page-tab-button {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 10px 15px;
    display: inline-block;
  }

  .menu-page-tab-button.catering-tab.more-space {
    width: 25%;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-page-tab-button.catering-tab.more-space.w--current {
    justify-content: center;
    align-items: center;
    width: 25%;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-page-tab-button.family-tab.little-more-space-up.w--current {
    padding-top: 10px;
  }

  .menu-page-tab-button.more-space {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-page-tab-button.more-space.w--current {
    padding-top: 10px;
  }

  .menu-page-tab-title {
    font-size: 14px;
    line-height: 18px;
  }

  .menu-page-tab-title.subtitle {
    margin-top: 4px;
    font-size: 10px;
  }

  .menu-tab-icon {
    float: none;
    height: 20px;
    margin-bottom: 4px;
    position: static;
  }

  .menu-page-tab-pane {
    padding-top: 0;
  }

  .gallery-lightbox {
    margin-bottom: 10px;
  }

  .contact-us-row {
    border-bottom: 1px solid #000;
    flex-direction: column;
    align-items: center;
    padding-bottom: 53px;
    display: flex;
  }

  .contact-us-row.left-alignment {
    align-items: flex-start;
  }

  .contact-us-row.no-line {
    border-bottom-style: none;
  }

  .contact-us-image {
    background-image: none;
    height: auto;
  }

  .contact-us-image._2 {
    height: 200px;
  }

  .contact-us-image._2.eyd {
    height: 200px;
    display: block;
  }

  .contact-us-column.text-left, .contact-us-column.text-left.other, .contact-us-column.text-right, .contact-us-column.form-left {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-us-column.first-column {
    order: 1;
  }

  .contact-us-map {
    height: 200px;
  }

  .contact-us-reservation-link-block {
    height: 300px;
  }

  .contact-us-reservation-link-block.opd {
    height: 200px;
  }

  .reservation-link-block-overlay {
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .reservation-overlay-title {
    font-size: 28px;
    line-height: 38px;
  }

  .reservation-overlay-title._2 {
    margin-top: 9px;
    font-size: 15px;
    line-height: 24px;
  }

  .reservation-image-block {
    height: 416px;
  }

  .reservation-image-column {
    padding-left: 6px;
    padding-right: 0;
  }

  .about-us-image {
    height: 200px;
    margin-bottom: 28px;
  }

  .about-us-image.eyd {
    width: 400px;
    height: 200px;
    margin-bottom: 36px;
  }

  .about-us-text-col-right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-image-section-overlay {
    padding: 70px 35px 50px;
  }

  .event-title {
    font-size: 51px;
    line-height: 50px;
  }

  .image-background-section {
    background-position: 100%;
  }

  .rating-block {
    margin-top: 25px;
  }

  .menu-button {
    width: 50px;
    height: 50px;
  }

  .blog-link-title {
    font-size: 23px;
    line-height: 28px;
  }

  .blog-post-image {
    border-top: 1px #000;
    height: 300px;
  }

  .blog-post-item {
    border-bottom: 1px solid #000;
    justify-content: center;
    margin-bottom: 26px;
    padding-bottom: 25px;
    display: flex;
  }

  .blog-column-left {
    margin-bottom: 18px;
  }

  .blog-text-column-right {
    padding-top: 5px;
    padding-left: 0;
    padding-right: 20px;
  }

  .image-background-overlay {
    background-color: #ffffffe6;
    background-image: none;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 255px;
  }

  .event-column-right {
    padding-left: 25px;
    padding-right: 25px;
  }

  .event-title-link {
    font-size: 25px;
    line-height: 26px;
  }

  .event-overview-image {
    height: 230px;
  }

  .events-row {
    margin-bottom: 10px;
  }

  .event-header-block {
    width: 420px;
  }

  .blog-post-author-block {
    background-color: #3d383300;
    padding-left: 30px;
  }

  .blog-post-block {
    width: 90%;
    margin-top: 0;
    padding-top: 30px;
    padding-left: 45px;
    padding-right: 45px;
  }

  .blog-author-wrapper {
    width: 235px;
  }

  .subpage-intro-nav-link {
    margin-left: 15px;
    padding-left: 15px;
    font-size: 12px;
  }

  .wrapper {
    flex-direction: row;
  }

  .image-9, .image-9.logo-2 {
    margin-left: auto;
  }

  .image-9.logo-2.logo-east, .image-9.logo-2.logo-oak {
    width: 80%;
  }

  .image-8 {
    flex: 0 auto;
    margin-top: -370px;
    margin-left: -245px;
  }

  .column-2.col-2 {
    background-image: linear-gradient(#fff9, #fff9), url('../images/20210116_120128-2-768x1024.jpg');
    background-position: 0 0, 53%;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
  }

  .image-10 {
    max-width: 60%;
    margin-top: 0;
  }

  .grid {
    grid-row-gap: 7px;
  }

  .paragraph-2 {
    width: 300px;
  }

  .paragraph-8 {
    font-size: 14px;
    line-height: 22px;
  }

  .html-embed-2 {
    font-size: 10px;
  }

  .paragraph-10 {
    font-size: 14px;
    line-height: 22px;
  }

  .columns-2 {
    display: block;
  }

  .div-block-10 {
    display: none;
  }

  .code-embed {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  .button, .button.slider-button {
    line-height: 30px;
  }

  .button.blog-read-more {
    margin-top: 0;
  }

  .button.bg-orange.nav-oos {
    width: auto;
  }

  .navbar-left {
    background-color: #0000;
    background-image: none;
    background-size: auto;
    width: 100%;
    height: auto;
    position: fixed;
    inset: 0 0 auto;
  }

  .logo-container {
    float: left;
    width: 200px;
    margin-top: 13px;
    padding-top: 1px;
    padding-bottom: 0;
  }

  .logo-container.w--current {
    flex: 1;
    align-self: flex-start;
    margin-top: 15px;
  }

  .nav-menu {
    z-index: 4000;
    float: right;
    background-color: #262321;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
    position: relative;
    bottom: -25px;
  }

  .logo-text {
    text-align: left;
    font-size: 19px;
    line-height: 28px;
  }

  .menu-divider {
    display: none;
  }

  .hero-slider {
    height: 100vh;
    padding-left: 0;
  }

  .hero-slide-overlay {
    padding-top: 41px;
  }

  .hero-slide-title {
    font-size: 45px;
    line-height: 40px;
  }

  .hero-slide-title.subtitle {
    font-size: 20px;
    line-height: 20px;
  }

  .section {
    padding: 60px 25px;
    font-size: 12px;
  }

  .section-intro-block {
    width: 100%;
  }

  .section-intro-title {
    font-size: 26px;
  }

  .section-intro-title.subtitle {
    margin-bottom: 9px;
    font-size: 18px;
  }

  .image-section-overlay {
    padding: 25px;
  }

  .image-section-icon {
    height: 50px;
    margin-bottom: 16px;
  }

  .menu-tabs-menu {
    margin-top: 25px;
  }

  .menu-list-item {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-item-title {
    font-size: 14px;
  }

  .menu-item-title.description {
    font-size: 11px;
    line-height: 16px;
  }

  .menu-item-price {
    right: 0;
  }

  .hero-slide-container {
    padding-left: 35px;
    padding-right: 35px;
    top: 53%;
  }

  .footer {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 0;
  }

  .menu-overlay {
    justify-content: space-between;
    height: auto;
    padding-bottom: 10px;
    display: flex;
    position: relative;
  }

  .section-divider-line {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .text-column-left {
    padding-top: 0;
  }

  .gallery-column-right {
    padding-top: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-thumb {
    height: auto;
  }

  .footer-col-left {
    text-align: center;
    padding-top: 15px;
    padding-left: 0;
  }

  .go-to-top-link-block {
    margin-top: -39px;
    padding: 12px;
  }

  .go-to-top-link-block.w--current {
    width: 70px;
    height: 70px;
    margin-top: -38px;
    margin-bottom: -26px;
  }

  .icon-go-to-top {
    width: 40%;
    max-width: none;
    height: 40%;
    padding: 0;
  }

  .footer-col-right {
    text-align: center;
    padding-top: 15px;
    padding-left: 0;
  }

  .page-header-overlay {
    background-color: #0000008c;
    padding: 171px 35px 50px;
  }

  .page-header-overlay.menu {
    height: 30vh;
    padding-top: 184px;
    padding-bottom: 95px;
  }

  .page-header-overlay.blog-post {
    padding-top: 186px;
    padding-bottom: 86px;
  }

  .menu-page-tabs-menu {
    margin-top: -55px;
  }

  .menu-page-tabs-menu.menu-tabs-main {
    top: -1px;
  }

  .menu-page-tabs-menu.family-menu {
    justify-content: center;
    display: flex;
    top: -50px;
  }

  .menu-page-tabs-menu.catering {
    justify-content: space-between;
    align-items: center;
    display: flex;
    top: -36px;
  }

  .menu-page-tabs-menu.catering.w--current {
    justify-content: flex-start;
    align-items: stretch;
    top: -27px;
  }

  .menu-page-tab-button {
    text-align: left;
    background-color: #3d3833;
    border-bottom: 1px solid #534d47;
    width: 100%;
    height: 55px;
    margin-bottom: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: background-color .2s;
    display: block;
  }

  .menu-page-tab-button:hover {
    color: #fff;
    background-color: #e88f2a;
  }

  .menu-page-tab-button.catering-tab.more-space {
    flex-direction: column;
    width: auto;
    display: flex;
  }

  .menu-page-tab-button.catering-tab.more-space.w--current {
    height: auto;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .menu-page-tab-button.family-tab.little-more-space-up.w--current {
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-page-tab-title {
    font-size: 15px;
    line-height: 13px;
    display: inline;
  }

  .menu-tab-icon {
    float: left;
    height: 26px;
    margin-right: 14px;
  }

  .menu-page-tab-pane {
    padding-top: 25px;
  }

  .gallery-block-left {
    padding-right: 10px;
  }

  .gallery-block-right {
    padding-left: 0;
  }

  .contact-us-row {
    width: 100%;
    margin-bottom: 50px;
    padding-bottom: 6px;
  }

  .contact-us-row.no-line {
    border-bottom-style: none;
  }

  .contact-us-image._2 {
    display: block;
  }

  .contact-us-image._2.eyd {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    flex-direction: row;
    display: block;
    overflow: hidden;
  }

  .contact-us-column {
    order: -1;
    margin-bottom: 24px;
  }

  .contact-us-column.text-left {
    order: -1;
    padding: 0 0 15px;
  }

  .contact-us-column.text-left.other {
    order: -1;
  }

  .contact-us-column.text-right {
    padding-top: 35px;
  }

  .contact-us-column.form-left {
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-us-column.first-column {
    order: 1;
    height: 300px;
  }

  .logo-icon {
    float: left;
    width: auto;
    height: auto;
    margin-left: 0;
    margin-right: 9px;
    display: block;
  }

  .contact-us-map {
    height: 270px;
    padding-bottom: 37px;
  }

  .contact-us-reservation-link-block {
    justify-content: center;
    align-items: center;
    height: 307px;
    display: flex;
  }

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

  .reservation-image-column {
    padding-left: 0;
  }

  .about-us-image {
    height: 290px;
  }

  .about-us-image.eyd {
    background-position: 50% 30%;
    width: 100%;
    height: 300px;
  }

  .about-us-image-column {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .about-us-text-col-right {
    padding-left: 0;
    padding-right: 0;
  }

  .about-us-text-col-right.orange {
    padding-left: 15px;
    padding-right: 15px;
  }

  .event-image-section-overlay {
    padding: 110px 25px 20px;
  }

  .event-title._2 {
    margin-bottom: 20px;
  }

  .event-info-title._2 {
    margin-bottom: 25px;
  }

  .facts-column {
    padding-bottom: 14px;
  }

  .image-background-section {
    background-size: cover;
  }

  .gallery-column {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-button {
    background-color: var(--goldenrod);
    width: 50px;
    height: 50px;
    color: var(--linen);
    text-align: center;
    border-radius: 3px;
    align-self: flex-end;
    margin-top: 18px;
    margin-right: 10px;
    padding: 14px 0;
    display: block;
    right: 23px;
  }

  .menu-button.w--open {
    background-color: #e88f2a;
    right: 23px;
  }

  .blog-post-image {
    width: auto;
    height: 250px;
  }

  .blog-post-item {
    border-bottom: 1px solid #e7e7e7;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .blog-column-left {
    padding-right: 0;
  }

  .blog-text-column-right {
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .image-background-overlay {
    background-color: #fff;
    padding: 52px 25px 40px;
  }

  .event-column-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .event-header-block {
    width: 80%;
  }

  .blog-post-block {
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .blog-author-wrapper {
    width: 265px;
  }

  .menu-white-wrapper {
    padding: 0;
  }

  .copyright-text {
    font-size: 11px;
  }

  .style-block {
    padding: 30px;
  }

  .style-block.first {
    padding: 40px 40px 0;
  }

  .license-block {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 40px;
  }

  .license-links-wrapper {
    margin-top: 10px;
    position: static;
    transform: none;
  }

  .license-link {
    margin-left: 0;
    margin-right: 20px;
  }

  .subpage-intro-nav {
    float: none;
  }

  .subpage-intro-nav-link {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 15px;
  }

  .button-column {
    padding-top: 10px;
  }

  .column {
    padding: 20px 0 0;
  }

  .container-5 {
    padding-top: 0;
  }

  .link-block-5 {
    width: 100%;
  }

  .wrapper {
    flex-direction: column;
    display: flex;
  }

  .link-block-3 {
    width: 100%;
  }

  .submit-button.menu-button-3.line.hover-other {
    width: 40%;
  }

  .image-9 {
    margin-left: auto;
    padding-bottom: 26px;
  }

  .image-9.logo-2 {
    margin-top: 0;
    margin-left: auto;
  }

  .image-8 {
    flex: 0 auto;
    align-self: auto;
    margin-left: -662px;
  }

  .column-2 {
    flex: 0 auto;
    justify-content: space-around;
    width: 100%;
    height: 50%;
  }

  .column-2.col-2 {
    height: 50%;
    padding-top: 0;
  }

  .image-10 {
    width: 300px;
    margin-top: 0;
  }

  .container-6 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    margin-left: 3px;
    margin-right: 3px;
    padding: 20px 0;
    display: flex;
  }

  .grid {
    grid-row-gap: 3px;
  }

  .paragraph-2 {
    width: 100%;
  }

  .paragraph-6 {
    line-height: 22px;
  }

  .paragraph-12 {
    line-height: 26px;
  }

  .bold-text-6 {
    line-height: 20px;
    display: flex;
  }

  .bold-text-7, .bold-text-8 {
    font-size: 14px;
  }

  .div-block-6, .div-block-7, .div-block-8 {
    width: 40%;
  }

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

  .div-block-10 {
    width: 40%;
    display: block;
  }

  .code-embed-2 {
    font-size: 10px;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 16px;
    line-height: 18px;
  }

  .button {
    width: 100%;
    margin-top: 5px;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 30px;
  }

  .button.slider-button {
    margin-top: 8px;
    margin-left: 0;
    margin-right: 10px;
    padding-left: 15px;
    padding-right: 15px;
    line-height: 30px;
  }

  .button.overview-button {
    width: auto;
  }

  .button.event-button {
    margin-bottom: 10px;
  }

  .button.blog-archive {
    width: auto;
    display: block;
    position: static;
  }

  .button.bg-orange {
    padding-top: 0;
    font-size: 20px;
    text-decoration: none;
  }

  .button.bg-orange.nav-oos {
    display: none;
  }

  .logo-container {
    width: auto;
  }

  .logo-container.w--current {
    flex: 0 auto;
    order: 0;
    align-self: flex-start;
    width: 180px;
    padding-left: 0;
  }

  .nav-menu {
    position: absolute;
    inset: 0% 0% auto;
  }

  .nav-link {
    font-size: 13px;
    line-height: 4px;
  }

  .hero-slider {
    height: 100vh;
  }

  .hero-slide-overlay {
    padding-top: 0;
    padding-left: 45px;
    padding-right: 45px;
  }

  .hero-slide-button {
    width: 30px;
    height: 70px;
    font-size: 14px;
    top: 50px;
  }

  .hero-slide-title {
    font-size: 40px;
  }

  .hero-slide-title.subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .section {
    padding: 40px 26px;
  }

  .section.menu-page-section {
    padding-left: 0;
    padding-right: 0;
  }

  .section-intro-block {
    margin-bottom: 1px;
  }

  .section-intro-title {
    font-size: 20px;
    line-height: 28px;
  }

  .section-intro-title.subtitle {
    color: var(--goldenrod);
    margin-top: 1px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 14px;
  }

  .image-section-icon {
    height: 25px;
  }

  .image-section-column-title {
    font-size: 13px;
  }

  .menu-tabs-menu {
    width: 100%;
    margin-top: 20px;
    display: block;
  }

  .menu-tab-button {
    border-radius: 3px;
    width: 100%;
    margin-bottom: 2px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .menu-list-item {
    margin-bottom: 7px;
    padding-bottom: 7px;
    padding-right: 0;
  }

  .hero-slide-container {
    padding-left: 45px;
    padding-right: 45px;
    top: 60%;
  }

  .intro-title {
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 20px;
  }

  .intro-title.slider-intro-title {
    line-height: 23px;
  }

  .footer {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 0;
  }

  .menu-overlay {
    height: 170px;
    padding-bottom: 0;
  }

  .text-column-left {
    padding-top: 0;
  }

  .gallery-column-right {
    padding-top: 16px;
  }

  .small-gallery-row {
    margin-bottom: 8px;
  }

  .footer-row {
    justify-content: space-around;
  }

  .footer-col-left {
    padding-right: 0;
  }

  .go-to-top-link-block.w--current {
    margin-top: -48px;
    margin-bottom: -7px;
  }

  .icon-go-to-top {
    z-index: 999;
  }

  .footer-col-right {
    justify-content: flex-end;
    padding-right: 0;
    display: flex;
  }

  .page-header, .page-header.gallery {
    padding-left: 0;
  }

  .page-header-overlay {
    background-color: #0000008c;
    height: 30vh;
    padding: 169px 25px 0;
  }

  .page-header-overlay.menu {
    height: 20vh;
    padding-top: 224px;
  }

  .page-header-overlay.blog-post {
    padding-top: 146px;
    padding-bottom: 36px;
  }

  .menu-page-tabs-menu.catering {
    flex-direction: column;
    align-items: stretch;
    top: 0;
  }

  .menu-page-tab-button.catering-tab.more-space, .menu-page-tab-button.catering-tab.more-space.w--current {
    width: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .menu-page-tab-button.family-tab.little-more-space-up.w--current {
    width: 100%;
  }

  .menu-page-tabs-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-us-image {
    height: auto;
  }

  .contact-us-column {
    margin-bottom: 0;
  }

  .contact-us-column.text-right {
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-us-column.first-column {
    height: auto;
  }

  .logo-icon {
    width: 80%;
  }

  .contact-us-map {
    height: 160px;
    padding-bottom: 0;
  }

  .contact-us-reservation-link-block {
    height: 250px;
  }

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

  .reservation-image-block {
    height: 305px;
  }

  .about-us-image {
    height: 170px;
  }

  .about-us-image.eyd {
    height: 160px;
  }

  .about-us-image-column {
    padding-bottom: 0;
  }

  .about-us-text-col-right.orange {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }

  .event-image-section-overlay {
    padding: 100px 20px 30px;
  }

  .event-title {
    font-size: 29px;
    line-height: 30px;
  }

  .event-title._2 {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 23px;
  }

  .event-info-title {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 16px;
  }

  .event-info-title._2 {
    font-size: 24px;
  }

  .more-info-text {
    margin-left: 0;
    display: block;
  }

  .footer-social-block {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .image-background-section {
    background-position: -261%;
  }

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

  .menu-button {
    width: 100px;
    margin-top: 0;
    margin-right: 0;
  }

  .menu-button.w--open {
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .blog-link-title {
    margin-top: 10px;
    line-height: 25px;
  }

  .blog-post-image {
    height: 140px;
  }

  .blog-post-item {
    border-bottom-color: var(--dark-slate-gray);
  }

  .blog-text-column-right {
    padding-top: 15px;
  }

  .event-column-right {
    padding-top: 15px;
    padding-right: 0;
  }

  .event-title-link {
    font-size: 17px;
    line-height: 17px;
  }

  .event-overview-image {
    height: 170px;
  }

  .event-header-block {
    width: 90%;
  }

  .blog-date {
    font-size: 18px;
    line-height: 24px;
  }

  .blog-post-author-block {
    padding-left: 30px;
    padding-right: 28px;
  }

  .blog-post-block {
    width: 100%;
    padding-bottom: 160px;
  }

  .blog-author-wrapper {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .style-block.first {
    padding: 25px 25px 0;
  }

  .license-block {
    border-width: 1px 0 0;
    margin-top: 0;
    padding: 25px;
  }

  .subpage-intro-nav-link {
    border-right-width: 0;
    margin-top: 8px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .button-column {
    text-align: center;
    padding-bottom: 10px;
  }

  .style-title {
    text-align: center;
  }

  .container-5 {
    flex-direction: column;
  }

  .link-block-3, .container-4 {
    text-align: center;
  }

  .submit-button.menu-button-3.line.hover-other {
    margin-top: 60px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .submit-button.menu-button-3.line.hover-yellow-colour {
    margin-top: 25px;
  }

  .image-9 {
    text-align: center;
    margin-top: -25px;
    margin-left: 0;
    padding-bottom: 37px;
  }

  .image-9.logo-2 {
    margin-left: 0;
  }

  .image-8 {
    margin-left: -417px;
  }

  .column-2.col-2 {
    padding-top: 0;
  }

  .image-10 {
    width: auto;
    max-width: 100%;
  }

  .container-6 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    display: flex;
  }

  .logo-contact {
    width: 70%;
  }

  .paragraph {
    font-size: 14px;
  }

  .grid {
    flex-direction: column;
    display: flex;
  }

  .paragraph-5 {
    font-size: 14px;
    line-height: 22px;
  }

  .html-embed {
    text-decoration: none;
  }

  .paragraph-9 {
    line-height: 22px;
  }

  .bold-text-5 {
    font-size: 14px;
  }

  .paragraph-12 {
    line-height: 24px;
  }

  .paragraph-14 {
    text-align: left;
    font-family: Lato, sans-serif;
  }

  .bold-text-9 {
    font-size: 12px;
  }

  .image-11 {
    max-width: 80%;
  }

  .html-embed-3 {
    font-size: 26px;
    text-decoration: none;
  }

  .html-embed-4, .html-embed-5 {
    text-decoration: none;
  }
}

#w-node-_795f672c-b07b-e999-c642-69822086eabf-bb9259f5 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-a44df520-1aaf-e850-c4bf-e0b12820460b-bb9259f5, #w-node-f46f1b07-f7bb-5e4a-61a5-4fac03169927-bb9259f5, #w-node-ef253c4e-5bdb-e61d-f6aa-4003bf7e7c07-bb9259f5, #w-node-_6c90a255-1dda-8792-53a1-117266895687-bb9259f5, #w-node-_1fc898e9-2a1d-3bda-11df-975042ed4f63-bb9259f5, #w-node-_2b79d57c-75bd-6e2f-4710-8301842da597-bb9259f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a77f2393-b34d-b1e4-bd47-ccef18f846c1-bb9259f5 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_3492dd5e-2118-a5ac-3ec8-ad9e4c897951-bb9259f5, #w-node-c0b88c33-3fac-9a1f-4a33-9edae60d00ca-bb9259f5, #w-node-c1624d06-543d-40f9-6cb0-ece1ef9fecc5-bb9259f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_566f10ae-3f2a-a179-5543-bdcfa6d22f20-bb9259f5 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_73a341b9-4373-e51d-1f7c-45e2262cd1da-bb9259f5, #w-node-_0f4c3450-f956-6170-eaed-08187a02aa64-bb9259f5, #w-node-bcf0f08b-9e0f-c80e-da20-db2ed323bab3-bb9259f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_795f672c-b07b-e999-c642-69822086eabf-019259f6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-a44df520-1aaf-e850-c4bf-e0b12820460b-019259f6, #w-node-f46f1b07-f7bb-5e4a-61a5-4fac03169927-019259f6, #w-node-ef253c4e-5bdb-e61d-f6aa-4003bf7e7c07-019259f6, #w-node-_6c90a255-1dda-8792-53a1-117266895687-019259f6, #w-node-_1fc898e9-2a1d-3bda-11df-975042ed4f63-019259f6, #w-node-_2b79d57c-75bd-6e2f-4710-8301842da597-019259f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a77f2393-b34d-b1e4-bd47-ccef18f846c1-019259f6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_3492dd5e-2118-a5ac-3ec8-ad9e4c897951-019259f6, #w-node-c0b88c33-3fac-9a1f-4a33-9edae60d00ca-019259f6, #w-node-c1624d06-543d-40f9-6cb0-ece1ef9fecc5-019259f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_566f10ae-3f2a-a179-5543-bdcfa6d22f20-019259f6 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

#w-node-_73a341b9-4373-e51d-1f7c-45e2262cd1da-019259f6, #w-node-_0f4c3450-f956-6170-eaed-08187a02aa64-019259f6, #w-node-bcf0f08b-9e0f-c80e-da20-db2ed323bab3-019259f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


