

/*--------------------------------------------------------------

# General

--------------------------------------------------------------*/

body {

  font-family: "Poppins", sans-serif;

  color: #444444;

}



a {

  text-decoration: none;

  color: #A8FF00;

}



a:hover {

  color: #B8D100;

  text-decoration: none;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: "Satisfy", sans-serif;

}



/*--------------------------------------------------------------

# Back to top button

--------------------------------------------------------------*/

.back-to-top {

  position: fixed;

  visibility: hidden;

  opacity: 0;

  right: 15px;

  bottom: 15px;

  z-index: 996;

  background: #B8D100;

  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: #AAC811;

  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: #AAC811;

  line-height: 0;

}



#topbar i span {

  color: #fff;

  font-style: normal;

  padding-left: 5px;

}



/*--------------------------------------------------------------

# Header

--------------------------------------------------------------*/

#header {

  top: 50px;

  height: 90px;

  z-index: 997;

  transition: all 0.5s;

  padding: 10px 0;

  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;

}







/*--------------------------------------------------------------

# 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 0 10px 24px;

  font-size: 15px;

  font-weight: 500;

  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 {

  color: #1CA000;

}



.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: #1CA000;

}



.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: #1CA000;

}



.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: #1CA000;

}



.navbar-mobile .dropdown>.dropdown-active {

  display: block;

}



/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

#hero {

  width: 100%;

  height: 20vh;

  background-color: rgba(39, 37, 34, 0.8);

  overflow: hidden;

  padding: 0;

}



#hero .carousel-item {

  width: 100%;

  height: 20vh;

  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: #1CA000;

}



#hero p {

  width: 80%;

  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;

  list-style-type: none;

	opacity: 0; 

	

}

#hero .carousel-indicators ol {

  cursor: pointer;

  list-style-type: none;

	 opacity: 0;

	

}



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

  animation-delay: 0.8s;

  color: #fff;

  border: 2px solid #1CA000;

}



#hero .btn-menu:hover,

#hero .btn-book:hover {

  background: #1CA000;

  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: 60px 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: #1CA000;

}



.section-title p {

  margin: 15px auto 0 auto;

  font-weight: 300;

}



@media (min-width: 1024px) {

  .section-title p {

    width: 50%;

  }

}





/*--------------------------------------------------------------

# 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 #1CA000;

  border-radius: 50px;

}



.menu #menu-flters li:hover,

.menu #menu-flters li.filter-active {

  color: #fff;

  background: #1CA000;

}



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

	font-family: "Barlow Condensed", sans-serif;

	font-weight: 400;

	font-style: normal;

	font-size: 24px;



}



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

	opacity: 0.1;

}



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

}





/*--------------------------------------------------------------

# Footer

--------------------------------------------------------------*/

#footer {

  background: #35322d;

  color: #fff;

  font-size: 14px;

  text-align: center;

  padding: 30px 0;

}



#footer h3 {

  font-size: 36px;

  font-weight: 700;

  color: #1CA000;

  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: #1CA000;

}



#footer .copyright {

  margin: 0 0 5px 0;

}



#footer .credits {

  font-size: 13px;

}



