@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700&display=swap');

:root {
  --primary-color: #e03c31;
  --secondary-color: #c39366;
  --dark-color: #2e2a26;
  --black-color: #000000;
  --white-color: #ffffff;
  --primary-font: 'Rajdhani', sans-serif;
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--secondary-color);
}

body {
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
}

a {
  transition: all ease 0.3s;
  color: var(--black-color);
  font-size: 20px;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  padding: 0px;
  list-style: none;
}

.hidden {
  display: none;
}

/* intro */
.intro-bg {
  background: linear-gradient(
      rgba(33, 31, 28, 0.3),
      rgba(33, 31, 28, 0.3),
      rgba(33, 31, 28, 0.7)
    ),
    url(../images/bg.jpg) no-repeat left center;
  background-size: cover;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
}

.index-links {
  position: relative;
  z-index: 12;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  max-width: 90%;
  /* margin-top: 15%; */
  height: 100%;
}

.index-links a {
  font-size: 29px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 5px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.index-links a:hover {
  color: var(--primary-color);
}

@media all and (max-width: 768px) {
  .intro-bg {
    height: auto;
    min-height: 35vh;
    padding: 40px 0;
    margin-top: 70px;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .index-links {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .index-links a {
    margin: 10px 20px;
  }

  .mobile-hide-tabs {
    display: none;
  }
}

/* shout */
.shout-container {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.shout-container shoutinner {
  padding: 0;
  max-width: 90%;
  margin-bottom: 20px;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.shout-container shouttext {
  max-width: none;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.shout-container shouttitle {
  text-align: left;
  /* align-items: flex-end; */
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
  border: none;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 17px;
}

.shout-container shoutmessage {
  color: var(--white-color);
  font-size: 19px;
  letter-spacing: 0.5px;
  text-align: left;
}

.shout-container shoutdate {
  -webkit-order: 1;
  order: 1;
  padding: 0;
  margin-top: 15px;
  font-size: 15px;
}

.shout-container shoutimg.shout-image-block {
  margin: 0;
  border-radius: 0;
  border: 1px solid var(--white-color);
  max-width: 150px;
  max-height: 150px;
  margin-right: 10px;
}

.call-dir {
  display: -webkit-flex;
  display: flex;
  background: var(--black-color);
  padding: 5px 5px 0;
}

.call-dir a {
  width: 100%;
  padding: 7px;
  display: inline-block;
  margin: 5px;
  text-align: center;
  color: var(--white-color);
  background: var(--primary-color);
  letter-spacing: 1px;
  font-weight: 500;
}

.call-dir a i {
  font-size: 14px;
}

@media all and (min-width: 600px) {
  .call-dir {
    display: none;
  }
}

@media all and (max-width: 768px) {
  .shout-container {
    background: var(--black-color);
  }

  .shout-container shoutinner {
    margin: 0;
    padding: 20px 10px;
    max-width: 100%;
  }
}

@media all and (max-width: 600px) {
  .shout-container shoutinner {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px;
  }

  .shout-container shoutimg.shout-image-block {
    margin: 0 auto 10px;
    -webkit-order: -1;
    order: -1;
    width: 100%;
    max-width: none;
  }

  .shout-container shouttext {
    padding: 0;
  }
}

.about-index {
  background: var(--primary-color);
  min-height: 50vh;
  padding: 80px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.about-index-inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1000px;
}

.about-logo {
  width: 100%;
  text-align: center;
}

.about-logo img {
  width: 100%;
  max-width: 400px;
}

.about-text {
  width: 100%;
}

.about-text h1 {
  text-transform: uppercase;
  text-align: left;
  color: var(--dark-color);
  margin-bottom: 25px;
  font-weight: 500;
}

.about-text p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
}

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

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

  .about-logo img {
    max-width: 290px;
  }

  .about-text h1 {
    font-size: 21px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 0px;
  }
}

/* index-tabs */
.index-tabs {
  background: var(--secondary-color);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 100px 20px;
}

.index-tabs-inner {
  width: 100%;
  max-width: 1000px;
  display: -webkit-flex;
  display: flex;
}

.index-parts {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 30vh;
  margin: 10px;
}

.index-parts a {
  padding: 15px 20px;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  background: var(--primary-color);
  color: var(--white-color);
  min-width: 170px;
  text-align: center;
  font-weight: 500;
}

.index-parts a:hover {
  background: var(--black-color);
}

.beer-menu-bg {
  background: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/beer-menu-bg.jpg) no-repeat center center;
  background-size: cover;
}

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

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

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

  .index-tabs-inner {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .index-parts {
    width: calc(50% - 20px);
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
}

@media all and (max-width: 600px) {
  .index-parts {
    width: 100%;
    height: 20vh;
  }
}

.contact-index {
  padding: 80px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.contact-index-inner {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1300px;
  height: auto;
}

.contact-map-index {
  width: 65%;
  margin-right: 20px;
}

.contact-map-index iframe {
  height: 40vh;
}

.contact-details-index {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
}

.location-details {
  margin: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
}

.location-details ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.location-details ul h1 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 20px;
}

.location-details ul li {
  margin: 5px 0;
  font-size: 15px;
}

.location-details ul li a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}

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

.hours-index {
  width: 100%;
}

.hours-index h1 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 20px;
}

.hours-section h3 {
  display: none;
}

.hours-index .hours-section-stack {
  margin: 0;
}

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

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

  .contact-map-index {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .contact-map-index iframe {
    height: 30vh;
  }

  .location-details {
    max-width: none;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .location-details ul {
    text-align: center;
  }

  .hours-index h1 {
    text-align: center;
  }
}

@media all and (max-width: 600px) {
  .contact-details-index {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .location-details {
    margin: 0;
    margin-bottom: 20px;
  }

  .hours-index {
    padding: 10px;
    background: var(--secondary-color);
  }

  .hours-index .hours-section-stack {
    margin: auto;
  }
}

/* footer */
footer {
  min-height: 50vh;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 80px 20px;
  background: var(--dark-color);
}

.footer-inner {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1000px;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 50px;
}

.footer-logo img {
  display: table;
  width: 100%;
  max-width: 130px;
}

.footer-links {
  width: 100%;
  margin-bottom: 50px;
}

.footer-links ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  max-width: max-content;
  margin: auto;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-links ul li {
  margin: 10px 15px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  text-align: center;
}

.footer-links ul li a {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
}

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

.footer-inner .social-icons {
  display: -webkit-flex;
  display: flex;
}

.footer-inner .social-icons a {
  color: var(--white-color);
  padding: 0 15px;
  font-size: 25px;
}

.footer-inner .social-icons a:hover {
  color: var(--primary-color);
}

.footer-inner .social-icons a i {
  display: table;
  font-size: 23px;
}

.copyright {
  margin-top: 50px;
}

.copyright a:hover {
  opacity: 0.7;
}

/* page-head */
.page-head {
  height: 50vh;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.page-head h1 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 39px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  background: rgba(46, 42, 38, 0.55);
}

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

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

.beer-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/brew-head.jpg) no-repeat center center;
  background-size: cover;
}

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

.libation-head {
  background: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0)
    ),
    url(../images/libations-head.jpg) no-repeat center center;
  background-size: cover;
}

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

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

@media all and (max-width: 600px) {
  .page-head {
    height: 32vh;
    margin-top: 70px;
  }
}

/* about-page */
.about-page {
  padding: 50px 20px;
  background: var(--secondary-color);
}

.about-page p {
  font-size: 18px;
  line-height: 26px;
  margin: 15px 0;
  color: var(--white-color);
  font-weight: 500;
}

/* menu page */
.menu-page {
}

#menu-container {
  max-width: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.menu-category-container {
  margin: 0;
  display: -webkit-flex;
  display: flex;
  background: var(--black-color);
  position: -webkit-sticky;
  position: sticky;
  top: 69px;
  width: 100%;
  z-index: 99;
}

.menu-category-container .menu-category-desc {
  display: none;
}

.menu-category-container-inner {
  /* flex-wrap: wrap; */
  display: -webkit-flex;
  display: flex;
  width: 100%;
  overflow: scroll;
  pointer-events: all;
}

.menu-category-container-inner::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
  background: transparent;
  background: linear-gradient(
    to left,
    rgba(195, 147, 102, 0.57),
    rgba(37, 40, 61, 0)
  );
  pointer-events: none;
  transition: opacity 0.2s;
}

.menu-category-container::-webkit-scrollbar {
  display: none;
}

.menu-category-container-inner::-webkit-scrollbar {
  display: none;
}

.menu-category {
  margin: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  border: 1px solid rgba(46, 42, 38, 0.41);
  padding: 15px 5px;
  background: var(--black-color);
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 16px;
  min-width: auto;
}

.menu-category:hover {
  background: var(--dark-color);
  border-color: var(--dark-color);
}

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

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

#menuGallery {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 20px;
  max-width: 1300px;
}

.pricelistLastUpdated {
  text-align: center;
  width: 100%;
  padding: 0;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.menu-category-items {
  display: -webkit-flex;
  display: flex;
  background: var(--black-color);
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu-category-items h1 {
  display: none;
}

.menu-category-desc {
  margin: 0;
  /* display: none; */
  text-align: left;
  font-size: 17px;
  color: var(--dark-color);
  font-weight: 500;
  margin-left: 10px;
  margin-bottom: 10px;
}

.sub-item-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sub-item-box h1.allInOnce-h1-0 {
  display: none;
}

.sub-item-box h1 {
  width: calc(100% - 20px);
  margin: 0 10px;
  margin-bottom: 10px;
  color: var(--dark-color);
  padding-bottom: 0px;
  border-bottom: 2px solid var(--primary-color);
  text-transform: uppercase;
  text-align: left;
  font-size: 45px;
  margin-top: 40px;
}

.menu-item {
  margin: 0px 10px 10px;
  float: none;
  width: calc(50% - 20px);
  -webkit-flex-grow: 1;
  flex-grow: 1;
  display: -webkit-flex;
  display: flex;
  padding-bottom: 10px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.19);
}

.menu-item-description {
  width: 100%;
  float: none;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: flex-start;
}

.menu-item-prices {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  padding-left: 10px;
  -webkit-justify-content: center;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: flex-end;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  z-index: 99;
}

.menu-var {
  color: var(--dark-color);
  font-size: 15px;
}

.price {
  color: var(--black-color);
  font-weight: 700;
  font-size: 19px;
}

.menu-item-prices p {
  margin-bottom: 0;
  line-height: 27px;
}

.menu-item-price {
  width: 100%;
}

.sec-KTplDWPcQWeWurc3FbA4yw h1 {
  margin-top: 0;
}

.menu-item-description h3 {
  color: var(--black-color);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  position: relative;
  text-align: left;
  z-index: 1;
}

.menu-item-description p {
  color: var(--dark-color);
  font-size: 18px;
  text-transform: inherit;
  line-height: normal;
  /* flex-grow: 1; */
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  -webkit-justify-content: center;
  justify-content: flex-start;
  width: 100%;
  padding-top: 0px;
}

.menu-item .menu-img {
  position: absolute;
  height: 100%;
  min-height: 200px;
  z-index: 0;
  max-width: none;
  text-align: center;
}

.menu-item .menu-img img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  height: 100%;
  margin: 0;
  background: #000;
}

.menu-item .menu-img img::after {
}

.sec-rd9VkdWhQmi6VdkaEONnHg h1.allInOnce-h1-1 {
  margin-top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sec-c-mtvGhSTgeIJu9KfeggiA h1.allInOnce-h1-2 {
  margin-top: 10px;
}

@media all and (max-width: 768px) {
  .menu-category {
    padding: 10px 5px;
    font-size: 16px;
    width: 100%;
    font-weight: 500;
    min-width: 140px;
    max-width: none;
    pointer-events: all;
  }

  .menu-category-container {
    overflow: scroll;
  }

  .menu-item {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .menu-item {
    width: 100%;
    padding-bottom: 5px;
    min-height: auto;
    margin-bottom: 5px;
  }

  .sub-item-box h1 {
    font-size: 31px;
    margin-top: 20px;
  }

  .menu-item-description {
  }

  .menu-var {
  }

  .sec-KTplDWPcQWeWurc3FbA4yw h1 {
    margin-top: 0;
  }

  #menuGallery {
    padding: 40px 10px;
  }

  .price {
    font-size: 17px;
  }

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

  .menu-item-description p {
    font-size: 15px;
  }

  .menu-item-description h3 {
    font-size: 16px;
  }

  #menuSectionOfSections[anchordef='powered-list-2'] {
  }

  .menu-item .menu-img {
    min-height: auto;
    position: relative;
    height: auto;
    /* max-height: 130px; */
  }

  .menu-item .menu-img img {
    height: auto;
    display: table;
    max-height: 160px;
    border-radius: 10px;
  }
}

/* photos page */
.photos-page {
  background: var(--black-color);
}

.gn-album-container,
.popup-gallery {
  max-width: none;
}

/* events page */
.events-page {
  padding: 50px 20px;
  min-height: 300px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background: var(--secondary-color);
}

.recurring-event-container {
  margin: 0;
}

.recurring-title,
.special-events-title {
  color: var(--primary-color);
  margin: 0;
  /* margin-bottom: 20px; */
}

.no-event-post-text {
  width: 100%;
  margin-top: 10px;
}

/* contact page */
.contact-details {
  display: -webkit-flex;
  display: flex;
}

.contact-details-text {
  width: 100%;
  background: var(--secondary-color);
  padding: 40px 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.contact-details-text ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.contact-details-text ul h1 {
  color: var(--dark-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-details-text ul li {
  margin: 4px 0;
}

.contact-details-text ul li.social-icons {
  display: -webkit-flex;
  display: flex;
  margin-top: 12px;
  margin-bottom: 0;
}

.contact-details-text ul li.social-icons a {
  padding: 0 9px;
}

.contact-details-text ul li.social-icons a i {
  display: table;
  font-size: 24px;
}

.contact-details-text ul li a {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-color);
}

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

.contact-details-text ul li a i {
  font-size: 13px;
}

.contact-hours {
  width: 100%;
  background: var(--white-color);
  padding: 20px 10px;
}

.contact-hours h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-hours .hours-section-stack .hours_container_box {
  margin: 0;
}

.hours-section-stack {
  max-width: 250px;
}

.contact-form {
  background: var(--primary-color);
  padding: 70px 20px;
}

.contact-form-inner {
  max-width: 600px;
  margin: auto;
}

.contact-form-inner p {
  text-align: center;
  margin-bottom: 20px;
  color: var(--white-color);
  font-weight: 500;
  font-size: 18px;
}

.secure-form .secure-form-item label {
  line-height: normal;
  padding: 0;
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--primary-font);
  letter-spacing: 0.7px;
  font-size: 15px;
  padding-left: 5px;
}

.secure-form .secure-form-item input,
.secure-form .secure-form-item textarea {
  padding: 10px;
  box-shadow: none;
  border: 2px solid var(--white-color);
  background: none;
  color: var(--white-color);
  font-family: var(--primary-font);
  font-weight: 500;
}

.secure-form .secure-form-submit-button[type='submit'] {
  max-width: 180px;
  padding: 10px;
  height: auto;
  letter-spacing: 1px;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 600;
  margin: auto;
  background: var(--secondary-color);
}

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

@media all and (max-width: 600px) {
  .contact-details {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .contact-details-text {
    padding: 20px 10px;
  }
}

#gallery h1 {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  padding-top: 20px;
}

#gallery .back-to-album {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: var(--white-color);
  padding: 5px 15px;
  background: var(--secondary-color);
  font-size: 16px;
  margin-bottom: 20px;
}

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

/* events */
.events_main {
  background: none;
  box-shadow: none;
  margin-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 2px solid rgba(46, 42, 38, 0.27);
}

.event-info {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.event-info .date {
  border: 0;
  color: var(--dark-color);
  font-weight: 600;
  padding-bottom: 0;
}

.event-info h3.event-card-title {
  font-size: 26px;
  color: var(--white-color);
  font-weight: 700;
}

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

.view-events-btn-container a {
  max-width: 190px;
  background: var(--primary-color);
  border: none;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
}

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

.event-info p {
  font-size: 19px;
  color: var(--white-color);
}

.slick-initialized .recurring-event {
  background: none;
  border: 0;
  min-height: 240px;
  max-height: 240px;
}

.recurring-event-name {
  color: var(--white-color);
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
  font-size: 19px;
}

.recurring-days-title {
  color: var(--dark-color);
  text-transform: uppercase;
  font-size: 18px;
}

.recurring-event-description {
  box-shadow: none;
  border: 0;
  text-align: left;
  max-width: none;
  padding: 0;
  font-size: 15px;
  color: var(--white-color);
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.recurring-card-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.recurring-event-time {
  color: var(--dark-color);
  font-weight: 700;
}

.recurring-btn-container {
  margin-top: 2px;
  max-width: 140px;
  background: var(--dark-color);
}

.recurring-btn {
  background-color: var(--dark-color);
  border: 0;
}

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

#menuSectionOfSections[anchordef='powered-list-2'] {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: none;
}

#menuSectionOfSections[anchordef='powered-list-2'] .menu-main-cells {
  width: calc(50% - 10px);
  margin: 5px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

#menuSectionOfSections[anchordef='powered-list-2']
  .menu-main-cells
  .menuSectionName {
  height: 32vh;
  /* background: var(--primary-color); */
  color: var(--white-color);
  font-size: 5vw;
  display: -webkit-flex;
  display: flex;
  font-weight: 600;
  text-shadow: 0 0 20px #000000;
  background: rgba(0, 0, 0, 0.38);
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

#menuSectionOfSections[anchordef='powered-list-2'] .menu-main-cells#food-menu {
  display: none;
}

#menuSectionOfSections[anchordef='powered-list-2'] .pricelistLastUpdated {
  display: none;
}

#menuSectionOfSections[anchordef='powered-list-2']
  .menu-main-cells
  .menuSectionName:hover {
  background: rgba(0, 0, 0, 0.48);
}

.back_btn_menu {
  max-width: none;
  width: 100%;
  margin-bottom: 0;
  text-transform: uppercase;
  background: var(--primary-color);
  border: none;
  font-weight: 500;
}

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

@media all and (max-width: 600px) {
  #menuSectionOfSections[anchordef='powered-list-2'] {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  #menuSectionOfSections[anchordef='powered-list-2'] .menu-main-cells {
    width: calc(100% - 20px);
    margin: 10px;
  }

  #menuSectionOfSections[anchordef='powered-list-2']
    .menu-main-cells
    .menuSectionName {
    font-size: 10vw;
    font-weight: 500;
  }
}

#emma-form-876a37fab913b663ebe68a6be83df923 *,
#emma-form-876a37fab913b663ebe68a6be83df923 *:before,
#emma-form-876a37fab913b663ebe68a6be83df923 *:after {
  box-sizing: inherit;
  position: relative;
  margin: 0;
  width: 100%;
  box-shadow: none;
  background: none;
  border: 0;
  z-index: 9;
}

#emma-form-876a37fab913b663ebe68a6be83df923.emma-show {
  opacity: 1;
  background: rgba(0, 0, 0, 0.83);
}

#emma-form-876a37fab913b663ebe68a6be83df923 form {
  position: relative;
  width: 100% !important;
  height: auto !important;
  border-radius: 0px !important;
  margin: 0 auto !important;
  padding: 0px !important;
  color: #72757a;
  box-shadow: 0 0 20px 0 rgba(224, 60, 49, 0.3) !important;
  max-width: 350px;
  border: 2px solid var(--primary-color);
}

#emma-form-876a37fab913b663ebe68a6be83df923 form button {
  width: 100%;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background: none repeat scroll 0% 0% #b7b8bb;
  border-radius: 0;
  border: 0 none;
  padding: 10px 15px 6px;
  cursor: pointer;
  box-shadow: none;
  outline: medium none;
  font-family: var(--secondary-font);
  height: auto;
  line-height: normal;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form .fields {
  padding: 10px;
  padding-bottom: 0px;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form div {
  margin: 0;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form div label {
  display: block;
  font-weight: normal;
  padding-bottom: 5px;
  font-family: var(--secondary-font);
  color: var(--primary-color);
  font-size: 10px;
  font-weight: 700;
  /* text-transform: uppercase; */
  padding-bottom: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 2px 5px;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form div input[type='email'] {
  border: 2px solid var(--primary-color) !important;
  width: 100%;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.5px;
}

#emma-form-876a37fab913b663ebe68a6be83df923 header {
  padding: 30px 10px 10px;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form header h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-family: var(--secondary-font);
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--primary-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form header h2 {
  font-size: 14px;
  font-weight: normal;
  width: 100%;
  font-family: var(--primary-font);
  text-align: center;
}

#emma-form-876a37fab913b663ebe68a6be83df923 form img {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 23px;
  height: 23px;
  cursor: pointer;
  z-index: 99;
  padding: 5px;
  background: var(--primary-color);
  border-radius: 3px;
}

.donation-section {
  padding: 2rem 1.5rem;
}

.donation-section .container {
  max-width: 900px;
  margin: auto;
}

.donation-section p {
  margin-bottom: 1rem;
}

.donation-section h2 {
  margin-bottom: 2rem;
}

.recurring-btn {
  background-color: var(--primary-color);
}
@media (max-width: 768px) {
  .slick-initialized .recurring-event {
    max-height: 600px;
    min-height: none;
  }
}

.gn-popup {
  background: rgba(0, 0, 0, 0.8);
  padding: 2rem 0.5rem;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.gn-popup__close-btn {
  background: black;
  padding: 0.5rem 1rem;
  color: white;
  position: absolute;
  z-index: 9;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.gn-popup__content {
  color: white;
}

.is-hidden {
  display: none !important;
}

.gn-popup__content img {
  width: 100%;
}

/* .gn-popup__content {
  max-width: 1200px;
} */

.button.is-primary {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem;
  border: 1px solid var(--primary-color);
  font-weight: 700;
}

.btn-row {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.btn-row > div {
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .btn-row > div {
    margin: 0 0.25rem;
  }
}

.mc-banner {
  margin-top: 235px;
  max-width: 70%;
  margin-left: 55px;
}
