/* desktop navigation */
header {
  z-index: 999;
  display: flex;
  padding: 10px 20px;
  background: var(--gray-color);
  position: fixed;
  top: 0;
  width: 100%;
  transition: all ease 0.3s;
  height: 105px;
}

header .logo {
}

header .logo img {
  display: table;
  max-width: 210px;
  padding: 10px;
}

header .nav-desktop {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

header .nav-desktop ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  /* max-width: 560px; */
  width: 100%;
}

header .nav-desktop ul li {
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all ease 0.3s;
}

header .nav-desktop ul li a {
  width: 100%;
  text-align: center;
  display: flex;
  height: 100%;
  font-size: 23px;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-weight: 300;
  text-transform: inherit;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.43);
}

header .nav-desktop ul li.nav-logo-desktop {
  display: flex;
  width: 100%;
  min-width: 220px;
  /* margin: 0 40px; */
}

header .nav-desktop ul li.nav-logo-desktop a {
  display: flex;
  flex-direction: column;
  position: relative;
}

header .nav-desktop ul li.nav-logo-desktop a:hover {
  background: none;
}

header .nav-desktop ul li.nav-logo-desktop .logo-nav {
  /* position: absolute; */
  /* position: absolute; */
  z-index: 3;
  top: 0;
  transition: all ease 0.3s;
}

header .nav-desktop ul li.nav-logo-desktop .logo-nav-scroll {
  position: absolute;
  z-index: 2;
  top: 0;
  opacity: 0;
  /* display: none; */
  transition: all ease 0.3s;
}

header .nav-desktop ul li.nav-logo-desktop img {
  width: 100%;
  max-width: 240px;
  transition: all ease 0.5s;
  display: table;
  /* min-width: 140px; */
}

header .nav-desktop ul li a:hover {
  background: none;
  color: var(--yellow-color);
}

header.navbar-scroll {
  background: var(--primary-color);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.27);
  transition: all ease 0.3s;
  height: 80px;
}

header.navbar-scroll .nav-desktop ul li.nav-logo-desktop .logo-nav {
  /* display: none; */
  opacity: 0;
}

header.navbar-scroll .nav-desktop ul li.nav-logo-desktop .logo-nav-scroll {
  /* display: block; */
  max-width: 190px;
  opacity: 1;
}

header.navbar-scroll .nav-desktop ul li a {
  color: var(--white-color);
  text-shadow: none;
}

header.navbar-scroll .nav-desktop ul li a:hover {
  color: var(--secondary-color);
}

header.navbar-scroll .share {
  top: 13px;
}

header.navbar-scroll .share p {
  color: var(--white-color);
  text-shadow: none;
  border: 1px solid var(--white-color);
}

header.navbar-scroll .share p a i {
  color: var(--white-color);
}

header.navbar-scroll .share p:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

header.navbar-scroll .share p:hover a i {
  color: var(--white-color);
}

header.navbar-scroll .share p.open a i {
  /* background: var(--primary-color); */
  color: var(--primary-color);
}

header.navbar-scroll .share p.open {
  background: var(--white-color);
  color: var(--primary-color);
}

header.navbar-scroll .nav-desktop ul li.nav-logo-desktop {
  width: 100%;
  /* min-width: auto; */
  margin: 0;
}

@media all and (min-width: 800px) {
  header .nav-desktop ul li.phone-links-icon {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}

@media all and (max-width: 800px) {
  body {
    margin-bottom: 50px;
  }

  header .nav-desktop ul li.nav-logo-desktop img,
  header.navbar-scroll .nav-desktop ul li.nav-logo-desktop .logo-nav-scroll {
    max-width: 150px;
    top: -11px;
    /* min-width: auto; */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
  }

  header.navbar-scroll .nav-desktop ul li.nav-logo-desktop {
    margin: 0 10px;
  }

  header .nav-desktop ul li.nav-logo-desktop {
    margin: 0 10px;
  }

  .nav-mobile {
    /* display: none; */
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 9;
    /* height: auto; */
  }

  header {
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    height: 80px;
  }

  header.navbar-scroll {
    height: 60px;
  }

  header .logo img {
    max-width: 170px;
    padding: 9px;
  }

  header .nav-desktop ul li.phone-nav-links {
    display: none;
  }

  header .nav-desktop ul li {
    /* max-width: 70px; */
  }

  header .nav-desktop ul li a {
    color: var(--primary-color);
  }

  header .nav-desktop ul li a i {
    font-size: 20px;
  }
}

/*location*/
.share {
  text-transform: inherit;
  width: 100%;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
  background: none;
  /* right: 15px; */
  top: 25px;
  z-index: 9999;
  position: absolute;
  height: auto;
  /* border: 2px solid var(--white-color); */
  cursor: pointer;
  transition: 0.3s all ease;
}

.share p {
  margin: 0px;
  padding: 4px;
  font-size: 22px;
  transition: 0.3s all ease;
  background: none;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: inherit;
  font-weight: 300;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
  border: 1px solid var(--primary-color);
}

.share p:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

header .nav-desktop ul li .share p a {
  width: fit-content;
}

.share p a i {
  color: var(--primary-color);
  margin-left: 5px;
  transition: all ease 0.3s;
}

.share p:hover a i {
  color: var(--primary-color);
}

.share p i {
  font-size: 13px;
}

.share p.open {
  background: var(--white-color);
  color: var(--primary-color);
}

header .nav-desktop ul.sites {
  display: none;
  font-size: 10px;
  list-style-type: none;
  z-index: -1;
  position: relative;
  margin-top: 0;
  padding-left: 0px;
  margin-bottom: 0;
  top: -8px;
  width: 100%;
}

.sites li {
  width: 100%;
}

.sites li:hover {
  color: black;
}

.sites li img {
  position: relative;
  top: 4px;
  left: -10px;
}

.noSelect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.shake {
  -webkit-transform: translateY(10%);
  background: none;
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.32, 1.259, 0.375, 1.15);
  transition: transform 0.3s cubic-bezier(0.32, 1.259, 0.375, 1.15);
}

.shake li {
  color: #fff;
  font-size: 18px;
  background: none;
  text-transform: capitalize;
  transition: all ease 0.3s;
  /* border: 2px solid #ffffff00; */
  border-top: 0;
  margin: 2px 0;
}

.shake li:hover {
  background: var(--primary-color);
  color: #ffffff;
}

header .nav-desktop ul.shake li a {
  color: #ffffff;
  padding: 3px 5px 5px;
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  font-size: 16px;
  line-height: normal;
  background: var(--black-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 100%;
}

header .nav-desktop ul.shake li a:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

/* body */
/* intro */
.home-intro {
  background: url(../images/home-intro.jpg) no-repeat center center;
  background-size: cover;
  height: 75vh;
}

/* shout-container */
.shout-container {
  position: absolute;
}

.shout-container shoutinner {
  padding: 0;
  flex-flow: row-reverse;
  max-width: 500px;
  position: relative;
  top: -80px;
  background: var(--primary-color);
  border: 1px solid var(--yellow-color);
}

.shout-container shouttext {
  padding: 0;
  align-items: flex-start;
  height: 100%;
  padding: 10px;
}

.shout-container shoutimg.shout-image-block {
  width: 200px;
  height: 150px;
  border-radius: 0;
  justify-content: center;
  align-items: center;
}

.shout-container shoutimg a {
  height: 100%;
}

.shout-container shouttitle {
  font-size: 18px;
  font-weight: 400;
  /* text-transform: uppercase; */
  border: none;
  color: var(--yellow-color);
  margin: 0;
  text-align: left;
  align-items: flex-end;
  margin-bottom: 5px;
}

.shout-container shoutmessage {
  flex-grow: 1;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
  line-height: 23px;
}

.shout-container shoutdate {
  font-weight: 300;
  padding: 0;
  order: 2;
  margin-top: 5px;
  color: var(--gray-color);
}

@media all and (max-width: 768px) {
  .home-intro {
    height: 45vh;
  }

  .shout-container shoutimg.shout-image-block {
    width: 150px;
    height: 140px;
  }

  .shout-container shoutinner {
    top: 0;
    max-width: none;
  }

  .shout-container {
    position: relative;
    z-index: -1;
  }
}

/* about-index */
.about-index {
  background: url(../images/about-index-bg.jpg) center center no-repeat;
  background-size: cover;
  min-height: 70vh;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.about-index-inner {
  max-width: 1200px;
  display: flex;
}

.about-index-image {
  width: 100%;
}

.about-index-image img {
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  object-fit: cover;
}

.about-index-text {
  padding-left: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-index-text h1 {
  margin: 0;
  text-align: center;
  font-weight: 400;
  text-transform: inherit;
  font-size: 29px;
  color: var(--primary-color);
}

.about-index-text p {
  margin: 0;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

@media all and (max-width: 768px) {
  .about-index {
    min-height: auto;
  }

  .about-index-inner {
    flex-direction: column;
  }

  .about-index-image {
    margin-bottom: 30px;
  }

  .about-index-text {
    padding: 0;
  }
}

/* three tabs */
.three-tabs-index {
  background: var(--primary-color);
  padding: 100px 20px;
}

.three-tabs-index-inner {
  display: flex;
  max-width: 1300px;
  margin: auto;
}

.index-tabs-parts {
  width: 100%;
  margin: 15px;
  justify-content: center;
  text-align: center;
}

.index-tabs-parts img {
  width: 100%;
  display: table;
}

.index-tabs-parts a.btn {
  width: 100%;
  display: flex;
  margin: 0 auto;
  margin-top: 20px;
  padding: 10px 10px 13px;
  font-size: 22px;
  max-width: 190px;
  background: var(--yellow-color);
  color: var(--secondary-color);
  justify-content: center;
  align-items: center;
}

.index-tabs-parts a.btn:hover {
  background: var(--secondary-color);
  color: var(--gray-color);
}

.index-tabs-parts a.btn i {
  font-size: 14px;
  margin-left: 10px;
}

@media all and (max-width: 768px) {
  .three-tabs-index {
    padding: 30px 10px;
  }

  .three-tabs-index-inner {
    flex-direction: column;
  }

  .index-tabs-parts {
    margin: 5px;
    width: calc(100% - 10px);
    margin-bottom: 20px;
  }

  .index-tabs-parts a.btn {
    max-width: none;
    margin-top: 0;
  }
}

/* contact-index */
.contact-index {
  padding: 90px 20px;
  background: var(--light-color);
}

.contact-index-inner {
  display: flex;
  max-width: 1100px;
  margin: auto;
  justify-content: center;
}

.contact-details {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.location-details {
  display: table;
  width: 100%;
}

.location-details h2 {
  margin: 0;
  text-align: center;
  font-weight: 300;
  text-transform: inherit;
  font-size: 32px;
  margin-bottom: 10px;
}

.location-details p {
  margin: 8px 0;
  /* margin-bottom: 15px; */
  text-align: center;
}

.location-details p a {
  color: var(--white-color);
  font-weight: 300;
  text-transform: inherit;
  font-size: 19px;
  display: inline-block;
}

.location-details p a.email {
  border-bottom: 1px solid var(--white-color);
  margin-top: 9px;
  display: inline-block;
  line-height: 14px;
}

.location-details p a:hover {
  color: var(--primary-color);
}

.hours-details {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.hours-details h2 {
  margin: 0;
  text-align: center;
  font-weight: 300;
  text-transform: inherit;
  font-size: 30px;
  margin-bottom: 10px;
}

.hours-details p {
  margin: 7px 0;
  /* margin-bottom: 0px; */
  text-align: center;
  color: var(--white-color);
  font-weight: 300;
  text-transform: inherit;
  font-size: 17px;
}

.hours-details p strong {
  font-weight: 400;
  color: var(--primary-color);
  /* letter-spacing: 1.5px; */
  margin-top: 6px;
  display: inline-block;
  text-transform: uppercase;
}

.contact-map {
  width: 100%;
  margin-left: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

@media all and (max-width: 768px) {
  .contact-index {
    padding: 30px 15px;
  }

  .contact-index-inner {
    flex-direction: column;
  }

  .contact-details {
    max-width: none;
    margin-bottom: 30px;
  }

  .contact-map {
    margin: 0;
  }

  .contact-map iframe {
    min-height: 300px;
    z-index: 0;
  }
}

/* footer */
footer {
  background: var(--yellow-color);
  padding: 100px 20px;
}

.footer-inner {
  width: 100%;
  max-width: 1300px;
  display: flex;
  margin: auto;
}

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

.footer-logo-content img {
  width: 100%;
  max-width: 190px;
}

.contact-footer-list {
  width: 100%;
  text-align: center;
}

.contact-footer-list ul {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.contact-footer-list ul li {
  margin: 5px 0;
}

.contact-footer-list ul li a {
  color: var(--secondary-color);
  text-transform: inherit;
  font-size: 19px;
  line-height: 26px;
}

.contact-footer-list ul li a:hover {
  color: var(--primary-color);
}

.footer-quick-links {
  width: 100%;
}

.footer-quick-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  /* flex-direction: column; */
}

.footer-quick-links ul li {
  width: 50%;
  text-align: center;
}

.footer-quick-links ul li a {
  font-size: 23px;
  color: var(--secondary-color);
  text-transform: inherit;
  font-weight: 400;
}

.footer-quick-links ul li a:hover {
  color: var(--primary-color);
}

.mailing-list-footer {
  width: 100%;
}

@media all and (max-width: 768px) {
  footer {
    padding: 50px 15px;
  }

  .footer-inner {
    flex-wrap: wrap;
  }

  .footer-quick-links {
    order: 2;
    margin-top: 30px;
  }

  .footer-logo-content {
    width: calc(50% - 20px);
  }

  .mailing-list-footer {
    width: calc(50% - 20px);
  }

  .footer-quick-links ul {
  }

  .footer-quick-links ul li {
    width: auto;
    margin: 10px;
    padding: 0 15px;
  }
}

@media all and (max-width: 600px) {
  .footer-logo-content {
    width: 100%;
  }

  .footer-quick-links {
    width: 100%;
    order: 0;
    margin-bottom: 30px;
  }

  .mailing-list-footer {
    width: 100%;
  }
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--yellow-color);
  padding: 10px 20px;
}

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

.social-bottom ul li.social-icons a {
  color: var(--dark-color);
}

.social-bottom ul li.social-icons a:hover {
  color: var(--primary-color);
}

@media all and (max-width: 600px) {
  .bottom-bar {
    flex-direction: column;
  }
}

/* head banners */
.head-banner {
  height: 55vh;
}

.about-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(30, 25, 20, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/about-head.jpg) no-repeat center center;
  background-size: cover;
}

.photos-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(30, 25, 20, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/photos-head.jpg) no-repeat center center;
  background-size: cover;
}

.events-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(30, 25, 20, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/events-head.jpg) no-repeat center center;
  background-size: cover;
}

.menu-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(30, 25, 20, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/menu-head.jpg) no-repeat center center;
  background-size: cover;
}

.wines-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0.58),
      rgba(30, 25, 20, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/wines-head.jpg) no-repeat center center;
  background-size: cover;
}

@media all and (max-width: 768px) {
  .head-banner {
    height: 41vh;
  }
}

/* about page */
.about-page-wrapper {
  padding: 70px 20px;
}

.about-page-wrapper h1 {
  margin: 0;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.about-page-wrapper p {
  margin: 0 auto;
  margin-bottom: 15px;
  max-width: 600px;
  font-size: 19px;
  font-weight: 300;
}

.aboutus-container {
}

.aboutus-container p {
}

/* photos page */
.photos-page-wrapper {
  padding: 5px;
}

#photos-container .gn-gal-block {
  width: calc(25% - 12px);
  margin: 6px;
  justify-content: center;
  align-items: center;
}

.gn-gal-inner {
  justify-content: center;
  align-items: center;
  font-weight: 300;
  transition: all ease 0.3s;
}

.gn-gal-inner .gn-gal-text {
  padding: 0;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--gray-color);
  font-size: 5vw;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.81);
  line-height: normal;
}

#gallery {
  max-width: none;
}

#gallery h1 {
  margin: 0;
  margin-top: 20px;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#gallery .back-to-album {
  max-width: 220px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 10px 10px 6px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-transform: uppercase;
}

#gallery .back-to-album:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

#gallery .gn-gal-block {
  width: calc(25% - 14px);
  margin: 7px;
}

@media all and (max-width: 1024px) {
  #photos-container .gn-gal-block {
    width: calc(50% - 12px);
  }
}

@media all and (max-width: 768px) {
  #photos-container .gn-gal-block {
    width: calc(50% - 12px);
    height: 190px;
  }

  .gn-gal-inner .gn-gal-text {
    font-size: 12vw;
  }
}

/* events page */
.events-page-wrapper {
  padding: 50px 20px;
}

.sub-title-events {
  text-align: center;
  color: var(--primary-color);
}

.recurring-title,
.special-events-title {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 32px;
}

.recurring-title,
.special-events-title {
  /* text-transform: inherit; */
  font-size: 34px;
  /* font-weight: 300; */
  /* color: var(--light-black-color); */
}

.recurring-event-container {
  max-width: 1000px;
}

.slick-initialized .recurring-event {
  border: none;
  /* border-radius: 10px; */
  padding: 10px;
  background: var(--light-color);
}

.recurring-img-container {
  /* border-radius: 10px; */
  width: 40%;
}

.recurring-days-title {
  order: -1;
  /* font-family: var(--secondary-font); */
  font-weight: 500;
  font-size: 15px;
  color: var(--dark-color);
  margin-bottom: 0;
  text-transform: uppercase;
}

.recurring-event-name {
  letter-spacing: 0.5px;
  font-size: 18px;
  color: var(--yellow-color);
  font-weight: 400;
  border: none;
  padding: 0;
}

.recurring-event-description {
  padding: 0;
  border: none;
  box-shadow: none;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  justify-content: flex-start;
}

.recurring-event-time {
  font-size: 16px;
  font-family: inherit;
  color: var(--secondary-color);
}

.recurring-btn {
  background: var(--secondary-color);
  border: none;
  text-transform: inherit;
  border-radius: 0;
  width: 100%;
}

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

.recurring-arrow-left,
.recurring-arrow-right {
  background: rgb(36, 32, 32);
  top: 55%;
}

.events_main {
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: none;
  padding: 10px;
}

.event {
  border-radius: 10px;
}

.event-info .date {
  font-size: 14px;
  margin: 0;
  padding: 0;
  border: none;
  color: var(--dark-green-color);
}

.event-info h3.event-card-title {
  text-transform: inherit;
  color: var(--light-green-color);
  letter-spacing: 0.4px;
}

.events-details-wrapper {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.event-info p {
  text-align: left;
  font-size: 15px;
}

.view-events-btn-container a {
  border: none;
  background: var(--secondary-color);
  text-transform: inherit;
  border-radius: 0;
}

.view-events-btn-container a:hover {
  background: var(--light-green-color);
  color: var(--white-color);
}

.single-recurring-event .recurring-btn {
  border: none;
  background: var(--primary-color);
  font-weight: 300;
  padding: 6px 10px 4px;
}

.single-recurring-event .recurring-event-time {
  color: var(--primary-color);
  font-size: 22px;
}

.single-recurring-event .recurring-btn:hover {
  background: var(--yellow-color);
  color: var(--primary-color);
}

.recurring-btn-container {
  width: 100%;
}

.no-event-post-text {
  width: 100%;
  margin: 0;
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .recurring-img-container {
    width: 100%;
  }

  .slick-slide img {
    max-height: 230px;
  }

  .event-info {
    margin-top: 15px;
  }

  .event-info .date {
    font-size: 17px;
    text-align: center;
  }

  .event-info h3.event-card-title {
    margin-bottom: 0px;
    text-align: center;
    font-size: 25px;
  }

  .events-details-wrapper {
    height: auto;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

#events-container {
  margin-top: 20px;
}

/* contact page */
.contact-page-wrapper {
  padding: 50px 20px;
  background: var(--white-color);
}

.contact-page-wrapper h1 {
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 29px;
  color: var(--primary-color);
}

.contact-page-details {
  width: 100%;
  max-width: 1100px;
  display: flex;
  margin: auto;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
}

.location-page-details {
  display: table;
  width: 100%;
  max-width: 250px;
  padding: 10px;
}

.location-page-details h2 {
  margin: 0;
  text-align: center;
  font-weight: 300;
  text-transform: inherit;
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.location-page-details p {
  margin: 9px 0;
  /* margin-bottom: 15px; */
  text-align: center;
}

.location-page-details p a {
  color: #1e1914;
  font-weight: 300;
  text-transform: inherit;
  font-size: 20px;
  display: inline-block;
}

.location-page-details p a.email {
  border-bottom: 1px solid var(--dark-color);
  margin-top: 4px;
  display: inline-block;
  line-height: 19px;
}

.location-page-details p a:hover {
  color: var(--primary-color);
}

.hours-page-details {
  display: table;
  width: 100%;
  /* margin-top: 20px; */
  max-width: 270px;
  padding: 10px;
}

.hours-page-details h2 {
  margin: 0;
  text-align: center;
  font-weight: 300;
  text-transform: inherit;
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.hours-page-details p {
  margin: 6px 0;
  /* margin-bottom: 0px; */
  text-align: center;
  color: var(--dark-color);
  font-weight: 300;
  text-transform: inherit;
  font-size: 15px;
}

.hours-page-details p strong {
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: 0;
  margin-top: 6px;
  font-size: 18px;
  display: inline-block;
  text-transform: uppercase;
}

.contact-form-wrap {
  width: 100%;
  padding: 10px;
}

.secure-form-wrapper {
  max-width: 490px;
  margin: auto;
}

.secure-form .secure-form-item label {
  font-size: 13px;
  color: var(--light-color);
  padding: 0;
  margin-bottom: 2px;
  line-height: normal;
  font-family: var(--primary-color);
  font-weight: 300;
  letter-spacing: 0.3px;
}

.secure-form .secure-form-item input,
.secure-form .secure-form-item textarea {
  box-shadow: none;
  border: 1px solid var(--secondary-color);
  border-radius: 0;
  font-size: 15px;
  padding: 8px 10px;
  color: var(--dark-color);
  font-family: var(--primary-font);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.secure-form .secure-form-submit-button[type='submit'] {
  max-width: 150px;
  margin: auto;
  padding: 6px 10px 7px;
  line-height: normal;
  height: auto;
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 300;
}

.secure-form .secure-form-submit-button[type='submit']:hover {
  background: var(--secondary-color);
  color: var(--gray-color);
}

.secure-form {
  flex-wrap: wrap;
}

.secure-form .secure-form-item {
  width: 50%;
  flex-grow: 1;
  flex: 1 50%;
}

.secure-form .secure-form-recaptcha-container {
  width: 100%;
}

.contact-page-map {
  margin-top: 105px;
}

@media all and (max-width: 768px) {
  .contact-page-details {
    max-width: none;
    flex-wrap: wrap;
  }

  .contact-form-wrap {
    margin-bottom: 30px;
    padding: 0;
  }

  .contact-page-map {
    margin-top: 80px;
  }
}

@media all and (max-width: 768px) {
  .secure-form .secure-form-item {
    width: 100%;
    flex: 1 100%;
  }
}

/* menu page */
.menu-page-wrapper {
  padding: 10px;
}

#menuSectionOfSections {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

#menuSectionOfSections > div,
.menu-main-cells {
  display: flex;
  width: calc(50% - 10px);
  margin: 5px;
  height: auto;
  background: var(--primary-color);
  flex-grow: 1;
}

.menu-category-items-container {
  display: flex;
  flex-wrap: wrap;
}

.sub-item-box h1.allInOnce-h1-0 {
  font-size: 33px;
  color: var(--primary-color);
  margin: 0;
}

.sub-item-box h1 {
  margin-bottom: 10px;
}

.pricelistLastUpdated {
  order: 2;
  width: 100%;
  color: var(--light-color);
  margin: 0;
  margin-top: 10px;
  font-weight: 300;
  display: none;
  letter-spacing: 0.5px;
}

.menuSectionName {
  padding: 10px;
  line-height: normal;
  color: var(--yellow-color);
  font-size: 35px;
  height: 25vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: inherit;
  flex-grow: 1;
}

#menu-container {
  max-width: 1000px;
}

.back_btn_menu {
  background: var(--light-color);
  border: none;
  color: var(--white-color);
  text-transform: inherit;
  padding: 5px 10px 7px;
  min-width: 160px;
  max-width: 160px;
}

.back_btn_menu:hover {
  background: var(--primary-color);
  color: var(--gray-color);
}

.menu-category-container {
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-category {
  border: none;
  background: rgba(204, 189, 173, 0.42);
  font-weight: 300;
  text-transform: inherit;
  padding: 7px 15px 8px;
  flex-grow: 1;
  width: fit-content;
  /* max-width: 300px; */
  margin: 3px;
  min-width: auto;
}

.menu-category:hover {
  background: var(--secondary-color);
  color: var(--gray-color);
}

.menu-category-selected {
  background: var(--primary-color);
  color: var(--gray-color);
  border: none;
}

.menu-category-items {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  text-align: left;
}

.menu-category-items h1 {
  font-weight: 300;
  text-transform: inherit;
  letter-spacing: 0;
  font-size: 28px;
  color: var(--primary-color);
  margin: 15px auto 10px;
  border-bottom: 2px solid var(--light-color);
  width: fit-content;
  padding-bottom: 7px;
}

.menu-category-desc {
  font-weight: 300;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  font-size: 18px;
  width: 100%;
}

.menu-item {
  display: inline-flex;
  width: calc(50% - 20px);
  margin: 10px;
  float: none;
}

.menu-item-description {
  width: 100%;
  float: none;
}

.menu-item-prices {
  width: 100%;
  float: none;
  max-width: fit-content;
  padding-left: 10px;
}

.menu-item-description h3 {
  font-size: 21px;
  font-weight: 300;
  text-transform: inherit;
  line-height: 23px;
}

.menu-item-description p {
  color: var(--light-color);
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0;
}

.menu-item-prices p {
  line-height: 19px;
}

.price {
  font-size: 19px;
  color: var(--primary-color);
}

.menu-var {
  font-size: 15px;
  font-weight: 300;
  color: var(--primary-color);
}

#sec-xLutiM8XQfm5TPCOUIPR4Q {
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  padding: 10px;
  margin: 20px 0;
}

#sec-xLutiM8XQfm5TPCOUIPR4Q .sub-item-box {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}

#sec-xLutiM8XQfm5TPCOUIPR4Q h1.allInOnce-h1-1 {
  padding: 5px 10px 8px;
  background: var(--primary-color);
  color: var(--white-color);
  font-weight: 400;
  max-width: 230px;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 25px;
}

#sec-xLutiM8XQfm5TPCOUIPR4Q h1 {
  margin: 0;
  margin-bottom: 20px;
  width: 100%;
}

#sec-33-LY1EQQ1ifg4t59SC6CA .menu-item {
  /* width: fit-content; */
}

#sec-XsAUcFiuQ3euT2mJMtIUKw,
#sec-LuTy-1CYRCuluFJHELFQXw {
  display: flex;
  flex-wrap: wrap;
}

#sec-XsAUcFiuQ3euT2mJMtIUKw h1,
#sec-LuTy-1CYRCuluFJHELFQXw h1 {
  width: 100%;
}

#sec-XsAUcFiuQ3euT2mJMtIUKw .menu-category-desc {
  width: 100%;
}

#sec-XsAUcFiuQ3euT2mJMtIUKw .menu-item,
#sec-LuTy-1CYRCuluFJHELFQXw .menu-item {
  width: fit-content;
  flex-grow: 1;
  border: 2px solid var(--primary-color);
  border-radius: 3px;
  padding: 5px;
  margin: 5px;
}

#sec-XsAUcFiuQ3euT2mJMtIUKw .menu-item .price,
#sec-LuTy-1CYRCuluFJHELFQXw .menu-item .price {
  font-size: 19px;
}

#sec-XsAUcFiuQ3euT2mJMtIUKw .menu-item-description h3,
#sec-LuTy-1CYRCuluFJHELFQXw .menu-item-description h3 {
  font-weight: 500;
}

#sec-XsAUcFiuQ3euT2mJMtIUKw .menu-item .menu-item-prices p,
#sec-LuTy-1CYRCuluFJHELFQXw .menu-item .menu-item-prices p {
  line-height: normal;
}

#menuSectionOfSections > div#lunch-and-dinner {
  width: 100%;
}

#menuSectionOfSections > div#take-out {
  /* pointer-events: none; */
}

#menuSectionOfSections > div#take-out .menuSectionName {
  color: rgba(0, 0, 0, 0);
  pointer-events: none;
}

.menu-take-out-link {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--yellow-color);
  z-index: 999;
  font-size: 35px;
}

.menu-take-out-link:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

#section-sec-kpUQW2jlSaum5qY755Qizw {
  display: none;
}

#sectionContainer-sec-kpUQW2jlSaum5qY755Qizw h1 {
  margin-top: 0px;
}

#sectionContainer-sec-kpUQW2jlSaum5qY755Qizw .menu-category-desc {
  display: none;
}

.menu-category-container .menu-category-desc {
  margin-top: 0;
}

@media all and (max-width: 1024px) {
  .menuSectionName {
    font-size: 7vw;
    height: 18vh;
  }
}

@media all and (max-width: 768px) {
  #menuSectionOfSections > div {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
  }

  .pricelistLastUpdated {
    margin: 0px;
  }

  .menuSectionName {
    font-size: 26px;
  }

  .menu-item {
    width: 100%;
    margin: 0 0 10px;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 10px;
  }

  .menu-category {
    font-size: 16px;
    padding: 7px 5px 8px;
  }
}

.instagram-feed {
  background: var(--primary-color);
}

.instagram-feed iframe {
  display: table;
}

.hours_container_box h3 {
  display: flex;
  margin-top: 0rem;
}

.day-toggle {
  width: 100%;
  text-align: left;
  margin-bottom: 0rem;
}

.hours_container_box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0rem;
  margin: 0.2rem 0rem;
}
.hours_title_numbers {
  width: 100%;
  display: flex;
  justify-content: space-between;
  opacity: 0.6;
}

.hours-section {
  display: flex;
  flex-wrap: wrap;
}
