:root {
  --brown: #110e0c;
  --light-outline: #ffffff1a;
  --label: #beae79;
  --beige-white: #fffbee;
  --dark-background: #060a0e;
  --extra-dark-background: #030608;
  --light-background: #8ea5b60d;
  --light-overlay: #04080c4d;
  --dark-overlay: #04080c99;
  --normal-overlay: #04080c80;
}

.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 {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.35em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35em;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne;
  font-size: 21px;
  font-weight: 500;
  line-height: 24px;
}

p {
  margin-bottom: 0;
}

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

strong {
  font-weight: 700;
}

.grid-wrapper {
  z-index: 20;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 1fr;
  grid-template-columns: minmax(5vw, 1fr) minmax(auto, 1500px) minmax(5vw, 1fr);
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.content-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.body {
  background-color: var(--brown);
  color: #fff;
  font-family: Montserrat, sans-serif;
}

.navbar {
  border-bottom: 1px none var(--light-outline);
  background-color: #fff0;
  justify-content: center;
  align-items: stretch;
  height: 100px;
  padding-top: 5px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  border-top: 1px solid #beae791a;
  border-bottom: 1px none var(--label);
  color: var(--beige-white);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: stretch;
  place-items: center stretch;
  width: 100%;
  margin-left: 0;
  padding: 30px 49px;
  font-family: trajan-pro-3, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1em;
  text-decoration: none;
  display: grid;
}

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

.wrapper-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--light-outline);
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: row;
  justify-content: stretch;
  justify-items: stretch;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.nav-menu {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 200px;
  padding-right: 200px;
  display: flex;
}

.brand {
  border-right: 1px none var(--light-outline);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding-left: 0;
  font-family: Syne;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.nav-right {
  border-left: 1px none var(--light-outline);
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

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

.wrapper-social {
  grid-column-gap: 12px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.social-icon {
  border: 1px solid var(--light-outline);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding-left: 0;
  font-size: 8px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.nav-cover {
  border-bottom: 1px solid var(--light-outline);
  background-color: var(--brown);
  height: 100%;
  position: absolute;
  inset: -101% 0% 0%;
}

.circle-link {
  border: 1px none var(--light-outline);
  background-color: var(--dark-background);
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  padding: 6px;
  font-size: 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.scroll-link {
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  border-style: none solid;
  border-width: 1px;
  border-color: black var(--light-outline);
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  place-content: stretch center;
  align-items: center;
  font-size: 11px;
  text-decoration: none;
  display: grid;
  overflow: hidden;
}

.intro-box {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 450px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.link {
  border: 1px solid var(--light-outline);
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 11px;
  text-decoration: none;
}

.left-arrow {
  border: 1px solid var(--light-outline);
  letter-spacing: 4px;
  text-transform: uppercase;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  padding: 15px 28px;
  font-size: 11px;
  display: flex;
  inset: 0% auto 0% 0%;
}

.menu-link {
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  height: 65px;
  display: flex;
}

.lottie-animation {
  justify-content: center;
  align-items: center;
  width: 28px;
  display: flex;
}

.full-menu {
  border-bottom: 1px solid var(--light-outline);
  background-color: var(--brown);
  justify-content: center;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.menu-content {
  grid-column-gap: 0px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  overflow: auto;
}

.nav-link-text {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  white-space: nowrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  width: 100%;
  display: grid;
}

.full-menu-content {
  justify-content: center;
  height: 100vh;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
}

.nav-cover-wrapper {
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.testimonial-slide {
  border-left: 1px none var(--light-outline);
  padding: 0;
}

.gallery-image {
  height: 31vw;
  max-height: 725px;
  position: relative;
  overflow: hidden;
}

.preloader {
  z-index: 10000;
  border-bottom: 1px solid var(--light-outline);
  background-color: var(--extra-dark-background);
  background-image: linear-gradient(#000000a6, #000000a6), url('../images/pattern.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, contain;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.menu-hover {
  flex-direction: column;
  justify-content: flex-start;
  width: 120px;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.menu-hover.right {
  inset: 0% 0% 0% auto;
}

.menu-hover-line {
  background-color: #beae7961;
  width: 100%;
  height: 1px;
}

.menu-hover-line-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  height: 15vh;
  display: flex;
}

.menu-hover-line-wrapper.right {
  align-items: flex-start;
}

.menu-hover-line-wrapper.left {
  align-items: flex-end;
}

.quick-link-list {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top: 1px none var(--light-outline);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.quick-link-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border-bottom: 1px none var(--light-outline);
  color: var(--beige-white);
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Mulish, sans-serif;
  text-decoration: none;
  display: grid;
}

.quick-link-icon {
  border: 1px solid var(--light-outline);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 12px;
  display: flex;
}

.loader {
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
}

.footer-list-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--light-outline);
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 12px;
  text-decoration: none;
  transition: padding .5s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.footer-list-item:hover {
  padding-left: 24px;
  padding-right: 24px;
}

.circle-link-hover {
  z-index: 50;
  background-color: #fff;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.tab-top {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 36px;
  padding-bottom: 36px;
  transition: padding .5s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.tab-top:hover {
  padding-left: 36px;
  padding-right: 36px;
}

.anchor-link {
  border-bottom: 1px solid var(--light-outline);
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  text-decoration: none;
  transition: background-color .5s, padding .5s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.anchor-link:hover {
  padding-left: 24px;
  padding-right: 24px;
}

.anchor-link.w--current {
  background-color: var(--light-background);
  padding-left: 24px;
  padding-right: 24px;
}

.footer-social-link {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 125px;
  border: 1px solid #415d6b;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  transition: background-color .2s;
}

.footer-social-link:hover {
  background-color: #415d6b;
}

.footer-social-link.whatsapp {
  background-image: none;
  background-size: 16px;
}

.footer-social-link.whatsapp:hover {
  background-image: none;
}

.footer-social-link.whatsapp.last {
  background-image: url('../images/instagram_1instagram.avif');
  background-size: 18px;
  border-style: none;
  border-color: #fff;
  border-radius: 0%;
  width: 30px;
  height: 30px;
  margin-right: 0;
  transition-property: opacity;
}

.footer-social-link.whatsapp.last:hover {
  opacity: .48;
  background-color: #0000;
}

.slide-img {
  width: 100%;
  height: 100%;
}

.slide-img.new4 {
  background-image: url('../images/slideshow4.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-img.new5 {
  background-image: url('../images/slideshow5.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-img.new3 {
  background-image: url('../images/slideshow3.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-img.scre {
  background-image: url('../images/slideshow2.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.slide-img.new2 {
  background-image: url('../images/slideshow1.jpg');
  background-position: 50% 0;
  background-size: cover;
}

.icon-2 {
  opacity: .76;
  font-size: 30px;
}

.social-box {
  justify-content: center;
  margin-top: 14px;
  display: flex;
}

.hero-container {
  z-index: 99;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-container.p {
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 50px;
}

.overlay-2 {
  background-color: #0d131691;
  position: absolute;
  inset: 0%;
}

.overlay-2.hp {
  z-index: 98;
  background-color: #0000;
  background-image: linear-gradient(#000, #0000 25%, #0000), linear-gradient(#0000, #0000 55%, #110e0c);
}

.icon {
  opacity: .76;
  font-size: 30px;
  font-weight: 200;
}

.right-arrow-2, .left-arrow-2 {
  z-index: 99;
}

.hero-link-block {
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}

.hero-link-block:hover {
  opacity: .85;
}

.slider-section {
  z-index: 999;
  background-color: #000;
  min-height: 100vh;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

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

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

.hero-link {
  color: #fff;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 22px;
  text-decoration: none;
  transition: color .2s;
}

.hero-link:hover {
  color: #ab8d69;
}

.on-load-5._4545 {
  margin-top: 5px;
}

.hero-slider-2 {
  background-color: #0000;
  width: 100%;
  height: 100%;
  margin-top: 0;
  position: absolute;
  inset: 0;
}

.slide-content-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image {
  filter: sepia();
}

.text-block {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: copperplate;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
}

.about-section.section-spacing-copy {
  padding-top: 0;
  padding-bottom: 0;
}

.gradi-wrapper {
  width: 100%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.gradi-wrapper._100 {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

._2-col-grid {
  grid-column-gap: 85px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

._2-col-grid.banner-grid {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-columns: .75fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0 80px;
}

._2-col-grid.parties {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 0 80px;
}

.image-banner {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
}

.image-banner.dining {
  background-image: linear-gradient(180deg, #110e0c, transparent 51%, var(--brown)), linear-gradient(90deg, #110e0c 26%, #09070600 55%, transparent), url('../images/D663D60A-2808-4366-A977-C72B260B1F42.png'), url('../images/AU8I3755.jpg');
  background-position: 0 0, 0 0, 50%, 50%;
  background-repeat: repeat, repeat, no-repeat, repeat;
  background-size: auto, auto, cover, cover;
  background-attachment: scroll, scroll, fixed, fixed;
  min-height: auto;
}

.image-banner.parties-back {
  background-image: linear-gradient(180deg, #110e0c, transparent 50%, var(--brown)), linear-gradient(90deg, #110e0c 10%, transparent), url('../images/D663D60A-2808-4366-A977-C72B260B1F42.png'), url('../images/parties2.jpg');
  background-position: 0 0, 0 0, 50%, 50%;
  background-repeat: repeat, repeat, no-repeat, repeat;
  background-size: auto, auto, cover, cover;
  background-attachment: scroll, scroll, fixed, fixed;
  min-height: auto;
}

.text-span-4 {
  color: #fff;
  text-transform: none;
  font-weight: 600;
}

.heading-7 {
  color: #fff;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 35px;
  font-weight: 400;
}

.heading-7.center {
  color: var(--beige-white);
  text-transform: none;
  margin-bottom: 0;
  font-family: trajan-pro-3, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
}

.paragraph {
  max-width: 600px;
  margin-bottom: 38px;
}

.paragraph.hours {
  direction: ltr;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  max-width: 430px;
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 300;
}

.paragraph.hours.c111 {
  color: #fffbee;
  margin-bottom: 0;
  font-family: Mulish, sans-serif;
}

.paragraph-space {
  color: #e9e9e9;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5em;
}

.paragraph-space.center {
  color: var(--beige-white);
  font-family: Mulish, sans-serif;
  font-weight: 300;
}

.paragraph-space.center.single {
  margin-top: 30px;
}

.paragraph-space.center.none0 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.sub {
  margin-top: 0;
  margin-bottom: 0;
}

.sub._0a0a {
  margin-top: 0;
}

.title-holder-25 {
  text-align: center;
}

.sub1 {
  color: var(--beige-white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: trajan-pro-3, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  display: block;
}

.card {
  border: 1px #000;
  border-radius: 3px;
  flex-direction: row;
  width: 13rem;
  height: 20rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px -10px #000;
}

.card-text {
  color: var(--beige-white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  padding-bottom: 3px;
  font-family: trajan-pro-3, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.menu-section {
  z-index: 10;
  background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, #00000012, #00000012), url('../images/pattern.jpeg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, 700px;
  background-attachment: scroll, scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
  display: flex;
  position: relative;
}

.cards-section {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.parallax {
  background-image: linear-gradient(#000, #0000 53%, #000);
  height: 600px;
}

.parallax.top {
  background-image: linear-gradient(#110e0c, #0000 50%, #110e0c), url('../images/parties1.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.parallax.contact {
  background-image: linear-gradient(#110e0c, #05040400 41%, #110e0c 95%, #110e0c), url('../images/parallax6.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.parallax.v2 {
  background-image: linear-gradient(#110e0c, #0000 50%, #110e0c), url('../images/parallax5.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
}

.parallax.menus {
  background-image: linear-gradient(#0000, #080606bf 68%, #110e0c), url('../images/gallery28.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
}

.parallax.whiskey {
  background-image: linear-gradient(#110e0c, #08060659 50%, #110e0c), url('../images/Whiskey_Roxx_shutterstock_1598813287.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 400px;
  display: flex;
}

.parallax.thanks {
  background-image: linear-gradient(#0000, #080606bf 68%, #110e0c), url('../images/gallery11.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.p-parties.none {
  padding-top: 0;
  padding-bottom: 0;
}

.code-embed {
  font-size: 15px;
  font-weight: 300;
}

.cta11-form {
  align-self: center;
  margin-bottom: 0;
}

.text-area {
  color: #18181d;
  background-color: #f5f5f5;
  border-style: none;
  min-height: 170px;
  padding: 14px 20px 18px;
  font-family: Mulish, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
}

.text-area:hover {
  background-color: #f0f0f0;
}

.text-area:active, .text-area:focus {
  background-color: #ececec;
}

.cta11-form-wrap {
  z-index: 2;
  grid-column-gap: 50px;
  grid-row-gap: 30px;
  background-color: var(--brown);
  background-image: linear-gradient(#110e0c66, #110e0c66), url('../images/pattern.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border: 1px solid #d7b56d;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 40px;
  display: grid;
  position: relative;
}

.success-message-3 {
  color: #12b878;
  text-align: center;
  text-transform: uppercase;
  background-color: #12b8781a;
  border-bottom: 3px solid #12b878;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 30px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

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

.error-message-3 {
  color: #db4b68;
  text-align: center;
  text-transform: uppercase;
  background-color: #db4b680d;
  border-bottom: 3px solid #db4b68;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.cta11-form-wrap-copy {
  flex-direction: column;
  display: flex;
}

.date {
  color: #18181d;
  background-color: #f5f5f5;
  border: 1px #000;
  width: 33.33%;
  margin-right: 10px;
  padding: 30px 20px;
  font-family: Mulish, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 30px;
}

.buttons-general {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #d7b56d;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 9px 30px;
  font-family: trajan-pro-3, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  display: flex;
}

.buttons-general:hover {
  background-color: #000;
}

.text-field-2 {
  color: #18181d;
  text-transform: none;
  background-color: #f5f5f5;
  border-style: none;
  border-radius: 0;
  align-self: stretch;
  width: 100%;
  margin-bottom: 0;
  padding: 30px 20px;
  font-family: Mulish, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.text-field-2:hover {
  background-color: #f0f0f0;
}

.text-field-2:active {
  background-color: #ececec;
}

.text-field-2:focus {
  color: #18181d;
  background-color: #ececec;
}

.text-field-2.bottom-margin-field {
  width: 50%;
  margin-bottom: 10px;
  margin-right: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 15px;
  font-weight: 300;
}

.text-field-2.bottom-margin-field.pp {
  margin-right: 0;
}

.text-field-2.bottom-margin-field._3 {
  width: 33.33%;
}

.text-field-2.bottom-margin-field._3.last2 {
  margin-right: 0;
}

.grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.div-block-38 {
  border: 1px solid #d7b56e;
  width: 100%;
  padding: 17px 14px 20px;
}

.image-2 {
  filter: sepia(34%);
  object-fit: cover;
  border: 1px solid #d7b56e;
  border-bottom-style: none;
  height: 200px;
}

.button {
  background-color: #000;
  border: 1px solid #d7b56e;
  margin-top: -12px;
  padding: 7px 14px;
  text-decoration: none;
  transition: filter .625s;
}

.button:hover {
  filter: invert();
}

.btntxt {
  color: var(--beige-white);
  text-align: center;
  letter-spacing: .5px;
  text-transform: capitalize;
  font-family: Mulish, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.gallery-wrapper {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.gallery-list-wrapper {
  grid-column-gap: 21px;
  grid-row-gap: 21px;
  flex-flow: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  overflow: hidden;
}

.gallery-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: stretch center;
  margin-top: 30px;
  display: grid;
}

.gallery-image-wrapper-2 {
  width: 100%;
  transition: filter .25s;
  overflow: hidden;
}

.gallery-image-wrapper-2:hover {
  filter: brightness(80%);
}

.gallery-lightbox-2 {
  z-index: 200;
  object-fit: cover;
  flex-direction: column;
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-lightbox-2.long {
  height: 100%;
  min-height: 100%;
  max-height: none;
}

.gallery-image-2 {
  cursor: pointer;
  object-fit: cover;
  object-position: 50% 50%;
  width: 101%;
  height: 100%;
  min-height: 250px;
  transition: transform .25s linear;
}

.gallery-image-2:hover {
  transform: scale(1.1);
}

.gallery-image-2.up {
  object-position: 50% 20%;
}

.gallery {
  z-index: 10;
  background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, #00000012, #00000012), url('../images/pattern.jpeg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, 700px;
  background-attachment: scroll, scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 79px 50px 100px;
  display: flex;
  position: relative;
}

.link-7 {
  color: var(--beige-white);
  text-decoration: none;
}

.text-span-11 {
  color: var(--label);
  font-family: trajan-pro-3, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.html-embed {
  border: 3px solid #917e37;
  border-radius: 0;
  width: 70%;
  height: 400px;
  margin-left: auto;
  margin-right: auto;
}

.form-wrapper-2 {
  border-right: 1px solid var(--label);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.contact-info {
  color: var(--beige-white);
  max-width: 600px;
  margin-top: 30px;
  font-family: Mulish, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 25px;
}

.contact-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 0;
  padding-right: 200px;
  display: flex;
}

.contacts-container {
  z-index: 5;
  background-color: #000;
  background-image: linear-gradient(180deg, var(--brown), #03020200 30%, #0000 75%, var(--brown)), linear-gradient(to bottom, #16151b96, #16151b96), url('../images/pattern.jpeg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, contain;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.ont {
  color: var(--beige-white);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: trajan-pro-3, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px;
  display: block;
}

.sbr {
  text-align: center;
  margin-bottom: 0;
}

.text-span {
  color: #642e24;
  letter-spacing: 2px;
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
}

.text-span.white2 {
  color: var(--beige-white);
  letter-spacing: 1px;
  text-transform: capitalize;
  font-family: trajan-pro-3, sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.link-8 {
  opacity: 1;
  color: #beab64;
  text-decoration: none;
  transition: opacity .5s;
}

.link-8:hover {
  opacity: .47;
}

.section-2 {
  z-index: 999;
  background-color: var(--brown);
  color: #fff;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
}

.text-span-2 {
  color: #975d16;
  letter-spacing: 5px;
  font-size: 12px;
}

.text-span-2.white {
  color: #af9c64;
  font-family: Open Sans, sans-serif;
  font-weight: 300;
}

.copyright-text {
  font-family: Mulish, sans-serif;
  font-weight: 300;
  display: inline-block;
}

.title, .title._12121 {
  margin-bottom: 25px;
}

.div-block-50 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 32px;
  display: flex;
}

.div-block-51 {
  text-align: center;
  text-decoration: none;
  transition: opacity .4s;
}

.div-block-51:hover {
  opacity: .5;
}

._2 {
  filter: grayscale() brightness(200%);
}

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

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

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

.image-3 {
  z-index: 99;
  filter: sepia();
  position: relative;
}

.menu-item {
  text-align: left;
}

.menu-item.cc {
  text-align: center;
}

.info-title {
  color: #102b4e;
  margin-top: 5px;
  font-size: 24px;
}

.info-title.menu-title {
  color: var(--beige-white);
  letter-spacing: .5px;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: trajan-pro-3, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.info-title.menu {
  color: var(--beige-white);
  letter-spacing: .5px;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: trajan-pro-3, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.menu-box-2 {
  text-align: center;
  background-color: #f5f0e500;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
  margin-bottom: 50px;
  padding-top: 0;
  padding-bottom: 0;
  transition: all .2s;
  display: flex;
}

.menu-box-2.last {
  margin-top: 26px;
  margin-bottom: 26px;
}

.menu-box-2.spceial2 {
  width: auto;
}

.menu-banner {
  background-color: #0000;
  width: 100%;
}

.infotext {
  color: #102b4e80;
  font-size: 18px;
  line-height: 22px;
}

.infotext.top {
  color: #e8dbc8;
  text-align: center;
  text-transform: none;
  margin: 6px 50px 30px;
  font-family: Open Sans, sans-serif;
  font-size: 15px;
  font-weight: 300;
}

.infotext.top.a {
  color: var(--beige-white);
  margin-bottom: 0;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  font-weight: 200;
}

.infotext.s {
  color: var(--beige-white);
  text-align: center;
  letter-spacing: .2px;
  text-transform: none;
  margin-top: 4px;
  margin-bottom: 0;
  font-family: Mulish, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 23px;
}

.infotext.menu {
  color: var(--beige-white);
  letter-spacing: .2px;
  text-transform: none;
  margin-bottom: 0;
  font-family: Mulish, sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 23px;
}

.container-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.menu-items-2 {
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  margin-top: 25px;
  margin-left: 0;
  margin-right: 0;
  font-family: Open Sans, sans-serif;
}

.menu-items-2.alone {
  grid-row-gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.menu-wrapper {
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.h1-heading {
  color: var(--beige-white);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: trajan-pro-3, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  display: block;
}

.h2-titles {
  color: var(--beige-white);
  text-align: center;
  text-transform: lowercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: trajan-pro-3, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  display: block;
}

.menu-section-menus {
  z-index: 10;
  background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, #0006, #0006), url('../images/pattern.jpeg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, 700px;
  background-attachment: scroll, scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
  display: flex;
  position: relative;
}

.specials {
  grid-column-gap: 50px;
  grid-row-gap: 20px;
  border: 2px solid var(--label);
  border-radius: 4px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center;
  margin-top: 25px;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
  font-family: Open Sans, sans-serif;
}

.menu-tab {
  text-decoration: none;
  transition: filter .45s, opacity .5s;
}

.menu-tab:hover {
  opacity: .4;
  filter: sepia();
}

.div-block-69 {
  z-index: 99;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--brown);
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  display: flex;
  position: fixed;
  inset: auto 0% 0%;
}

.menu-btn {
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  text-transform: lowercase;
  background-color: #0000;
  border: 1px solid #af9c64;
  border-radius: 3px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: 7px .8em;
  font-family: trajan-pro-3, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .425s;
  display: flex;
}

.menu-btn:hover {
  opacity: .54;
}

.menu-btn.w--current {
  color: #000;
  background-color: #f1f3f5;
}

.link-9 {
  color: var(--label);
  font-weight: 600;
  text-decoration: none;
}

.privacy {
  z-index: 10;
  background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, #00000012, #00000012), url('../images/pattern.jpeg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, repeat;
  background-size: auto, auto, 700px;
  background-attachment: scroll, scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 136px 50px 30px;
  display: flex;
  position: relative;
}

.policy {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.modal-2 {
  z-index: 2147483647;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.div-block-65 {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-image: linear-gradient(#0000006b, #0000006b);
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.modal__body-2 {
  z-index: 2;
  text-align: center;
  background-color: #0000;
  border-radius: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.link-block-8 {
  justify-content: center;
  display: flex;
}

.image-33 {
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 0;
}

.modal__close-2 {
  opacity: 1;
  filter: invert();
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal__close-2:hover {
  opacity: .43;
}

.image-34 {
  filter: invert();
}

@media screen and (min-width: 1280px) {
  .intro-box {
    min-height: 475px;
  }

  .image-4 {
    width: 400px;
  }
}

@media screen and (min-width: 1440px) {
  .intro-box {
    min-height: 500px;
  }

  .image-4 {
    width: 500px;
  }
}

@media screen and (min-width: 1920px) {
  .gradi-wrapper {
    justify-content: space-between;
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .gradi-wrapper._100 {
    display: block;
  }

  .image-banner {
    background-image: url('../images/Freunde.jpg');
    background-position: 50%;
    background-size: auto;
    height: 70vh;
  }

  .image-banner.dining, .image-banner.parties-back {
    height: auto;
    min-height: 0;
  }

  .paragraph-space {
    color: #b8b5b0;
    font-size: 18px;
    line-height: 1.8em;
  }

  .paragraph-space.center {
    color: #e9e9e9;
    font-size: 15px;
    line-height: 1.5em;
  }

  .image-4 {
    width: 500px;
  }
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }

  .grid-wrapper {
    grid-row-gap: 48px;
  }

  .content-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .nav-link {
    font-size: 32px;
  }

  .nav-menu {
    padding-left: 0;
    padding-right: 0;
  }

  .scroll-link {
    white-space: nowrap;
    min-width: 48vw;
    padding-left: 48px;
    padding-right: 48px;
  }

  .intro-box {
    min-height: auto;
  }

  .gallery-image {
    height: 40vw;
  }

  .menu-hover {
    display: none;
  }

  .footer-list-item:hover, .tab-top:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-container {
    width: 70%;
  }

  .hero-container.p {
    padding-bottom: 108px;
  }

  .on-load-5._4545 {
    margin-top: 0;
  }

  .about-section.section-spacing-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

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

  ._2-col-grid {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
  }

  ._2-col-grid.banner-grid {
    min-height: 500px;
    padding: 50px;
  }

  ._2-col-grid.parties {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .image-banner {
    background-position: 34%;
    background-size: auto;
  }

  .image-banner.dining {
    background-image: linear-gradient(180deg, #110e0c, transparent 51%, var(--brown)), linear-gradient(to bottom, #0009, #0009), url('../images/D663D60A-2808-4366-A977-C72B260B1F42.png'), url('../images/gallery28.jpg');
    background-position: 0 0, 0 0, 50%, 50%;
    background-repeat: repeat, repeat, no-repeat, repeat;
    background-size: auto, auto, cover, cover;
    background-attachment: scroll, scroll, fixed, scroll;
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-banner.parties-back {
    background-image: linear-gradient(180deg, #110e0c, transparent 50%, var(--brown)), linear-gradient(to bottom, #000000a8, #000000a8), url('../images/D663D60A-2808-4366-A977-C72B260B1F42.png'), url('../images/parties2.jpg');
    background-position: 0 0, 0 0, 50%, 50%;
    background-repeat: repeat, repeat, no-repeat, no-repeat;
    background-size: auto, auto, cover, cover;
    background-attachment: scroll, scroll, fixed, scroll;
    padding-left: 0;
    padding-right: 0;
  }

  .heading-7.center {
    text-align: center;
    margin-bottom: 4px;
  }

  .heading-7.center.pp1 {
    text-align: left;
  }

  .paragraph.hours {
    max-width: none;
  }

  .paragraph.hours.c111 {
    text-align: center;
  }

  .paragraph-space {
    font-size: 15px;
  }

  .paragraph-space.center {
    text-align: center;
    font-size: 15px;
  }

  .paragraph-space.center.single._11 {
    text-align: left;
    margin-top: 22px;
    margin-bottom: 0;
  }

  .paragraph-space.center.none0 {
    text-align: left;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .card {
    width: 12rem;
  }

  .menu-section {
    background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, #0000007d, #0000007d), url('../images/pattern.jpeg');
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
    padding: 50px;
  }

  .cards-section {
    grid-row-gap: 1rem;
    flex-flow: wrap;
    max-width: none;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .parallax.top {
    background-attachment: scroll;
    height: 400px;
  }

  .parallax.contact {
    background-position: 0 0, 50% 0;
    background-attachment: scroll, scroll;
    height: 400px;
  }

  .parallax.v2 {
    background-attachment: scroll, scroll;
    height: 400px;
  }

  .parallax.menus, .parallax.whiskey {
    background-attachment: scroll;
    height: 400px;
  }

  .p-parties.none {
    padding-top: 0;
    padding-bottom: 0;
  }

  .success-message-3, .error-message-3 {
    max-width: 738px;
  }

  .gallery-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, transparent, transparent), url('../images/pattern.jpeg');
    background-size: auto, auto, contain;
    background-attachment: scroll, scroll, scroll;
    padding: 50px;
  }

  .html-embed {
    width: 100%;
  }

  .contact-wrapper-2 {
    text-align: center;
  }

  .form-wrapper-2 {
    border-right-width: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
  }

  .contact-text-wrapper {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .contacts-container {
    flex-direction: column-reverse;
    padding: 50px 50px 0;
  }

  .ont {
    text-align: center;
  }

  .div-block-50 {
    flex-flow: wrap;
    align-items: center;
  }

  .div-block-51 {
    margin-right: 0;
  }

  .menu-items-2 {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-section-menus {
    padding: 50px;
  }

  .specials {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-69 {
    flex-flow: wrap;
  }

  .privacy {
    background-image: linear-gradient(180deg, var(--brown), #96959400 56%, #110e0c), linear-gradient(to bottom, #0000007d, #0000007d), url('../images/pattern.jpeg');
    background-size: auto, auto, cover;
    background-attachment: scroll, scroll, scroll;
    padding: 106px 50px 50px;
  }

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

  .link-block-8 {
    flex-direction: column;
    align-items: center;
  }
}

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

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  .nav-link {
    height: auto;
    min-height: auto;
    padding: 36px 0;
    font-size: 30px;
  }

  .nav-right {
    display: none;
  }

  .scroll-link {
    border-style: none solid;
    border-color: black var(--light-outline);
    min-height: 65px;
  }

  .left-arrow {
    width: 45%;
    inset: auto 55% 0% 0%;
  }

  .full-menu {
    overflow: hidden;
  }

  .menu-content {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .full-menu-content {
    padding-bottom: 100px;
  }

  .gallery-image {
    height: 83vw;
  }

  .hero-container {
    width: 90%;
    min-height: 500px;
  }

  .on-load-5._4545 {
    margin-top: 0;
  }

  .text-block {
    letter-spacing: 1px;
  }

  .about-section.section-spacing-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  ._2-col-grid.banner-grid, ._2-col-grid.parties {
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-7 {
    font-size: 30px;
  }

  .card {
    width: 10rem;
    height: 18rem;
  }

  .menu-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cards-section {
    grid-column-gap: 30px;
    max-width: none;
  }

  .parallax.top, .parallax.contact, .parallax.v2, .parallax.menus, .parallax.whiskey {
    height: 300px;
  }

  .parallax.thanks {
    height: 500px;
  }

  .p-parties.none {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta11-form-wrap {
    padding: 30px;
  }

  .success-message-3 {
    width: 100%;
    max-width: none;
  }

  .div-block-37 {
    flex-direction: column;
  }

  .error-message-3 {
    width: 100%;
    max-width: none;
  }

  .date, .text-field-2.bottom-margin-field, .text-field-2.bottom-margin-field._3 {
    width: 100%;
  }

  .gallery-grid {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: .5fr .5fr;
    grid-auto-columns: 1fr;
  }

  .gallery-image-wrapper-2 {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .gallery {
    padding-left: 30px;
    padding-right: 30px;
  }

  .html-embed {
    height: 300px;
  }

  .contact-info {
    margin-top: 14px;
  }

  .contact-text-wrapper {
    text-align: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .contacts-container {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .ont {
    text-align: center;
  }

  .sbr {
    margin-bottom: 10px;
  }

  .section-2 {
    padding-top: 30px;
  }

  .copyright-text {
    margin-top: 30px;
    font-size: 13px;
  }

  .title._12121 {
    margin-top: 42px;
  }

  .div-block-50 {
    flex-direction: column;
    margin-bottom: 0;
  }

  .div-block-51 {
    margin-left: 0;
    margin-right: 0;
  }

  .info-title.menu-title, .info-title.menu {
    text-align: center;
  }

  .menu-box-2 {
    margin-bottom: 30px;
  }

  .menu-box-2.last {
    margin-top: 0;
  }

  .infotext.s, .infotext.menu {
    text-align: center;
  }

  .container-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .menu-items-2 {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-items-2.alone {
    grid-template-columns: 1fr;
  }

  .h1-heading {
    margin-bottom: 10px;
    font-size: 35px;
    line-height: 40px;
  }

  .h2-titles {
    margin-bottom: 10px;
    line-height: 50px;
  }

  .menu-section-menus {
    padding-left: 30px;
    padding-right: 30px;
  }

  .specials {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }

  .div-block-69 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .privacy {
    padding-left: 30px;
    padding-right: 30px;
  }

  .image-33 {
    margin-bottom: 0;
  }

  .modal__close-2 {
    top: 4px;
    right: 4px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .navbar {
    height: auto;
  }

  .nav-link {
    font-size: 24px;
  }

  .scroll-link {
    grid-column-gap: 24px;
    min-width: 70vw;
  }

  .left-arrow {
    width: 48%;
    right: 52%;
  }

  .full-menu {
    overflow: hidden;
  }

  .menu-content {
    padding-top: 24px;
    padding-bottom: 48px;
  }

  .full-menu-content {
    height: 99vh;
    min-height: 99vh;
    overflow: auto;
  }

  .slide-img {
    height: 60vh;
  }

  .slide-img.new4, .slide-img.new5, .slide-img.new3 {
    height: 100%;
  }

  .slide-img.scre {
    background-position: 50%;
    height: 100%;
  }

  .slide-img.new2 {
    height: 100%;
  }

  .icon-2 {
    margin-left: 10px;
  }

  .hero-container.p {
    width: 80%;
    min-height: 700px;
    padding-bottom: 110px;
  }

  .icon {
    margin-right: 10px;
  }

  .slider-section {
    min-height: 100vh;
  }

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

  .hero-link {
    font-weight: 300;
  }

  .on-load-5._4545 {
    margin-top: 10px;
  }

  .hero-slider-2 {
    margin-top: 0;
    position: static;
  }

  .slide-content-2 {
    height: 100%;
  }

  .about-section.section-spacing-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  .gradi-wrapper._100 {
    padding-left: 0;
    padding-right: 0;
  }

  ._2-col-grid.banner-grid, ._2-col-grid.parties {
    min-height: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .image-banner {
    background-position: 50%;
    height: 650px;
  }

  .image-banner.dining, .image-banner.parties-back {
    height: auto;
  }

  .heading-7 {
    width: 100%;
    font-size: 35px;
  }

  .heading-7.center {
    margin-bottom: 7px;
    font-size: 35px;
  }

  .paragraph-space {
    font-size: 15px;
    line-height: 1.6em;
  }

  .sub {
    margin-top: 11px;
    margin-bottom: 0;
  }

  .sub._0a0a {
    margin-top: 0;
    margin-bottom: 8px;
  }

  .sub1 {
    font-size: 35px;
  }

  .card {
    width: 10rem;
    height: 15rem;
  }

  .card-text {
    line-height: 25px;
  }

  .cards-section {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .parallax.top, .parallax.contact, .parallax.v2 {
    height: 350px;
  }

  .parallax.menus, .parallax.whiskey {
    height: 280px;
  }

  .p-parties.none {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta11-form-wrap {
    border-style: none;
    border-width: 0;
    width: 100%;
    padding: 0;
  }

  .div-block-37 {
    flex-direction: column;
  }

  .date {
    min-width: 100%;
  }

  .buttons-general {
    flex: 1;
    align-self: stretch;
  }

  .text-field-2.bottom-margin-field, .text-field-2.bottom-margin-field._3 {
    width: 100%;
  }

  .btntxt {
    letter-spacing: .5px;
    font-size: 15px;
    line-height: 25px;
  }

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

  .gallery-image-wrapper-2 {
    width: 100%;
  }

  .gallery-lightbox-2 {
    min-height: 200px;
    max-height: 200px;
  }

  .gallery-image-2 {
    min-height: 200px;
  }

  .gallery {
    padding-left: 21px;
    padding-right: 21px;
  }

  .form-wrapper-2 {
    width: 100%;
  }

  .contact-text-wrapper {
    align-items: center;
    padding-left: 0;
  }

  .contacts-container {
    height: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-span.white2 {
    letter-spacing: 1px;
    text-transform: lowercase;
    line-height: 35px;
  }

  .section-2 {
    padding-bottom: 20px;
  }

  .copyright-text {
    padding-left: 23px;
    padding-right: 23px;
  }

  .title._12121 {
    padding-left: 9px;
    padding-right: 9px;
  }

  .div-block-50 {
    flex-direction: column;
  }

  .div-block-51 {
    margin-left: 0;
    margin-right: 0;
  }

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

  .info-title.menu-title {
    text-align: center;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .info-title.menu {
    text-align: center;
    letter-spacing: 1px;
    font-size: 15px;
  }

  .menu-box-2 {
    margin-bottom: 45px;
  }

  .infotext.top {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
  }

  .infotext.s {
    text-align: center;
    font-size: 14px;
  }

  .infotext.menu {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }

  .container-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .h1-heading {
    font-size: 30px;
  }

  .h2-titles {
    font-size: 25px;
    line-height: 30px;
  }

  .menu-section-menus {
    padding-left: 21px;
    padding-right: 21px;
  }

  .div-block-69 {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    flex-flow: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-btn {
    letter-spacing: .5px;
    padding: 6px 1em;
    font-size: 13px;
  }

  .text-span-12 {
    display: block;
  }

  .text-span-13 {
    display: none;
  }

  .modal-2 {
    padding: 11px;
  }

  .modal__body-2 {
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-8 {
    object-fit: cover;
    height: auto;
  }

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

  .modal__close-2 {
    z-index: 3;
    filter: invert();
    width: 35px;
    height: 35px;
    top: 0;
    right: 0;
  }

  .image-34 {
    filter: contrast(200%) invert();
  }
}

#w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542214-780e95ef {
  grid-area: 1 / 2 / 2 / 3;
  align-self: stretch;
}

#w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542215-780e95ef {
  justify-self: center;
}

#w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542234-780e95ef {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542235-780e95ef {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-bf100ae8-bc2e-8a24-f0a2-4df7c554223a-780e95ef {
  justify-self: start;
}

#w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542241-780e95ef {
  grid-area: 1 / 4 / 2 / 5;
  place-self: center end;
}

#w-node-_829c5e6c-0d01-191c-241f-37f19b47de83-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_5ba14f2b-1d31-7cf1-f6ca-32df43f949ce-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0c6370be-583f-27be-279f-63af88f97f91-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-a1c05671-40ba-d144-f971-c063ffd926ae-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1c05671-40ba-d144-f971-c063ffd926af-780e95ef {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_33fe9680-172c-199b-0f8e-c9a8254990ed-780e95ef {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-be1fc8b8-e613-7267-f14d-26ba321b5bff-780e95ef, #w-node-c54fff10-032a-eb7c-f9ca-61afc463b943-780e95ef, #w-node-e80f91e0-f516-731c-4b54-b9d4b30a9560-780e95ef, #w-node-_148ec045-1302-7278-479e-aac073797bdb-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7bf743d6-bffb-bbce-51d9-d526cd544a38-780e95ef {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_81b0dfe3-033d-2b19-92d4-7565d84f54f9-780e95ef, #w-node-d3c03f31-c3a9-ed30-4f34-596d3e35925f-780e95ef, #w-node-_29d02959-e756-fd17-b72d-3313813bf527-780e95ef, #w-node-_0e40f8a6-63c3-099d-9734-b7bbd8cd77c2-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d214aa15-5135-d2e3-3359-83c97ec02799-780e95ef {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0132ad1d-f948-c869-d5c0-28580cc38a82-780e95ef, #w-node-_02dec6c8-a912-0503-596a-108dc1a5f767-780e95ef, #w-node-_45c6a1f0-9f97-815c-42b8-888d95689fab-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8ad7ed43-49ba-6c27-317e-b4fd1e682e56-780e95ef {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-fd2a43c0-0293-111e-c82a-498da7daf101-780e95ef, #w-node-_1e8da9a3-f08a-b538-0d19-15ab82a9cb31-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e3ca419-d4b4-b793-dbae-966405a46a93-780e95ef {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_28359260-eb2f-11a7-2409-195d82df9e23-780e95ef {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e1072f93-8186-f9c2-c20f-2907931bfead-780e95ef, #w-node-baa90d06-722b-2e14-46df-82cb6b103399-780e95ef, #w-node-_99c8fab7-84b9-f81e-4f9c-08ba066942ff-780e95ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_94b1fb86-131a-d988-4a5a-b369a5c6fb79-20912a70 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: stretch;
}

#w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a7b-20912a70 {
  justify-self: center;
}

#w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a73-20912a70 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a79-20912a70 {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a85-20912a70 {
  justify-self: start;
}

#w-node-_0350fef7-d6de-b3cc-cb1b-0228a8c706c5-20912a70 {
  grid-area: 1 / 4 / 2 / 5;
  place-self: center end;
}

@media screen and (min-width: 1920px) {
  #w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542215-780e95ef, #w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a7b-20912a70 {
    justify-self: center;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_829c5e6c-0d01-191c-241f-37f19b47de83-780e95ef {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_0c6370be-583f-27be-279f-63af88f97f91-780e95ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-a1c05671-40ba-d144-f971-c063ffd926af-780e95ef {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d214aa15-5135-d2e3-3359-83c97ec02799-780e95ef, #w-node-_28359260-eb2f-11a7-2409-195d82df9e23-780e95ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542235-780e95ef {
    grid-column: 1 / 3;
    justify-self: start;
  }

  #w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542241-780e95ef {
    grid-column: 3 / 4;
  }

  #w-node-_0c6370be-583f-27be-279f-63af88f97f91-780e95ef {
    grid-area: span 1 / span 6 / span 1 / span 6;
    place-self: center;
  }

  #w-node-a1c05671-40ba-d144-f971-c063ffd926ae-780e95ef {
    grid-area: span 1 / span 6 / span 1 / span 6;
  }

  #w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a79-20912a70 {
    grid-column: 1 / 3;
    justify-self: start;
  }

  #w-node-_0350fef7-d6de-b3cc-cb1b-0228a8c706c5-20912a70 {
    grid-column: 3 / 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bf100ae8-bc2e-8a24-f0a2-4df7c5542234-780e95ef {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_0c6370be-583f-27be-279f-63af88f97f91-780e95ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-a1c05671-40ba-d144-f971-c063ffd926ae-780e95ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8d7a045e-7b9a-b756-6a0a-89be20912a73-20912a70 {
    grid-area: 1 / 2 / 2 / 3;
  }
}


