@import url('https://use.typekit.net/kqb3vyj.css');

:root {
  --primary-color: #ed1c24;
  --secondary-color: #000000;
  --green-color: #128d3e;
  --black-color: #000000;
  --white-color: #ffffff;
  --primary-font: poynter-oldstyle-display, 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(--white-color);
}

body {
  font-family: var(--primary-font);
  margin: 0;
  background: var(--white-color);
  padding: 0;
  margin-bottom: 543px;
}

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

.bottom-page-link {
  display: flex;
  width: 100%;
  /* border-bottom: 4px solid var(--primary-color); */
}

.bottom-page-link a {
  display: flex;
  width: 100%;
  background: var(--primary-color);
  border-left: 10px solid var(--green-color);
}

.bottom-page-link h1 {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-grow: 1;
  /* background: var(--primary-color); */
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 7vw;
  letter-spacing: 6px;
}

.bottom-page-link .next-img-bar {
  width: 60%;
  height: 35vh;
}

.bottom-page-link .next-img-bar img {
  width: 100%;
  display: table;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width: 768px) {
  .bottom-page-link .next-img-bar {
    height: 22vh;
  }
}

/* intro section */
.intro-bg {
  height: 100vh;
  background: url(../images/intro-bg.jpg) center center no-repeat;
  background-size: cover;
}

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

/* about-sec-bar */
.about-sec-bar {
  padding: 10vw 7vw;
  background: var(--white-color);
}

.about-sec-bar-inner {
  max-width: 900px;
}

.about-sec-bar h1 {
  margin-top: 0;
  font-size: 50px;
  color: var(--primary-color);
  font-weight: 400;
  text-transform: uppercase;
}

.about-sec-bar p {
  margin: 0;
  font-size: 23px;
  line-height: 39px;
  color: #525354;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media all and (max-width: 600px) {
  .about-sec-bar {
    padding: 15vw 20px;
  }

  .about-sec-bar h1 {
    font-size: 35px;
    margin-bottom: 25px;
  }

  .about-sec-bar p {
    font-size: 17px;
    line-height: 28px;
  }
}

/* footer */
footer {
  background: var(--black-color);
  /* background: radial-gradient(rgba(36, 32, 32, 0.6), rgba(0, 0, 0, 0.65), #000000), url(../images/footer-bg.jpg) no-repeat center center / cover; */
  position: fixed;
  z-index: -105;
  bottom: 0;
  height: 500px;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 45px;
}

.footer-inner {
  max-width: 1000px;
  margin: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 50px 10px;
}

.footer-logo {
  display: table;
  width: 100%;
}

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

.footer-details {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin-top: 50px;
}

.footer-btns {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  flex-direction: column;
  max-width: 250px;
  -webkit-justify-content: center;
  justify-content: center;
  /* margin-right: 30px; */
  -webkit-align-items: center;
  align-items: center;
}

.footer-btns h3 {
  width: 100%;
  font-size: 18px;
  margin-top: 0;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 15px;
}

.footer-btns ul {
  width: 100%;
  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;
}

.footer-btns ul li {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
}

.footer-btns ul li a {
  width: 100%;
  display: inline-block;
  padding: 10px;
  max-width: 200px;
  text-align: center;
  /* min-width: auto; */
  /* background: var(--primary-color); */
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.footer-btns ul li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.footer-links {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  /* padding: 0 25px; */
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.footer-links ul {
  width: 100%;
  padding: 0 10px;
}

.footer-links ul li {
  /* margin-bottom: 10px; */
  text-align: center;
  width: 50%;
  float: left;
}

.footer-links ul li a {
  font-size: 25px;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  display: inline-block;
}

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

.footer-contact-details {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  /* max-width: 360px; */
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.footer-contact-details ul {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.footer-contact-details ul li {
  width: 100%;
  text-align: right;
  margin-bottom: 5px;
}

.footer-contact-details ul li a {
  color: #fff;
  padding: 2px 0;
  display: inline-block;
  font-size: 17px;
}

.footer-contact-details ul li a i {
  font-size: 12px;
}

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

.bottom-bar {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  position: fixed;
  z-index: 9;
  bottom: 0;
  background: #ffffff;
  color: #242020;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  border-top: 1px solid #e0e0e0;
}

.bottom-bar-inner {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  /* text-align: center; */
  /* border-top: 1px solid #efefef; */
  /* box-shadow: 0 0 20px #000000; */
}

.bottom-social {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.social-icons a {
  display: -webkit-flex;
  display: flex;
  padding: 13px 12px;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  border-right: 1px solid #e0e0e0;
}

.social-icons a i {
  display: table;
  font-size: 17px;
}

.social-icons a.gonation i {
  display: table;
  font-size: 19px;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.bottom-social ul {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: 100%;
}

.bottom-social ul li {
  display: -webkit-flex;
  display: flex;
  width: 60px;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.bottom-social ul li a {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 15px;
  font-size: 22px;
  color: #242020;
  border-right: 1px solid #efefef;
}

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

.copyright-text {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 700;
}

.copyright-text span {
  font-size: 16px;
  text-transform: uppercase;
}

.powered-by {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: center;
  align-items: center;
  text-align: right;
  padding: 5px 10px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

@media all and (max-width: 768px) {
  .footer-details {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-btns {
    display: inline-block;
    max-width: none;
    margin-bottom: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  }

  .footer-btns ul {
    -webkit-flex-direction: row;
    flex-direction: row;
  }

  .footer-btns ul li {
    text-align: center;
    display: inline-block;
    margin: 0 10px;
  }

  .footer-links {
    width: 50%;
    float: left;
    display: -webkit-inline-flex;
    display: inline-flex;
  }

  .footer-contact-details {
    width: 50%;
    display: -webkit-inline-flex;
    display: inline-flex;
    float: right;
  }
}

@media screen and (min-width: 600px) {
  .footer-details hr {
    display: none;
  }

  .mobile-links-footer {
    display: none;
  }

  .bottom-social ul li.call-dir {
    display: none;
  }
}

@media all and (max-width: 600px) {
  footer {
    height: auto;
  }

  .footer-inner {
    padding: 75px 15px 30px;
  }

  body {
    margin-bottom: 650px;
  }

  .footer-logo img {
    max-width: 280px;
    padding-right: 0;
    float: none;
    margin: auto;
  }

  .footer-details {
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-top: 15px;
  }

  .footer-btns ul {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-btns ul li {
    margin: 1%;
    width: 48%;
    float: left;
  }

  .footer-btns ul li:last-child {
    /* width: 98%; */
  }

  .footer-btns ul li a {
    max-width: none;
  }

  .footer-links {
    width: 100%;
    max-width: none;
    padding: 10px 0;
    margin: 15px auto;
    border-top: 1px solid rgba(255, 255, 255, 0.19);
    border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  }

  .footer-links ul li a {
    padding: 3px;
    font-size: 18px;
  }

  .footer-contact-details {
    width: 100%;
  }

  .footer-contact-details ul li {
    text-align: center;
    margin-bottom: 8px;
  }

  .bottom-social ul li {
    width: 16.66%;
  }

  .bottom-social ul li:last-child a {
    border-right: none;
  }

  .copyright-text {
    display: none;
  }

  .powered-by {
    display: none;
  }

  .footer-details hr {
    display: none;
  }

  .bottom-social {
    max-width: none;
  }

  .footer-btns {
    border: none;
    padding: 0;
    margin-bottom: 0;
  }

  .footer-links ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-links ul li {
    width: auto;
    float: none;
    margin: 2px 10px;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
}

/* menu index */
.menu-index {
}

.menu-index h1 {
  margin-top: 0;
  color: var(--primary-color);
  font-size: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

.menu-index p {
  margin-top: 0;
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 27px;
  font-weight: 600;
}

.menu-index p.title {
  color: var(--green-color);
  margin-bottom: 15px;
}

.menu-index p strong {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 800;
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 5px;
  font-size: 18px;
}

.menu-index p.menu-btns-index {
  display: -webkit-flex;
  display: flex;
  max-width: 450px;
  padding-top: 30px;
}

.menu-index p a {
  padding: 10px;
  color: var(--white-color);
  display: inline-block;
  background: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 7px;
  font-weight: 600;
  margin: 0 10px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  transition: all ease 0.3s;
}

.menu-index p a:hover {
  background: var(--green-color);
}

@media all and (max-width: 1024px) {
  .left {
    width: 50%;
  }

  .slider {
    width: 50%;
  }

  .menu-index p.menu-btns-index {
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
  }

  .menu-index p.menu-btns-index a {
    margin: 10px;
    width: calc(100% - 20px);
  }

  .menu-index h1 {
    margin-bottom: 25px;
  }

  .menu-index p {
    line-height: 26px;
  }
}

@media all and (max-width: 768px) {
  .left {
    width: 100%;
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.56);
  }

  .menu-index p.menu-btns-index {
    -webkit-flex-direction: row;
    flex-direction: row;
    margin: auto !important;
    width: 100%;
  }

  .slider {
    -webkit-order: -1;
    order: -1;
    position: absolute;
    z-index: 0;
    width: 100%;
  }

  .slider nav {
    display: none;
  }
}

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

/* index-tabs */
.index-tabs-btns {
  padding: 0;
  background: var(--white-color);
  display: -webkit-flex;
  display: flex;
  background-size: contain;
}

.index-tabs-btn-left-wrap {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  max-width: 30%;
  margin: 0;
}

.index-inside-tab-left {
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.index-inside-tab-left a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding: 20px 5%;
  width: 100%;
}

.index-inside-tab-left a h1 {
  margin: 0;
  text-transform: uppercase;
  color: var(--white-color);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.56);
  font-size: 5vw;
}

.index-tabs-btn-right-wrap {
  width: 100%;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-flex;
  display: flex;
  margin: 0;
}

.index-inside-tab-right {
  width: 50%;
  margin: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  height: 35vh;
  overflow: hidden;
  transition: all ease 0.3s;
}

.index-inside-tab-right:hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.index-inside-tab-right a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 20px 5%;
  -webkit-transform: scale(1);
  transform: scale(1);
  overflow: hidden;
}

.index-inside-tab-right a:hover {
  background: rgba(0, 0, 0, 0.15);
}

.index-inside-tab-left a:hover {
  background: rgba(0, 0, 0, 0.15);
}

.index-inside-tab-right:hover a {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.index-inside-tab-right a h1 {
  margin: 0;
  text-transform: uppercase;
  color: var(--white-color);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.56);
  font-size: 5vw;
  font-weight: 300;
}

.index-tab-btn {
  margin-top: 20px;
  padding: 19px 10px;
  /* border: 1px solid var(--white-color); */
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  min-width: 200px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
  font-size: 15px;
  /* text-shadow: 0 0 20px rgba(0, 0, 0, 0.61); */
  background: var(--white-color);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.44);
}

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

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

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

.order-now-index {
  background: linear-gradient(
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.3)
    ),
    url(../images/order-now-index.jpg) no-repeat center center;
  background: radial-gradient(rgba(0, 0, 0, 0), #00000000),
    url(../images/order-now-index.jpg) no-repeat center center;
  background-size: cover;
}

/* Sweep To Right */
.index-inside-tab-right a:hover .hvr-sweep-to-right,
.index-inside-tab-left a:hover .hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  color: var(--white-color);
  transition-property: color;
  transition-duration: 0.3s;
  text-shadow: none;
}

.index-inside-tab-right a:hover .hvr-sweep-to-right:before,
.index-inside-tab-left a:hover .hvr-sweep-to-right:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* border-color: var(--primary-color); */
  background: var(--primary-color);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

@media all and (max-width: 1024px) {
  .index-tabs-btn-left-wrap {
    max-width: 35%;
  }

  .index-tab-btn {
    min-width: 140px;
    font-size: 14px;
    padding: 14px 8px;
    letter-spacing: 0.3px;
    background: var(--primary-color);
    color: var(--white-color);
  }
}

@media all and (max-width: 768px) {
  .index-tabs-btns {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .index-tabs-btn-left-wrap {
    max-width: calc(100% - 30px);
    margin: 0px 15px 0;
  }

  .index-tabs-btn-right-wrap {
    margin: 0 0;
  }

  .index-inside-tab-left {
    height: 35vh;
  }

  .index-inside-tab-right {
    margin: 15px 15px 0px;
    width: calc(50% - 30px);
  }

  .index-inside-tab-left a h1 {
    font-size: 8vw;
  }

  .index-inside-tab-right a h1 {
    font-size: 7vw;
  }
}

@media all and (max-width: 600px) {
  .index-inside-tab-left {
    height: 25vh;
  }

  .index-tabs-btns {
    padding: 0;
  }

  .index-inside-tab-right {
    width: 100%;
    margin: 0;
    margin-top: 0;
    height: 25vh;
  }

  .index-tabs-btn-left-wrap {
    max-width: 100%;
    margin: 0;
  }
}

/* parallax */
.parallax-padding {
  height: 60vh;
}

.parallax-padding h1 {
  margin: 0;
  height: 100%;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding: 15px 25px;
  font-size: 6vw;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.45);
  color: var(--white-color);
  letter-spacing: 2px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.17)
  );
}

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

/* about page */
.about-page-wrap {
  background: var(--white-color);
  padding: 90px 20px;
}

.about-text-inner {
  max-width: 800px;
  margin: auto;
}

#aboutus-container p {
  margin: 0;
  margin-bottom: 20px;
  line-height: 35px;
  font-size: 19px;
}

.about-img-wrap {
  background: var(--white-color);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-img-wrap img {
  width: 33.33%;
  object-fit: cover;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-height: 300px;
}

/* menu page */
.menu-page-wrap {
  background: var(--white-color);
  padding-top: 1rem;
}

#menuSectionOfSections .pricelistLastUpdated {
  display: none;
}

#menuSectionOfSections {
  display: flex;
  flex-wrap: wrap;
}

#menuSectionOfSections > div {
  height: 35vh;
  flex-grow: 1;
}

.menuSectionName {
  padding: 10px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6vw;
  background: none;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.52);
  font-weight: 600;
  background: rgba(0, 0, 0, 0.18);
}

.back_btn_menu {
  background: none;
  border: 0;
  color: white;
  background-color: black;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
  padding: 1rem;
  width: fit-content;
  display: flex;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
  border: solid 2px white;
}

.back_btn_menu::before {
  background: rgba(0, 0, 0, 0.75);
  content: '';
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 10px 0px 0px 10px;
  transition: all ease-in-out 0.5s;
}

.back_btn_menu::after {
  background: rgba(237, 28, 35, 0.75);
  content: '';
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 0px 10px 10px 0px;
  transition: all ease-in-out 0.5s;
}

.logos-inner a:hover::before {
  width: 500px;
  border-radius: 10px;
}
.logos-inner a:hover::after {
  width: 0px;
}

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

#menuGallery .pricelistLastUpdated {
  margin-top: 10px;
  margin-bottom: 0;
  order: 1;
}

.menu-category-items-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

h1.allInOnce-h1-0 {
  margin: 0;
  font-size: 40px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.sub-item-box h1 {
  margin-top: 0;
  margin-bottom: 0px;
  letter-spacing: 1px;
  width: 100%;
}

.sub-item-box {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  margin-top: 35px;
}

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

.menu-img {
  margin: 0.25rem 0rem;
}

#menu-container {
  padding: 0;
  display: table;
}

.sub-item-box h1.allInOnce-h1-1 {
  margin-bottom: 15px;
}

#sec-WbAWU0jtQzqvIz2_mND48w {
  margin-top: 0px;
}

#sec-h9Bw2J9gRyajhCcBK1WpSw {
  margin-top: 10px;
}

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

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

.menu-item-description h3 {
  font-weight: 600;
  font-size: 17px;
  text-transform: inherit;
}

.menu-item-description p {
  margin-top: 4px;
  padding-top: 0px;
  font-size: 17px;
  color: #616161;
  text-transform: inherit;
  line-height: 20px;
}

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

.price {
  font-size: 17px;
  font-weight: 600;
}

@media all and (max-width: 768px) {
  #menuSectionOfSections > div {
    margin: 5px;
    height: 25vh;
  }
}

@media all and (max-width: 600px) {
  #menuSectionOfSections > div {
    width: calc(100% - 10px);
  }

  #menuSectionOfSections {
    flex-direction: column;
  }

  .menuSectionName {
    font-size: 11vw;
  }

  .menu-item {
    width: 100%;
    margin: 0;
    margin-bottom: 5px;
  }

  .menu-category-items-container {
    padding: 15px 15px 30px;
  }

  h1.allInOnce-h1-0 {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

/* events page */
.events-page-wrap {
  background: #1a1a1a;
  padding: 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dark-events .recurring-title,
.special-events-title {
  color: var(--green-color);
}

.no-event-post-text {
  text-align: center;
  width: 100%;
  margin: 0;
}

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

/* photos page` */
.photos-page-wrap {
  background: var(--secondary-color);
}

.gn-gal-inner {
  transition: all ease 0.3s;
  justify-content: center;
  align-items: center;
  background: none;
}

.gn-gal-inner .gn-gal-text {
  font-size: 40px;
  padding: 0;
  text-transform: uppercase;
  text-shadow: 0 0 20px #000000;
  letter-spacing: 2px;
}

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

#gallery h1 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

#gallery .back-to-album {
  width: fit-content;
  color: var(--white-color);
}

/* contact page` */
.contact-page-wrap {
  background: var(--white-color);
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .contact-page-wrap {
    flex-wrap: nowrap;
  }
}

.contact-details {
  background: var(--primary-color);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* max-width: fit-content; */
}

.contact-details h2 {
  text-align: center;
  margin-top: 0;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--white-color);
}

.contact-details ul {
}

.contact-details ul li {
  text-align: center;
  margin: 10px 0;
}

.contact-details ul li a {
  color: var(--white-color);
  font-size: 17px;
}

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

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

.contact-details ul li.social-icons {
  display: flex;
  margin: auto;
  margin-top: 20px;
  max-width: 170px;
  justify-content: center;
  align-items: center;
}

.contact-details ul li.social-icons a {
  border: none;
  padding: 0;
}

.contact-details ul li.social-icons a i {
  font-size: 22px;
}

.contact-form {
  width: 100%;
  background: var(--black-color);
  padding: 40px 20px;
}

.secure-form {
  margin: auto;
}

.secure-form .secure-form-item label {
  color: var(--primary-color);
  font-family: var(--primary-font);
  line-height: normal;
  padding: 0;
  padding-bottom: 3px;
  font-size: 15px;
  font-weight: 600;
}

.secure-form .secure-form-item input,
.secure-form .secure-form-item textarea {
  padding: 10px;
  border: 1px solid var(--primary-color);
  background: none;
  font-size: 16px;
  color: var(--white-color);
  font-family: var(--primary-font);
}

.secure-form .secure-form-submit-button[type='submit'] {
  max-width: 160px;
  padding: 10px;
  line-height: normal;
  margin: auto;
  background: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 600;
}

.hours-section h3 {
  display: none;
}

.hours-bar {
  padding: 50px 20px;
  background: var(--white-color);
}

.hours-bar h2 {
  margin-top: 0;
  text-align: center;
  color: var(--green-color);
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 10px;
}

/* modal */

/*====================================
  Our Modal Window styles
=====================================*/

.modal {
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  display: inline-block;
  /* padding: 1em; */
}

@media (min-width: 43.75em) {
  .modal {
    /* padding: 1.5em; */
  }
}

.modal > label {
  background: #ffd300;
  border: 1px solid #f0c600;
  border-radius: 0.2em;
  color: #000000;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  padding: 0.75em 1.5em;
  text-shadow: 1px 1px 1px #fff;
  transition: all 0.55s;
}

label.modal-nav-link {
  color: #9c9b9b;
  display: block;
  font-size: 14px;
  font-weight: 500;
  height: auto;
  line-height: normal;
  letter-spacing: 1.3px;
  padding: 5px 0;
  text-transform: inherit;
  letter-spacing: 1.5px;
  font-size: 25px;
  text-align: left;
  cursor: pointer;
  transition: all ease 0.3s;
}

label.modal-nav-link:hover {
  color: #525354;
}

.modal > label:hover {
  transform: scale(0.97);
}

.modal__overlay {
  background: var(--white-color);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  text-shadow: none;
  top: 0;
  z-index: 600;
}

.modal__wrap {
  padding: 0;
  position: relative;
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 50em) {
  .modal__wrap {
    padding: 0;
  }
}

.modal__wrap label {
  background: var(--primary-color);
  border-radius: 0;
  color: #000000;
  cursor: pointer;
  display: flex;
  height: 30px;
  line-height: normal;
  position: fixed;
  right: 0;
  top: 0;
  font-size: 25px;
  width: 30px;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 300;
}

.modal__wrap h2 {
  color: var(--green-color);
  margin-bottom: 1em;
  text-transform: uppercase;
  margin: 0;
}

.modal__wrap p {
  color: #ffd300;
  text-align: justify;
}

.modal input:focus ~ label {
  transform: scale(0.97);
}

input {
  /* position: absolute;
  top: -1000px; */
}

.modal__overlay {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.75s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -100;
}

input:checked ~ .modal__overlay {
  opacity: 1;
  transform: scale(1);
  z-index: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-options {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-options ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.delivery-options ul li {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-options ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

/* .delivery-options ul li:first-child a {
  background: #f73440;
} */

.delivery-options ul li:nth-child(even) a {
  background: #f73440;
}

.delivery-options ul li:nth-child(odd) a {
  background: #c54532;
}

/* .delivery-options ul li:last-child a {
  background: #c54532;
} */

.delivery-options ul li a:hover {
  background: var(--black-color);
}

.delivery-options ul li a img {
  max-height: 50px;
  max-width: 100%;
}
@media (min-width: 480px) {
  .delivery-options ul li a img {
    max-height: 100px;
  }
}

#shout-body-wrapper-bg {
  position: fixed;
  top: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.56);
  width: 100%;
  height: 100%;
  transition: all ease 0.3s;
}

.no-bg-shout-hide {
}

@media (max-width: 430px) {
  .shout-container shoutimg,
  .shout-container shoutimg.shout-image-block {
    max-height: 150px;
  }
}


.bottom-bar .facebook,
.bottom-bar .gonation {
	display: none;
}