/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

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

a:hover {
  color: whitesmoke;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Indie Flower", cursive;
}

p {
  font-family: "Indie Flower", cursive;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f1703a;
  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: #f1703a;
  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: transparent;
}

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

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

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}
#topbar .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 768px) {
  #topbar.logo img {
    width: 90px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s;

  background: rgba(26, 24, 22, 0.85);
}

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

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

#header .logo h1 {
  font-size: 28px;
  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: 40px;
}

@media (max-width: 768px) {
  #header .logo img {
    width: 110px;
    height: 30px;
    padding-top: 0;
    position: relative;
  }
  #header i span {
    color: #fff;
    font-style: normal;
    padding-left: 5px;
    margin-right: 10px;
  }
}

#header i {
  color: white;
  line-height: 0;
}

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

#header i span a {
  color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
  height: 350px;
  background: rgba(237, 236, 234, 0.91);
  z-index: 966;
}

#clients .clients-transparent {
  background: transparent;
}

.clients img {
  max-width: 10rem;
  max-height: 10rem;
  transition: all 0.4s ease-in-out;
  display: inline-block;

  margin-top: 50px;
  margin-bottom: 50px;

  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 80%;
    margin-left: 18px;
    margin-bottom: 25px;
  }
  .clients .section-title h2 {
    font-size: 28px;
  }
  .clients .section-title {
    padding-bottom: 5px;
  }
  .clients {
    height: 250px;
    padding-top: 10px;
  }
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #f97139;
  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-mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

/*--------------------------------------------------------------
# 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;
  background-position: center;
  background-repeat: no-repeat;
}

#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: #f1703a;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

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

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

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

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

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

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

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

.about .content p {
  font-size: 25px;
  color: #848484;
  text-align: justify;
  line-height: 30px;
  font-family: "PT Sans Narrow", sans-serif;
}

.about .section-image img {
  height: 100%;
  width: 100%;
}

@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;
  }
}
@media (max-width: 764px) {
  .about .content p {
    font-size: 18px;
    line-height: 1.6;
  }
}
@-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;
  }
}

/*--------------------
    Tabs
--------------------*/
.nav-tabs .nav__link {
  display: block;
  padding-bottom: 3px;
  margin-right: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #5f5950;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  font-family: "Indie Flower", cursive;
}

.nav-tabs .nav__link:last-of-type {
  margin-right: 0;
}

.nav-tabs .nav__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 2px;
  background-color: #f1703a;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.nav-tabs .nav__link.active,
.nav-tabs .nav__link:hover {
  color: #f1703a;
}

.nav-tabs .nav__link.active:after,
.nav-tabs .nav__link:hover:after {
  width: 100%;
}

.tab-content {
  padding-top: 35px;
}

/* Mobile Phones and tablets */
@media only screen and (min-width: 320px) and (max-width: 575px) {
  .nav-tabs .nav__link {
    margin-right: 15px;
    font-weight: 300;
    font-size: medium;
    font-family: "Indie Flower", cursive;
    color: #5f5950;
  }
}

/*-----------------------
     Menu
----------------------*/
.menu-item {
  margin-top: 30px;
  overflow: hidden;

  justify-content: space-between;
  position: relative;
  position: relative;
  margin-bottom: 20px;
}

.menu-item .menu__item-title {
  padding-right: 10px;
  background: #fff;
  z-index: 3;
  font-size: 20px;
  margin-bottom: 7px;
  color: #f1703a;
  font-family: "PT Sans Narrow", sans-serif;
}

.menu-item .menu__item-price {
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 18px;
  color: #f1703a;
  line-height: 1;
}

.menu-item .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.menu-item .menu-content p {
  font-size: 18px;
  color: #f1703a;
  line-height: 1;
  font-family: "PT Sans Narrow", sans-serif;
}
.menu-item .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 50px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .menu-item .menu-content span {
    padding: 0;
  }
  .menu-item .menu-content p {
    font-size: 14px;
    color: #f1703a;
    line-height: 1;
  }
  .menu-item .menu__item-price {
    font-size: 14px;
  }
  .menu-item .menu__item-title {
    font-size: 16px;
  }
}

.menu-item ul {
  font-style: italic;
  color: #f1703a;
  line-height: 0.7;
  padding: 0;
  margin-left: 25px;
}

.menu-item .menu__item-desc {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 0;
  font-style: italic;
  font-family: "Comic Neue", sans-serif;
  color: #948c81;
}
.menu-item .menu__item-desc span {
  padding-left: 10px;
}

.menu-item .pricing__tag {
  display: inline-block;
  position: relative;
  background-color: #f1703a;
  color: #ffffff;
  font-size: 12px;
  line-height: 25px;
  padding: 0 10px;
  border-radius: 3px;
}

.menu-item .menu__item-img {
  margin-bottom: 28px;
}

.menu__block-title {
  font-family: "Indie Flower", cursive;
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.menu-layout1 .menu-item {
  padding-bottom: 11px;
  border-bottom: 1px dashed #dbdbdb;
  margin-bottom: 20px;
}

.menu-layout1 .menu-item .menu__item-title {
  display: inline-block;
  margin-right: 10px;
}

.menu-layout1 .menu-item .menu__item-price {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  min-width: 50px;
  text-align: right;
}
.menu-wrapper {
  position: relative;
  background-color: #ffffff;
  padding: 0px 50px 0px;
  border-radius: 2px;
  border: 1px solid #f1703a;
  margin-bottom: 30px;
}

.menu-wrapper:before {
  content: "";
  position: absolute;
  top: -4px;
  right: 2px;
  bottom: 0;
  left: 2px;
  height: calc(100% + 8px);
  display: block;
  border-radius: 2px;
  border: 1px solid #f1703a;
}

.menu-container {
  background-color: #ffffff;
  padding: 20px 20px 10px;
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/

.events {
  background: url(../img/image-6.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: white;
}

.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: #f1703a;
}

.events .event-item img {
  height: 100%;
  width: 100%;
  opacity: 1;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .events .swiper-pagination {
    margin-top: 40px;
  }
}
.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: #f1703a;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

@media (max-width: 768px) {
  .contact .info-wrap {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 500px;
  }
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #f1703a;
  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: 400;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}

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

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

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

.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 button[type="submit"] {
  background: #ffb03b;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

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

@-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 {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

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

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
f #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: #f1703a;
}

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

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