@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #ffb03b;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satisfy", sans-serif;
}

@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb03b;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background:rgb(13 10 8);
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #ffb03b;
  line-height: 0;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  top: 50px;
  z-index: 997;
  transition: all 0.5s;
  padding:5px 0;
  background:rgba(26, 24, 22, 0.85);
}

/*#header.header-transparent {
  background: transparent;
}*/

#header.header-scrol {
  top: 0;
  background: rgba(26, 24, 22, 0.85);
}

#header .logo h1 {
  font-size:50px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height:85px;
  width: auto;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  /*background: #ffb03b;*/
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.book-a-table-btn:hover {
  /*background: #ffa012;*/
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:10px;
  font-size: 16px;
  font-weight: 400;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a, .navbar li.current-menu-item a{
  color: #ffb03b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  background-position: center  !important;
  background-repeat: no-repeat  !important;
}

/*#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}*/

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

/*#hero .carousel-content {
  text-align: center;
}*/

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  color: #ffb03b;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
      line-height: 30px;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #ffb03b;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #ffb03b;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
    margin: 0;
    padding:0 0 30px 0;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

.bdtrh1{
  display:block;
  padding: 0;
  margin: 0 0 0 40px;
}
.bdtrh1 li{
    display: inline-block;
    padding: 0;
    margin: 0;
}
.bdtrh1 li a{
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 22px;
  padding: 10px 20px;
  margin: 0 0 0 0;
  background: #ffb03b;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
}
.bdtrh1 li a:hover{
  background: #ffa012;
  color: #fff;
}
.bdtrh1 li .carts{
  background: #eee;
  color: #000;
  border-radius: 20px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding:70px 0 50px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 50px;
  font-weight: 700;
  color: #5f5950;
}

.section-title h2 span {
  color: #ffb03b;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/



.about {
  background: #fffaf3;
  padding:80px 0 150px 0;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333333;
}



.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
    font-size: 16px;
    color: #848484;
    line-height: 28px;
    font-weight: 300;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li+li {
  margin-top: 15px;
}

.about .content ul li {
  position: relative;
  padding-left: 26px;
}

.about .content ul i {
  font-size: 20px;
  color: #ffb03b;
  position: absolute;
  left: 0;
  top: 2px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffb03b 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #ffb03b;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .about .content,
  .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }

  .about .accordion-list {
    padding-bottom: 30px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Whu Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #6c665c;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #ffb03b;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #ffb03b;
  border-radius: 50px;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: #fff;
  background: #ffb03b;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................""....................................................................""....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #ff9b08;
}

.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: "Comic Neue", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #ffb03b;
}

.specials .nav-link.active {
  color: #ffb03b;
  border-color: #ffb03b;
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}

.specials .details p {
  color: #777777;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: #fff;
    background: #ffb03b;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../images/events-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
  font-size:50px;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #ffb03b;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #ffb03b;
}
.events .event-item .price p{
	display: inline-block;
}

.event_info p:first-child{
	font-style: italic;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding:0 0px 10px 30px;
  position: relative;
}

.events .event-item ul li::after{
	position: absolute;
	left: 0;
	top: 0;
	content: "\f26b";
	display: inline-block;
	font-family: bootstrap-icons !important;
	font-style: normal;
	font-size: 20px;
	padding-right: 4px;
	color: #ffb03b;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ffb03b;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb03b;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type=submit] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
}

.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("../images/chefs-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}

.chefs .container {
  position: relative;
  z-index: 10;
}

.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.chefs .member .pic {
  overflow: hidden;
}

.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #ffcf88;
  bottom: 0;
  left: calc(50% - 25px);
}

.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  margin-top: 15px;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}

.chefs .member .social a:hover {
  color: #ffb03b;
}

.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}

@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding:60px 0 45px 0;
  background: url("../images/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
	text-align: center;
	color: #fff;
	width: 60%;
	margin: 0 auto;	
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
  font-family: "Comic Neue", sans-serif;
}

.testimonials .testimonial-item .stars {
  color: #ffb03b;
  margin-bottom: 10px;
}

.testimonials .testimonial-item .bi-star-fill{
	color: #ccc;
} 
.testimonials .testimonial-item .bi-star-fill.checked{
	color: #ffb03b;
} 

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
	color: #eee;
	display: inline;

}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffb03b;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width:80%;
  margin:0 auto;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ffb03b;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff6e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 18px;
  color: #7a7368;
}

.contact .info:hover i {
  background: #ffb03b;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
  width:90%;
  margin:0 auto;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form input[type=submit] {
  background: #ffb03b;
  border: 0;
  padding: 10px 25px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  width: auto;
  margin: 0 auto;
}

.contact .php-email-form input[type=submit]:hover {
  background: #ffa012;
}

.map iframe{
  height: 400px;
}
.map p{
  margin:0 0 0 0;
  padding: 0 0 0 0;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffb03b;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffb03b;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}


.nobox{
  padding: 0;
  margin:0;
  position: relative;
}
.nobox .fontbox{
  max-width: 100%;
  position: relative;
  z-index: 9;
  top:70px;
}
.nobox .fontbox2{
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.btn-menu1{
  font-size: 18px;
  background: #000;
  padding: 8px 30px;
  border-radius: 100px;
  margin: 5px 0 0 0;
  display: inline-block;
}

.menuboxc{
  background:#16191e;
  padding: 0 0;
  margin: 0;
}
.backt{
  background:url(../img/img_03.jpg);
  background-repeat:no-repeat;
  background-size:cover;
  min-height:600px;
  padding: 0;
  margin: 0;
}

.bocnd{
  padding:30px;
}

.single_menu_list {
    position: relative;
    padding-left:120px;
    margin-bottom:15px;
}
.single_menu_list img {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 0px;
    top: 0;
    border: 1px solid #ddd;
    padding: 3px;
    border-radius: 0%;
    transition: .4s;
    object-fit: cover;
}
.single_menu_list h4 {
    font-size:20px;
    border-bottom: 1px dashed #333;
    padding-bottom: 15px;
    margin-bottom: 10px;
    color:#fff;
    font-family: 'BenchNine', sans-serif;
    text-transform:uppercase;
    display: flex;
	justify-content: space-between;
	align-items: center;
}
.single_menu_list p {
  padding: 0;
  font-size: 14px;
  color: #fff;
  font-weight: 300;
  margin:0 0 10px 0;
}
.single_menu_list h4 span {
    /*float: right;*/
    font-weight: bold;
    color: #FF5E18;
    font-style: italic;
    font-size: 24px;
    /*width:55px;*/
}
.beansbox h2{
  color:#999966;
  font-size:50px;
  padding: 0;
  margin: 0;
}
.beansbox h4{
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  padding:0 0 20px 0;
}
.salads1 h4{
  color:#ff5e18;
  padding:20px 0 0 0;
  font-size:25px;
}
.single_menu_list a{
  font-size: 14px;
  color: #ffffff;
  line-height: 16px;
  background:#ff5e18;
  padding:8px 13px;
  border-radius: 4px;
  transition: all 500ms ease-in-out;
  float: right;
  margin-left: 8px;
}
.single_menu_list a:hover{
  background:#362a25;
  color:#fff;
}

/********************* shopping Demo-1 **********************/
.dect{
  padding:0 100px;
}


.product-grid{
      font-family: Raleway,sans-serif;
    text-align: center;
    padding: 0 0 72px;
    /* overflow: hidden; */
    position: relative;
    z-index: 1;
    margin: 0 0 50px 0;
}
.product-grid .product-image{position:relative;transition:all .3s ease 0s}
.product-grid .product-image a{
      display: block;
}
.social .add-to-cart, .social .add_to_cart_button, .social .added_to_cart{
  font-size: 14px;
  padding: 8px 15px;
  background:#FF5E18;
  color: #fff;
  text-transform: uppercase;
  border-radius: 100px;
  width:160px;
}
.social .added_to_cart{
  margin-top: 15px;
}
.social .add_to_cart_button:hover{
  background:#FF5E18;
}
.product-grid .product-image img{
  width:100%;height:380px; object-fit: cover;
}
.product-grid .pic-1{opacity:1;transition:all .3s ease-out 0s}
.product-grid:hover .pic-1{opacity:1}
.product-grid .pic-2{opacity:0;position:absolute;top:0;left:0;transition:all .3s ease-out 0s}
.product-grid:hover .pic-2{opacity:1}
.product-grid .social{width:150px;padding:0;margin:0;list-style:none;opacity:0;transform:translateY(-50%) translateX(-50%);position:absolute;top:60%;left:50%;z-index:1;transition:all .3s ease 0s}
.product-grid:hover .social{opacity:1;top:50%}
.product-grid .social li{display:inline-block}
.product-grid .social li a{color:#fff;background-color:#333;font-size:16px;line-height:40px;text-align:center;height:40px;width:40px;margin:0 2px;display:block;position:relative;transition:all .3s ease-in-out}
.product-grid .social li a:hover{color:#fff;background-color:#ef5777}
.product-grid .social li a:after,.product-grid .social li a:before{content:attr(data-tip);color:#fff;background-color:#000;font-size:12px;letter-spacing:1px;line-height:20px;padding:1px 5px;white-space:nowrap;opacity:0;transform:translateX(-50%);position:absolute;left:50%;top:-30px}
.product-grid .social li a:after{content:'';height:15px;width:15px;border-radius:0;transform:translateX(-50%) rotate(45deg);top:-20px;z-index:-1}
.product-grid .social li a:hover:after,.product-grid .social li a:hover:before{opacity:1}
.product-grid .product-discount-label,.product-grid .product-new-label{color:#fff;background-color:#ef5777;font-size:12px;text-transform:uppercase;padding:2px 7px;display:block;position:absolute;top:10px;left:0}
.product-grid .product-discount-label{background-color:#333;left:auto;right:0}
.product-grid .rating{color:#FFD200;font-size:12px;padding:12px 0 0;margin:0;list-style:none;position:relative;z-index:-1}
.product-grid .rating li.disable{color:rgba(0,0,0,.2)}
.product-grid .product-content{
  background-color:#fff;text-align:center;padding:12px 10px;
  margin:0 auto;position:absolute;left:0;right:0;bottom:-12px;z-index:1;transition:all .3s;


-webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.15);
box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.15);


}
.product-grid:hover .product-content{bottom:0}
.product-grid .title{
  font-size:18px;font-weight:400;
  text-transform:capitalize;margin:0 0 10px;transition:all .3s ease 0s;
    font-family: "Poppins", Helvetica, Arial, sans-serif;
    color:#FF5E18;

}
.product-grid .title a{color:#828282;

    font-family: "Poppins", Helvetica, Arial, sans-serif;
}

.product-grid .price, .price bdi{
  color:#FF5E18;
  font-size:30px;
  font-weight:700;
  margin-bottom:8px;
  text-align:center;
  transition:all .3s;
  font-family: 'Lobster', cursive;
}
.product-grid .price span.woocommerce-Price-currencySymbol{
	color:#FF5E18;
  	font-size:30px;
  	font-weight:700;
}
.product-grid .price span{color:#999;font-size:13px;font-weight:400;/*text-decoration:line-through;*/margin-left:3px;display:inline-block}
/*.product-grid .add-to-cart{color:#000;font-size:13px;font-weight:600}*/

.bt{
  background:#FF5E18;
  color:#fff;
}

.shopbox{
  padding:90px 0;
}
.nget1 h2{
      color: #999966;
    font-size: 50px;
    padding: 0;
    margin: 0;
}
.nget1 h3{
font-family: "Poppins", Helvetica, Arial, sans-serif;
    font-size: 32px;
    line-height: 53px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333333;
    padding: 0 0 20px 0;
}

.footerbox{
/*  background:  linear-gradient(to right, rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), 
  url('../img/footer-bg.jpg');
*/  
  background:#010610;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding:80px 0;
  margin: 0;
}
.footertext .wp-block-image{
  max-width: 70%;
}
.footertext h2{
    font-size: 35px;
    color: #fff;
    line-height: 40px;
    padding: 0 0 15px 0;
    margin: 0;
}
.footertext h2 img{
    max-width: 250px;
}
.footertext ul{
  padding: 0;
  margin: 0;
}
.footertext ul li{
  display:block;
  font-size:16px;
  line-height:26px;
  color:#c3c3c3;
  padding:10px 0;
  margin: 0;
  position: relative;
}
.footertext.flist ul li{
  padding:10px 0 10px 25px;
  position: relative;
}
.footertext.flist ul li::after{
  font-size: 12px;
  content: "\f111";
  color: #ca7a03;
  position: absolute;
  left: 0;
  top: 10px;
  font-family: "FontAwesome";
}
.footertext p{
  font-size:16px;
  line-height:26px;
  color:#c3c3c3;
}


.footertext ul li span{ 
  font-size:12px; 
  padding:0 10px 0 0;
  color: #ca7a03;
}
.footertext ul li .mtr1{
  padding:0 10px 0 0;
  font-size:20px;
}
.footertext ul li a{
  color:#c3c3c3;
}

.men1{
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.footertext .men1 li{
    display: flex;
    align-items: center;
    padding: 0 25px 0 0;
    margin: 0;
}
.footertext .men1 li a{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    color:#000;
    font-size:22px;
}
.footertext .men1 li a .fa{
  text-align: center;
  margin:0 auto;
}

.bottomfooter{
  background:#080c14;
  padding:20px 0;
}
.bottomfooter p{
  font-size:16px;
  color:#fff;
  padding: 0;
  margin: 0;
}


.aboutus{
  background: linear-gradient(to right, rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img/abouts/1.png);
  background-repeat:no-repeat !important;
  background-size:cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  padding:180px 0 90px 0;
  margin: 0;
  position: relative;
}
.deat1 h1{
  font-size:55px;
  color:#fff;
  line-height:50px;
  padding: 0;
  margin: 25px 0 0 0;
}
.deat1 img{
	width: 370px;
	object-fit: contain;
	padding: 0;
	margin: 0;
	height: 200px;
}
.site_info{
	max-width:600px;
	margin: 0 auto;
}
.site_info p{
	font: 400 20px/26px "Poppins", sans-serif;
	color: #fff;
	margin-bottom:12px; 
}
.next-section{
    background: #ffffff;
    position: absolute;
    bottom: -55px;
    left: 0;
    border-radius: 8px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg); 
    display: flex;
    align-items: center;
    right: 0;
    z-index: 9;
}
.next-section .go-to-next {
    display: flex;
    font-size: 1.5em;
    padding-right: 45px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    align-items: center;
    margin: 0 auto;
    padding: 0;
}

.aboutsboxcv{
  padding:90px 0;
}
.arebeat h2{
    font-size: 50px;
    color: #2c2929;
    line-height: 60px;
    text-transform: uppercase;
    margin: 0 0 45px 0;
    padding:10px 10px;
    position: relative;
    background:#fff;
    display: inline-block;

}
.arebeat{
  position: relative;
}
.arebeat:after{
  position: absolute;
  content: "";
  right: 0;
  top: 38px;
  width:80%;
  height: 2px;
  border-top: 3px solid #800000;
  z-index: -1;
  left: 0;
  margin:0 auto;
}
.imgbocb{
  padding: 0;
  margin: 0;
}
.imgbocb img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.boxtext{
  padding: 0;
  margin: 0;
}
.boxtext p{
    font-size: 16px;
    color: #848484;
    line-height:28px;
    font-weight: 300;
    padding: 0 0 20px 0;
    margin: 0;
}
.triagel { padding:0 0 50px 0; }

.ter1{
text-align: center;
    margin: 0 0 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 31px 0px rgb(0 0 0 / 13%);
    -moz-box-shadow: 0px 0px 31px 0px rgba(0,0,0,0.13);
    box-shadow: 0px 0px 31px 0px rgb(0 0 0 / 13%);
    min-height: 425px;
}
.ter1 h3{
  font-size:28px;
  padding:0 0 15px 0;
}
.ter1 p{
  font-size:16px;
  line-height:28px;
  color:#848484;
  font-weight: 300;
  padding:0 0 0 0;
  margin: 0;
}

.hex {
  position: relative;
  width:120px;
  height:120px;
  border-radius: 5px;
  margin:0 auto;
  background: #fcb322;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: flex;
  align-items: center;
  margin-bottom:30px;
}

.hex-icon {
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 50px;
  text-align: center;
  width: 100%;
  z-index: 1;
  -webkit-transition: color .25s;
  -moz-transition: color .25s;
  -ms-transition: color .25s;
  -o-transition: color .25s;
  transition: color .25s;
}

.webox{
  padding:60px 0;
  margin: 0;

}
.wetext{
  padding: 0;
  margin: 0;
  text-align: center;
}
.wetext h3{
  font-size:45px;
  color: #2c2929;
  line-height: 60px;
  text-transform: uppercase;
  margin: 0 0 0 0;
  padding:0 0 15px 0;
  position: relative;
  background: #fff;
  display:block;
}
.events1{
  padding: 0;
  margin: 0;
  display: inline-block;
  border:2px solid #800000;
}
.events1 li{
  display: inline-block;
  color:#000;
  font-size:20px;
  text-transform: uppercase;
  padding:13px 35px;
  margin: 0;
}
.events1 li.active{
  background:#800000;
  color:#fff;

}
.happyhours {
  padding:0 0 50px 0;
}
.happyhours .happbox{
    background: 
    url(../img/abouts/5.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-position:center;
    padding:90px 0;
    margin: 0;
    position: relative;
}
.happyhours .happbox h3{
  font-size: 28px;
  padding: 0 0 15px 0;
  font-family: 'BenchNine', sans-serif;
  color:#2f1a1a;
}
.happyhours .happbox h4{
  font-size:40px;
  padding:0 0 15px 0;
  color:#800000;
  font-weight: 600;
  
}

.mine_menu_box{
  background: linear-gradient(rgb(0 0 255 / 45%), rgb(255 255 0 / 33%)),
  url(../img/menu/back1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding:90px 0;
  margin: 0;
}





.menu_text_box{
  text-align: center;
  padding:0;
  margin: 0 0 35px 0;
}

.noscibox{
    background:rgb(255 255 255 / 79%);
    padding: 15px;
    text-align: center;
    min-height:320px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    transition:all 500ms ease-in-out;
}
.menu_text_box:hover .noscibox{
  background:#e5d300;
}

.noscibox h3{
    font-size: 24px;
    color:#250e0e;
    line-height: 22px;
    padding: 0 0 10px 0;
    margin: 0;
    font-weight: 600;
}
.noscibox h3 span{
      color: #ffeb00;
}
.twer1 b{ 
  text-align: center; 
  margin:0 auto; 

}
.menu_text_box p{
    font-size: 16px;
    color: #444;
    line-height: 26px;
    padding: 0 0 7px 0;
    margin: 0;
}
.noscibox p{
  font-size:14px;
  color:#0c0707;
  line-height:20px;
  padding: 0 0 7px 0;
  margin: 0;
}

.vimgbox{
  position: relative;
  margin: 0 0 -92px 0;
}
.twer1{
  position: absolute;
  bottom: -24px;
  right: 0;
  width:180px;
  height: 48px;
  border-radius: 100px;
  background:#3f1c1be6;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  color: #fff;
  left: 0;
  font-family: 'Roboto', sans-serif;

}
.menu_text_box img{
  width: 90%;
  height: 160px;
  border-radius: 50px;
  box-sizing: border-box;
  object-fit: cover;
}
.menu_text_box .t123{
  height:230px;
}

.trf1{
  padding-top:122px;
  margin:0 auto;
}
.menu_text_box .f2menu{
  height:130px;
  object-fit: cover;
  margin:0 0 10px 0;
}
.menuimg img{
  width:100%;
  object-fit:cover;
}



/*-------tabs-css------*/
    ul.tabs{
      margin:0px auto; 
      padding: 0px;
      list-style: none;
      text-align: center;
      position: relative;
      z-index:9;
      width:80%;
    }
    ul.tabs li{
      background:#03384b;
      color:#fff;
      display: inline-block;
      padding: 10px 15px;
      cursor: pointer;
      font-size: 20px;
      font-weight: 500;
      border-radius:5px;
      line-height: 22px;
      margin:5px 2px;
    }
    ul.tabs li.current{
      background: #FF5E18;
      color: #fff;
    }
    .tab-content{
      display: none;
      padding: 15px;
      width:80%;
      margin:0 auto;
    }
    .tab-content.current{
      display: inherit;
    }
    /*ul.tabs li.Uncategorized, .tab-content.Uncategorized-text, ul.tabs li.catering, .tab-content.catering-text{
      display: none;
    }*/

  .bacv123{
    background:#fcfcfc;
  /*  background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;*/
    padding:90px 0;
    margin: 0;
    position: relative;
  }

  .bacv123:before{
    content: '';
    display: block;
    position: absolute;
    width: 270px;
    height: 100%;
    background:url(../images/l1.png);
    background-size: contain;
    background-repeat:repeat-y;
    top: 0;
    left: 0;
  }

.bacv123:after{
  content: '';
  display: block;
  position: absolute;
  width: 270px;
  height: 100%;
  background: url(../images/r1.png);
  background-size: contain;
  background-repeat:repeat-y;
  top: 0;
  right:0;
  left: unset;
}

.bacv123 .single_menu_list img { border: 1px solid #ff5e18;}
.bacv123 .single_menu_list h4 { color: #ff4d00; width:100%;}
.bacv123 .single_menu_list p { color: #000; font-weight: 400;}

/*-------tabs-css------*/


/*----------new-csss------*/
.acc-head {
  background-color:#763702;
  padding:13px 20px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  border-bottom: 2px solid #ffc18d;
 }
.acc-head h4{
  font-size:22px;
  color:#fff;
  line-height:22px;
  font-weight:500;
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.salad{
  padding: 0;
  margin: 0;
}
.salad h5{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    padding: 0 0 12px 18px;
    color:#f58120;
    font-family: "Poppins", sans-serif;
    position: relative;
}
.salad h5:after{
  content:"";
  position: absolute;
  top:7px;
  left: 0;
  width:10px;
  height:10px;
  border-radius:100px;
  background:#f58120;
}


.salad h5 span{
  color: #f58120;
  font-size:22px;
  line-height: 20px;
}
.salad p{
  font-size:16px;
  padding: 0 0 12px 0;
  margin: 0 0 0px 0;
}
.salad p span{ 
  color: #f58120;
  font-size:22px;
  line-height: 20px;
 }
.th1{
    color: #f58120;
  font-size:22px;
  line-height: 20px;
}

 .acc-head::before,
 .acc-head::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: #fff;
  transition: all .3s;
 }
 .acc-head::before {
  right: 30px;
  width: 3px;
  height: 20px;
  margin-top: -10px;
}
.acc-head::after {
  right: 21px;
  width: 20px;
  height: 3px;
  margin-top: -2px;
}
.acc-head p {
  color: #fff;
  font-weight: bold;
}
.acc-content {
    padding: 20px 20px 15px 20px;
    display: none;
    background: #ffffffe0;
    margin: -2px 0 20px 0;
    border-radius: 0 0px 5px 5px;
}
.acc-head.active::before {
    transform: rotate(90deg);
}


.goubox{
  padding: 0;
  margin: 0;
  position:relative;
}
.goubox h6{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  padding: 12px 0;
  background: #f06a2dd4;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.goubox img{
  width:100%;
  height:150px;
  object-fit: cover;
  padding: 0;
  margin:0;
}
.get1 img{
  height:245px;
}
.get2 img{
  height:350px;
}


/*.section-title {
    background: #ffffff;
    color: #800000;
    font-family: "Pathway Gothic One";
    font-size: 2.5em;
    font-weight: 700;
    text-transform: inherit;
    padding: 0 10px;

    letter-spacing: 2px;
    text-align: center;
}*/
.wpcf7-form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    min-height: 50px;
    margin: 0 0 20px 0;
    border: 1px solid #e6e6e6;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
/*.contact-form-elements .wpcf7-form-control.wpcf7-submit {
    position: absolute;
    border: none;
    right: 40px;
    bottom: -50px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    background-color: #fcb322;
    color: #ffffff;
}*/

.fgth{
  background:#ffeb00;
  color:#000;
  font-size:20px;
}
.rtg{
  background: #ffffff;
    color: #800000;
    font-family: "Pathway Gothic One";
    font-size: 2.5em;
    font-weight: 700;
    text-transform: inherit;
    padding: 0 10px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.footerbox section{
  padding: 0 0 0 0;
}

.doordash{
	padding:0;
	margin:0;
}
.doordash li{
	display:inline-block;
	padding:0;
	margin:0;
}
.doordash li img{
	width:185px;
	object-fit:cover;
}
.modal.show .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width:100%;
}
.modal-dialog {margin: 0; max-width: 600px;}
.modal-title {
    font-size: 32px;
    padding: 0;
    margin: 0;
    line-height: 32px;
	    font-family: "Poppins", sans-serif;
	    color: #03384b;
}
.location_page{
	position:relative;
	padding-bottom:0;
}
.location_page:before{
    content: '';
    display: block;
    position: absolute;
    width: 270px;
    height: 100%;
    background: url(../images/l1.png);
    background-size: contain;
    background-repeat: repeat-y;
    top: 0;
    left: 0;
}
.location_page:after{
	content: '';
	display: block;
	position: absolute;
	width: 270px;
	height: 100%;
	background: url(../images/r1.png);
	background-size: contain;
	background-repeat: repeat-y;
	top: 0;
	right: 0;
	left: unset;
}


.location_page h1{
    font-size: 50px;
    color: #2c2929;
    line-height: 60px;
    text-transform: uppercase;
    margin: 0 0 45px 0;
    padding: 10px 10px;
    position: relative;
    background: #fff;
    display: inline-block;
}
.arebeat{
	position:relative;
	text-align:center;
}
.arebeat:after {
    position: absolute;
    content: "";
    right: 0;
    top: 38px;
    width: 80%;
    height: 2px;
    border-top: 3px solid #800000;
    z-index: -1;
    left: 0;
    margin: 0 auto;
}
.tab-content h3{
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 0 18px 0;
    margin: 0;
	color: #03384b;
}
.tab-content h5{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 26px;
	margin: 0;
}
.dinebox{
    -webkit-box-shadow: 0px 0px 21px -5px rgba(0,0,0,0.13);
    -moz-box-shadow: 0px 0px 21px -5px rgba(0,0,0,0.13);
    box-shadow: 0px 0px 21px -5px rgba(0,0,0,0.13);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    min-height: 160px;
}
.dinebox div{
	text-align:center;
	margin:0 auto;
}
.emder1{
	width:100%;
	height:450px;
	position: relative;
	z-index: 9;
}
.dertg{     padding-bottom: 35px;
    width: 100%;
    margin: 0px 0 35px 0;
}
.dertg td, th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.dertg tr:nth-child(even) {
  background-color: #dddddd;
}
.chaat123 {
	font-size: 22px !important;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 0 30px 0;
  margin: 0;
}
.woocommerce-page .next-section, .entry-title{
  display: none;
}
.woocommerce-shop .woocommerce-LoopProduct-link, .product-name a{
  pointer-events: none;
}

/*==woocommerce==*/
.cart_page{
  padding: 70px 0;
}
.woocommerce table.cart img.attachment-woocommerce_thumbnail{
  width: 100px !important;
}
.woocommerce .checkout-button.button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .cart .button, .woocommerce .cart input.button, .woocommerce #payment #place_order,
.woocommerce-page #payment #place_order{
  background-color: #ffb03b;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.woocommerce .checkout-button.button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce .cart .button:hover, .woocommerce .cart input.button:hover,
.woocommerce #payment #place_order:hover, .woocommerce-page #payment #place_order:hover{
  background-color: #ffa012;
  color: #fff;
}
.coupon #coupon_code{
  width: 150px;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea{
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  min-height: 50px;
  border: 1px solid #e6e6e6;
}
.woocommerce form .form-row textarea{
  min-height: 150px;
}



#main .woocommerce-breadcrumb{
	display:none;
}
#main .woocommerce-products-header__title{
	display:none;
}
.shop_page{
	padding:50px 0;
}
#main .orderby{
  vertical-align: top;
  font-size: 16px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 10px;
}
#main .woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1em;
  box-shadow: none;
  height: 300px !important;
  object-fit: cover;
}
.form-row-last .wp-element-button{
	padding: 16px 35px !important;
}
.select2-container .select2-selection--single {
	height: 50px;
	margin: 0;
	padding: 10px;
	border: 1px solid #e6e6e6;
	color: #555;
}
#order_review_heading{
	font-size: 30px;
	font-family: "Poppins", sans-serif;
	padding: 10px 0;
}
#post-51 h2{
	font-family: "Poppins", sans-serif;
	padding: 50px 0 7px 0;
	text-align: center;
	text-transform: uppercase;
}
.woocommerce-form{
	width: 60%;
	margin: 0 auto !important;
	margin-bottom: 60px !important;
}
.lost_form{
	padding:50px 0;
}
.lost_form .wp-element-button{
	padding: 16px 26px !important;
}
.comman_page{
	padding:70px 0;
}
.acc_part{
	padding:70px 0;
}
.acc_part ul{
	padding:0;
	margin:0;
}
.acc_part ul li{
	display:block;
	padding:0;
	margin:0;
}
.acc_part ul li a{
    display: block;
    font-size: 16px;
    padding: 7px 10px;
    margin: 0;
    background: #f7f6f7;
    border-bottom: 1px solid #ececec;
}
.woocommerce-order-received .woocommerce-order{
	padding:70px 0;
}
/*========Responsive for mobile view======*/
@media only screen and (max-width: 767px) {

#topbar, #topbar .justify-content-center, #topbar i{
  display: block !important;
  height: auto;
  position: unset;
}
#topbar{
  padding: 10px 0;
}
#topbar i{
  text-align: center;
  padding: 5px 0;
}

#header, #header .justify-content-between{
  position: unset;
  display: block !important;
  height: auto;
}
#header{
  position: relative;
  top: 0;
}
#header .logo {
  display: inline-block;
}
#header .logo img {
  max-height: 85px;
}
.mobile-nav-toggle {
  display: block;
  top: -33px;
  position: absolute;
  right: 0;
}
.bdtrh1 {
  margin: 10px 0 0;
  display: block;
  text-align: center;
}
.about, .shopbox, .chefs, .testimonials, .footerbox{
  padding: 30px 0;
}
.single_menu_list h4 {
  display: block;
}
.single_menu_list img {
  width: 100%;
  height: auto;
  position: unset;
}
.single_menu_list {
  padding-left: 0;
  margin-bottom: 20px;
}
.nget1 h2, .section-title h2, .events .section-title h2{
  font-size: 35px;
}
.nget1 h3 {
  font-size: 22px;
  line-height: 35px;
}
.dect {
  padding: 0 0px;
}
.footertext h2 {
  font-size: 25px;
  line-height: 25px;
  padding: 20px 0 5px 0;
}
.footertext.flist ul li {
  padding: 2px 0 2px 20px;
}
.footertext.flist ul li::after {
  font-size: 9px;
  top: 0;
}
.aboutus, .bacv123{
  padding: 30px 0;
}
.deat1 img {
  width: 75%;
  margin: 0 0 0px 0;
}
.site_info p {
  font: 400 17px/20px "Poppins", sans-serif;
}
.deat1 h1 {
  font-size: 40px;
  line-height: 30px;
  margin: 25px 0 30px 0;
}
.next-section{
  display: none;
}
.arebeat h2 {
  font-size: 30px;
  line-height: 40px;
  margin: 0 0 15px 0;
}
.wetext h3 {
  font-size: 25px;
  line-height: 40px;
  padding: 0 0 15px 0;
}
.events1 li {
  font-size: 15px;
  padding: 10px 20px;
}
.webox {
  padding: 30px 0;
}
.happyhours .happbox {
  padding: 40px 20px;
}
.happyhours .happbox h3 {
  font-size: 20px;
  padding: 0 0 10px 0;
  line-height: 28px;
  margin-bottom: 0 0 0 0;
}

ul.tabs li {
  padding: 5px 12px;
  font-size: 16px;
  line-height: 22px;
  margin: 5px 2px;
}
.bacv123::before, .bacv123::after{
  display: none;
}
.tab-content{
  width: 100%^
}
.bocnd {
  padding: 0;
}
.contact .info p {
  padding: 0 0 0 50px;
  font-size: 15px;
  word-wrap: break-word;
}
.contact .info-wrap{
  padding: 20px;
}
.contact .info h4 {
  padding: 0 0 0 50px;
  font-size: 16px;
}
.product-grid .title {
  font-size: 16px;
}
.product-grid .price, .price bdi, .product-grid .price span.woocommerce-Price-currencySymbol{
  font-size: 20px;
}


}




/*=============Responsive for responsive view=========*/
@media only screen and (min-width: 768px) and (max-width: 992px){
  #topbar{
    height: auto;
    padding: 10px 0;
    display: block !important;
    position: unset;
  }
  #topbar .align-items-center,  #topbar i{
    display: inline-block !important;
  }
  #header {
    position: relative;
    top: 0;
    height: auto;
    padding:10px 0;
    background: rgb(0, 0, 0);
  }
  .dect {
    padding: 0 0 0 0;
  }
  .product-grid .product-image img {
    height: 225px;
  }
  .product-grid .price, .price bdi, .product-grid .price span.woocommerce-Price-currencySymbol{
    font-size: 20px;
  }
  .events .section-title h2, .section-title h2{
    font-size: 35px;
  }
  .footertext h2 {
    font-size: 22px;
    line-height: 30px;
    padding: 0 0 10px 0;
  }
  .footertext ul{
    display: unset;
    column-count: 2
  }
  .footertext.flist ul li{
    font-size: 14px;
    line-height: 20px;
    padding: 6px 0 6px 22px;
  }
  .footertext.flist ul li::after{
    top: 6px;
  }
  .footertext .men1 li {
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
    margin: 0 10px 10px 0;
    display: inline-block;
  }
	.about, .shopbox, .events, .testimonials, .footerbox, .bacv123{
	  padding: 50px 0;
	}
	.beansbox h2 {
	  font-size: 40px;
	}
	.beansbox h4 {
	  font-size: 28px;
	  line-height: 35px;
	}
	.single_menu_list img {
	  width: 75px;
	  height: 75px;
	}
	.single_menu_list {
	  padding-left: 95px;
	}
	.footertext ul li{
		padding: 0 0 15px 0;
	}
	.footertext .men1 li a {
	  width: 35px;
	  height: 35px;
	  font-size: 18px;
	}
	.ter1 h3 {
	  font-size: 19px;
	}
	.webox {
	  padding: 50px 0;
	}
	.wetext h3 {
	  font-size: 35px;
	  line-height: 40px;
	}
	.happyhours .happbox h3 {
	  font-size: 22px;
	  padding: 0 0 10px 0;
	}
	.happyhours .happbox h4{
		font-size: 30px;
	}
	.bacv123::before, .bacv123::after{
		width: 120px;
	}
	ul.tabs li {
	  padding: 5px 15px;
	  font-size: 15px;
	  line-height: 25px;
	}
	.tab-content{
		width: 100%;
	}
	#menuimg{
		width: 100%;
	}

}
.add_to_cart_button, .bdtrh1 li .carts{
	display:none !important;
}





