/*------------------ # Design Fonts ------------------*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oleo+Script+Swash+Caps:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap');

@import url(line-awesome.css);


/* ----**** [ general css ] ****---- */

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1C1818;
}

body.innerpage {
  height: auto;
}

a {
  color: #1C1818;
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #d0112b;
  outline: none;
  text-decoration: none;
}


/* ----**** [ order button css ] ****---- */

.order-btn {
  background: #FCD633;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #131111;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #FCD633;
  padding: 0 16px;
  min-width: 180px;
  height: 48px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  /*-webkit-border-radius: 6px; -moz-border-radius: 6px; -ms-border-radius: 6px; border-radius: 6px;*/
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.order-btn:hover,
.order-btn:focus {
  background: #d0112b;
  color: #131111;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-weight: 400;
  text-transform: inherit;
}

p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 16px 0;
  color: #131111;
}

section {
  padding: 80px 0;
}


/* ----**** [ sections header ] ****---- */

.section-header {
  margin-bottom: 36px;
  text-align: left;
}

.section-header h2 {
  font-family: "Oleo Script Swash Caps", system-ui;
  font-size: 56px;
  font-weight: 700;
  color: #d0112b;
  margin: 0;
}

.section-header h2.clrWhite {
  color: #131111;
}

#home-welcome .section-header h2 {
  color: #131111;
}

/* ----**** [ back-to-top button ] ****---- */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 996;
  background: rgba(255, 255, 255, 0.50);
  width: 40px;
  height: 40px;
  visibility: hidden;
  opacity: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #111419;
  line-height: 0;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 1);
}

.back-to-top:hover i {
  color: #111419;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* ----**** [ header section ] ****---- */

.top-area {
  position: relative;
  width: 100%;
  height: 100%;
}

#header .website-note {
  background: #000000;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  position: absolute;
  width: 100%;
  top: -36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header {
  background: rgba(255, 255, 255, 1);
  z-index: 997;
  height: 120px;
  top: 36px;
  flex-wrap: wrap;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(231, 231, 231, 1);
  height: 120px;
  top: 0;
  box-shadow: 1px 0 10px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 1px 0 10px rgb(0 0 0 / 10%);
  -moz-box-shadow: 1px 0 10px rgb(0 0 0 / 10%);
}

#header .logo {
  padding: 6px 0 6px 0;
  text-align: center;
  /*border-bottom: 1px solid #000;*/
}

#header .logo img {
  max-height: 60px;
}


/* ----**** [ desktop navigation section ] ****---- */

.nav-wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #FCD633;
  padding: 6px 10px;
}

.nav-wrapper ul.header-social {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.nav-wrapper ul.header-social li {}

.nav-wrapper ul.header-social li a {
  height: 32px;
  width: 32px;
  font-size: 22px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-wrapper ul.header-social li a i.la-facebook-f {
  font-size: 20px;
}

.nav-wrapper ul.header-social li a:hover {
  background: #d0112b;
  color: #FFFFFF;
}

.navbar {
  padding: 0;
  justify-content: center;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #131111;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 12px;
  /*border-right: 1px solid #FFFFFF;*/
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #d0112b;
}

.navbar ul li a i {
  margin: 0 12px 0 0;
  font-size: 28px;
}

.navbar ul li:nth-last-child(2) a,
.navbar a.nav-link.order-online-btn {
  border-right: 0px none;
}

.navbar a.nav-link.order-online-btn {
  background: #d0112b;
  color: #ffffff;
  padding: 0 16px;
  min-width: 120px;
  display: flex;
  justify-content: center;
  height: 36px;
  border: 2px solid #d0112b;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.navbar a.nav-link.order-online-btn:hover {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.nav-link:focus,
.nav-link:hover {
  color: #d0112b;
}


/* ----**** [ mobile navigation section ] ****---- */

.mobile-nav-toggle {
  color: #111419;
  font-size: 36px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #FFFFFF;
}

@media (max-width: 991px) {

  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

}

.navbar-mobile {
  background: rgba(20, 33, 56, 0.65);
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 36px;
}

.navbar-mobile ul {
  background: #000;
  display: block;
  overflow-y: auto;
  position: absolute;
  top: 48px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 16px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
}

.navbar-mobile ul li {
  text-align: center;
  margin: 0;
}

.navbar-mobile ul li a {
  padding: 8px 16px;
  font-weight: 700;
  color: #FFFFFF;
  justify-content: center;
  border-right: 0px none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.navbar-mobile ul li a:focus {
  display: block;
}

.navbar-mobile ul li a:hover,
.navbar-mobile .active,
.navbar-mobile ul li:hover>a {
  background: #ffffff;
  color: #d0112b;
}

.navbar-mobile a.nav-link.order-online-btn {
  height: 44px;
  background: #FCD633;
  color: #131111;
  border: 2px solid #FCD633;
}

.navbar-mobile a.nav-link.order-online-btn:hover {
  background: #d0112b;
  color: #FFFFFF;
  border: 1px solid #d0112b;
}

.mobile-order-btn {
  display: none;
}

.mobile-order-btn a {
  background: #d0112b;
  font-size: 16px;
  font-weight: 500;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  padding: 0 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.mobile-order-btn a:hover {
  background: #1C1818;
  color: #FFFFFF;
}


/* ----**** [ slider section ] ****---- */

.slider-area .pogoSlider--navBottom .pogoSlider-nav {
  display: none;
}

html,
body {
  height: 100%
}

.pogoSlider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding-bottom: 0 !important;
}

.pogoSlider-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 200px;
}

/*.pogoSlider-slide::after { background: #000000; width: 100%; height: 100%;
    content: ""; position: absolute; left: 0; opacity: 0.25; top: 0; z-index: -1;}*/


.slider-area {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-area h1 {
  font-family: "Oleo Script Swash Caps", system-ui;
  color: #FFFFFF;
  font-size: 60px;
  font-weight: 700;
  text-transform: inherit;
  margin: 0 0 24px 0;
}

.slider-area h1 {
  text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.slider-area h2 img {
  -webkit-filter: drop-shadow(5px 5px 5px #222222);
  filter: drop-shadow(5px 5px 5px #222222);
}

.slider-area .order-btn {
  height: 56px;
}

.slider-area .order-btn:hover,
.slider-area .order-btn:focus {
  background: #ffffff;
  color: #131111;
  border: 2px solid #ffffff;
}

.slider-area .download-app {
  display: flex;
  margin: 24px 0 0 0;
  justify-content: center;
}

.slider-area .download-app .download-btn {
  margin: 0 10px;
}


/* ----**** [ restaurant info section ] ****---- */

#restaurant-info {
  background: #d0112b;
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

#restaurant-info a {
  display: flex;
  justify-content: center;
  align-items: center;
}

#restaurant-info a i {
  color: #fff;
  font-size: 32px;
  margin: 0 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#restaurant-info a span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}


#home-welcome {
  background: #f2efe8;
  padding: 60px 60px 60px 0px;
  position: relative;
}

#home-specialoffers {
  padding: 0px;
  position: relative;
}

#home-specialoffers .section-header h2 {
  color: #FCD633;
  text-align: center;
}

#home-welcome:before,
#home-specialoffers:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  background-attachment: scroll;
  /*background-position: center;*/
  background-size: cover;
}

/*#home-welcome:before { background-image: url("../img/bg/about_back.jpg"); background-position: center;}*/
#home-specialoffers {
  background-image: url("../img/bg/about_back.jpg");
  background-position: 100% -100px;
  background-size: cover;
  background-repeat: no-repeat;
}

#home-specialoffers:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1 !important;
  background: rgba(0, 0, 0, 0.7);
}
#home-specialoffers .specialoffers-inner{
  position: relative;
  z-index: 2 !important;
}
.welcome-inner,
.specialoffers-inner {
  display: -webkit-flex;
  -webkit-flex-flow: row wrap;
  -webkit-align-items: stretch;
  -webkit-align-content: stretch;
  overflow: hidden;
}

.welcome-img,
.specialoffers-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


/* ----**** [ home welcome section ] ****---- */

#home-welcome .welcome-img,
#home-welcome .welcome-text {
  width: 50%;
}

#home-welcome .welcome-text {
  padding: 80px 48px;
  text-align: center;
}

#home-welcome .welcome-text p {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

#home-welcome .welcome-text p strong {
  display: block;
  font-weight: 400;
}

#home-welcome .welcome-text p span {
  display: block;
  font-weight: 500;
}

#home-welcome .welcome-text p span {
  margin: 24px 0 0 0;
}

#home-welcome .welcome-text p span a {
  border-bottom: 1px solid #000000;
}

#home-welcome .welcome-text p span a:hover {
  border-bottom: 1px solid #d0112b;
  color: #d0112b;
}

/*#home-welcome .section-header h2:after { height: 40px; background-image: url("../img/title_decoration_1.png");     
	content: "";
    display: block;
    position: relative;
    width: auto;
    margin: 15px auto;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}*/


/* ----**** [ home our story section ] ****---- */


#home-specialoffers .specialoffers-img,
#home-specialoffers .specialoffers-info {
  width: 100%;
}

#home-specialoffers .specialoffers-info {
  padding: 60px 48px;
}

.specialoffers-info {
  text-align: center;
}

.specialoffers-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.specialoffers-info ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.specialoffers-info ul li span {
  padding-right: 12px;
}

.specialoffers-info ul li:first-child {
  font-family: "Rowdies", sans-serif;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #F2EFE9;
  text-transform: uppercase;
}

.specialoffers-info ul li:last-child {
  margin-bottom: 0;
}

.specialoffers-info ul.offer-imgs {
  border: 0px none;
  display: flex;
  padding: 0;
  justify-content: space-evenly;
  align-items: center;
}

.specialoffers-info ul.offer-imgs li {
  margin: 0;
}

.specialoffers-btn {
  margin-block-start: 36px;
  text-align: left;
}

.specialoffers-btn .order-btn {
  background: #131111;
  min-width: 180px;
  height: 42px;
  border: 2px solid #131111;
  color: #F2EFE9;
}

.specialoffers-btn .order-btn:hover {
  background: #d0112b;
  color: #fff;
  border: 2px solid #d0112b;
}

#home-specialoffers .specialoffers-btn {
  text-align: center;
}

#home-specialoffers .specialoffers-btn .order-btn {
  background: #F2EFE9;
  color: #131111;
  border: 1px solid #F2EFE9;
}

#home-specialoffers .specialoffers-btn .order-btn:hover {
  background: #d0112b;
  color: #FFFFFF;
  border: 1px solid #d0112b;
}

/*#home-specialoffers .section-header h2:after { height: 25px; background-image: url("../img/title_decoration_2.png");     
	content: "";
    display: block;
    position: relative;
    width: auto;
    margin: 15px auto;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}*/


/* ----**** [ home google reviews section ] ****---- */

#home-google-reviews {
  position: relative;
  background: #FCD633;
  /*background: url(../img/bg/reviews_back.jpg) no-repeat center;
    -webkit-background-size: cover; -moz-background-size: cover; -ms-background-size: cover; background-size: cover;*/
}

#home-google-reviews .section-header h2 {
  text-align: center;
}

#home-google-reviews .container {
  width: 60%;
}

#home-google-reviews .google-review-inner {
  display: flex;
  gap: 24px;
}

#home-google-reviews .google-review-inner .review-quote {
  font-size: 48px;
  color: #d0112b;
  display: flex;
}

#home-google-reviews .google-review-inner .review-quote.quote-left {
  align-items: self-start;
}

#home-google-reviews .google-review-inner .review-quote.quote-right {
  align-items: self-end;
}

#home-google-reviews .google-review-item .item-text {
  min-height: 180px;
  text-align: center;
}

.google-review-item p {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  color: #131111;
  min-height: 148px;
  font-weight: 500;
}

.google-review-item h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #131111;
  display: flex;
  gap: 12px;
  justify-content: center;
  text-transform: inherit;
  align-items: center;
  margin: 0 0 24px 0;
}

.google-review-item span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-review-item span i {
  font-size: 16px;
  color: #d0112b;
}

/*#home-google-reviews .owl-carousel .owl-controls { margin-top: -30px; position: absolute; top: 50%; width: 100%;}
#home-google-reviews .owl-carousel .owl-nav>button { color: #fff; width: 36px; height: 36px; 
	text-align: center; display: inline-block; font-size: 36px; opacity: 0;
    padding-top: 4px; position: absolute; top: 50%;
    -webkit-transition: all 0.3s ease-in-out 0s; -moz-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s;}
#home-google-reviews .owl-carousel .owl-nav>button:focus { border:0px none; outline:none;}
#home-google-reviews .google-reviews-carousel:hover .owl-nav>button { opacity: 1;}
#home-google-reviews .owl-carousel .owl-nav>button.owl-next { right: -200px;}
#home-google-reviews .owl-carousel .owl-nav>button.owl-prev { left: -200px;}*/

#home-google-reviews .owl-nav,
#home-google-reviews .owl-dots {
  margin-top: 5px;
}

#home-google-reviews .owl-dots {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#home-google-reviews .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: rgba(19, 17, 17, 0.45);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#home-google-reviews .owl-dot:focus {
  outline: none;
}

#home-google-reviews .owl-dot.active {
  background-color: #d0112b;
  opacity: 1;
}


/* Gallery Section
--------------------------------*/


#gallery {
  background: #F2EFE9 !important;
  padding: 60px 0;
  position: relative;
  background: linear-gradient(rgba(250, 250, 250, 0), rgba(250, 250, 250, 0)), url(../img/bg/gallery_bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  background-attachment: scroll;
}

#gallery .section-header h2 {
  color: #d0112b;
  text-align: center;
}

#gallery:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  background-attachment: fixed;
  /*background-position: center;*/
  background-size: cover;
}

/*#gallery:before { background-image: url("../img/bg/about_us_back.jpg"); background-position: center;}*/

.columnmain {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#gallery a.glightbox img {
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
}

.gallery-row1 {
  display: flex;
}

.gallery-row2 {
  display: flex;
}

.gallery-row3 {
  display: flex;
}

#gallery a.glightbox {
  display: block;
  padding: 0;
  overflow: hidden;
  margin: 24px;
  border: 6px solid #d0112b;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
}

#gallery a.glightbox img {
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#gallery a.glightbox:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}


.gallery-desktop {
  /*display:block;*/
}

.gallery-desktop .col-12 {
  padding: 0;
}

.gallery-mobile {
  display: none;
}

#gallery .owl-carousel .owl-controls {
  margin-top: -30px;
  position: absolute;
  top: 50%;
  width: 100%;
}

#gallery .owl-carousel .owl-nav>button {
  background: #f6343f;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  display: inline-block;
  font-size: 28px;
  margin-top: -20px;
  opacity: 0;
  padding-top: 4px;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

#gallery .owl-carousel .owl-nav>button:focus {
  border: 0px none;
  outline: none;
}

#gallery .gallery-slider:hover .owl-nav>button {
  opacity: 1;
}

#gallery .owl-carousel .owl-nav>button.owl-next {
  right: 0;
}

#gallery .owl-carousel .owl-nav>button.owl-prev {
  left: 0;
}

#gallery .owl-dots {
  margin-top: 25px;
  text-align: center;
}

#gallery .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

#gallery .owl-dots .owl-dot:focus {
  outline: none;
}

#gallery .owl-dots .owl-dot.active {
  background-color: #d0112b;
}



/* ----**** [ home map section ] ****---- */

#home-map {
  padding: 0;
}



/* ----**** [ home footer section ] ****---- */


#footer {
  position: relative;
  background: #000000;
}


#footer .footer-top {
  padding: 60px 0;
  position: relative;
}

#footer .footer-top h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px 0;
}

#footer .footer-top h3 i {
  background: #FFFFFF;
  color: #353638;
  width: 36px;
  height: 36px;
  display: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

#footer .footer-top h3 span {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
}

#footer .footer-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-address ul li {
  display: block;
}

#footer .footer-top .footer-address ul li a {
  font-size: 16px;
  color: #FFFFFF;
}

#footer .footer-top .footer-address ul li a:hover {
  color: #FFFFFF;
}

#footer .footer-top .footer-phone ul li {
  display: block;
}

#footer .footer-top .footer-phone ul li a {
  font-size: 16px;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
}

#footer .footer-top .footer-phone ul li a:hover {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

#footer .footer-top .footer-social {
  margin: 0 0 36px 0;
}

#footer .footer-top .footer-social ul {
  display: flex;
  gap: 12px;
}

#footer .footer-top .footer-social ul li a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #FFFFFF;
  font-size: 22px;
}

#footer .footer-top .footer-social ul li a i.la-facebook-f {
  font-size: 20px;
}

#footer .footer-top .footer-social ul li a:hover {
  background: #d0112b;
  color: #ffffff;
}

#footer .footer-top .footer-hours ul li {
  font-size: 16px;
  color: #FFFFFF;
  display: block;
  margin: 0 0 12px 0;
}

#footer .footer-top .footer-hours ul li:last-child {
  margin: 0;
}

#footer .footer-top .footer-logo {
  margin: 0 0 36px 0;
}

#footer .footer-top .footer-logo ul li img {
  max-height: 110px;
}

#footer .footer-btm {
  border-top: 1px solid #FFFFFF;
  padding: 16px 0;
  position: relative;
}

#footer .footer-btm p {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .footer-btm p span img {
  max-height: 48px;
}

#footer .footer-btm p strong,
#footer .footer-btm p strong b {
  font-weight: 400;
}

#footer .footer-btm p strong b {
  border-right: 1px solid #FFFFFF;
  margin: 0 12px 0 0;
  padding: 0 12px 0 0;
}

#footer .footer-btm p a {
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
}

#footer .footer-btm p a:hover {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}



/* ----**** [ website acs section ] ****---- */

body.innerpage {}


.website-acs {
  padding: 222px 0 70px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.55)),
    url(../img/bg/about_us_back.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

/*.website-acs .website-info-block { background: #FFFFFF; padding: 30px;  
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);}*/

.website-acs .section-header h2 {
  font-size: 54px;
  color: #000000;
  text-align: center;
}

.website-acs .website-info-block p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #000000;
}

.website-acs .website-info-block p:last-child {
  margin: 0;
}

.website-acs .website-info-block p a {
  font-weight: 600;
  color: #CE1F1E;
  text-decoration: underline;
}



/* ----**** [ breadcrumbs section ] ****---- */

.breadcrumbs {
  padding: 0;
  text-align: center;
  min-height: 240px;
  margin-top: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumbs h2 {
  font-size: 44px;
  margin-bottom: 0;
  font-weight: 400;
  color: #FFFFFF;
}

.breadcrumbs {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url("../img/bg/bg-img3.webp") center center;
  overflow: hidden;
  padding: 40px 60px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

.single-slide-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.single-slide-view img {
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}



body.innerpage #header { top: 0;}



/* ----**** [ menu page css section ] ****---- */

.food-menu-page { min-height: 100%; position: relative;}
.food-menu-page:before { background: linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.55)), url(../img/bg/about_us_back.jpg) no-repeat center center fixed; 
  /* -webkit-filter: grayscale(1) opacity(0.2); -moz-filter: grayscale(1) opacity(0.2);
  -ms-filter: grayscale(1) opacity(0.2); filter: grayscale(1) opacity(0.2); background-attachment: fixed; background-position: center; */
  content: ""; position: fixed; top: 0; left: 0; right: 0; z-index: -1; display: block;
  width: 100%; height: 100%; 
  background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; -ms-background-size: cover;}

.food-menu-wrapper { padding-top: 120px;}
.food-menu-wrapper .section-header { padding-top: 100px; text-align: center;}
.food-menu-wrapper .section-header h2 { font-size: 54px; color: #000000;}
.food-menu-wrapper .food-menu-inner .nav.nav-pills { justify-content: center;}
.food-menu-wrapper .food-menu-inner .nav.nav-pills .nav-link { font-weight:600; font-size: 16px; 
  padding: 10px 40px; text-transform: uppercase; min-width: 160px; margin: 6px; background: #d00d2a; color: #FFFFFF;
  border-radius: 6px; -moz-border-radius: 6px; -webkit-border-radius: 6px; -ms-border-radius: 6px;}

.food-menu-wrapper .food-menu-inner .nav.nav-pills .nav-link:focus, 
.food-menu-wrapper .food-menu-inner .nav.nav-pills .nav-link:hover,
.food-menu-wrapper .food-menu-inner .nav.nav-pills .nav-link.active { background: #1f3268;}

.food-menu-inner { width: 1140px; margin: 0 auto;}
.menu-description { width: 80%; margin: 0 auto; padding-bottom: 0; text-align: center; }
.menu-description p { font-weight: 600; padding: 0;}

.food-menu-grid { display: flex;}
.food-menu-grid.widthFull { display: inline;}
.food-menu-grid.widthFull .food-menu-grid-item  { width: 100%;}

.food-menu-grid .food-menu-grid-item  { width: 50%;}

.food-menu-grid-item-content { background: #fff; padding: 20px 24px; margin: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);}

.food-menu-grid-item-content h2 { font-size: 32px; color: #000; text-align: center;}

.food-menu-grid-item-content .food-menu-description p { margin-bottom: 16px; text-align: center; color: rgba(0, 0, 0, 0.60);}
.food-menu-grid-item-content .food-menu-content { border-left: 1px solid #000; padding: 10px; padding-top: 0;}

.food-item-holder { border-bottom: 1px solid #e4e4e4; padding: 15px 0; display: table; width: 100%;}
.food-item-holder .food-item-title { display: inline-block; font-size: 16.9px; font-weight: 600;}
.food-item-holder .food-price { display: inline-block; padding: 0 10px 0 5px; float: right; font-size: 16.9px; font-weight: 600;}
.food-item-holder .food-price.multiple-price { width: 100%; text-align: right; margin-top: -3px;}
.food-item-holder .food-item-description { padding-top: 5px; padding-right: 20px; color: rgba(0, 0, 0, 0.60); font-size: 15.6px; line-height: 20.28px;}
.food-item-holder .food-item-photo-holder { padding-bottom: 15px;}

.food-menu-grid-item-content.lunch-specials-cate h2 { color:#d00d2a;}
.food-menu-grid-item-content.lunch-specials-cate .food-item-holder p { color: rgba(0, 0, 0, 0.60);}
.lunch-specials-cate ul { list-style-type: none; margin: 0; padding: 0; display: flex;
    flex-wrap: wrap; flex-direction: column; gap: 12px;}
.lunch-specials-cate ul li { font-size: 16.9px; font-weight: 600;}