* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-font: "Manrope", sans-serif;
  --secondary-font: "Bricolage Grotesque", sans-serif;
  --primary-color: #3B5844;
  --secondary-color: #68a050;
  --heading-color: #03200C;
  --silk-color: #b99942;
  --white-color: #fff;
  --background: #F3FDE8;
  --dark-bg: #000000;
  --font-size: 1em;
}
body {
  font-family: var(--primary-font);
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary-color);
  background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--secondary-font);
	font-weight: 700;
	line-height: 1.2em;
	color: var(--heading-color);
}
a{
    text-decoration: none;
    color: var(--primary-color);
}
hr {
	border-top: 0;
	background: var(--secondary-color);
	height: 1px;
}
figure {
	margin: 0;
}
.dark-bg{
	background: var(--dark-bg);
}
.btn {
	border-radius: 3rem;
	color: var(--white-color);
	overflow: hidden;
	padding: 0 50px 0 27px;
	position: relative;
	text-decoration: none;
	transition: all 0.2s;
	z-index: 0;
	background: var(--secondary-color);
	line-height: 45px;
	display: inline-block;
	font-weight: 500;
}
.btn::after {
  background-color: var(--background);
  border-radius: 3rem;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: all 0.2s;
  z-index: -1;
}
.btn:hover::after {
  transform: translate(0, 0);
}
.btn:hover {
  color: var(--heading-color);
}
.btn i {
	background: var(--heading-color);
	width: 35px;
	height: 35px;
	text-align: center;
	padding: 10px;
	border-radius: 50%;
	margin-left: 10px;
	transform: rotate(-40deg);
	font-size: 16px;
	transition: all 0.3s;
	position: absolute;
	right: 5px;
	top: 5px;
}
.btn:hover i{
	transform: rotate(0deg);
    color: var(--background);
	background: var(--secondary-color);
}
.padding100{
  padding: 100px 0;
}
.padding80{
  padding: 80px 0;
}
.padding50{
  padding: 50px 0;
}
.radius30{
  border-radius: 30px;
}
.radius20{
  border-radius: 20px;
}
.border-bottom {
	border-bottom-color: rgba(94,155,47,0.3) !important;
}
/*===================
    Preloader
====================*/
#preloader {
	background: var(--dark-bg);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99999;	
	display: flex;
	justify-content: center;
	align-items: center;
	height:100vh;
	width: 100vw;
}
body.loading {
  overflow: hidden !important;
}
.loader {
	position: relative;
}
.loader::before {
	position: absolute;
	content: '';
	left: -36px;
	width: 130px;
	height: 130px;
	border: 1px solid var(--primary-color);
	border-top: 3px solid var(--secondary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	top: -32px;
}

@keyframes spin {
	to{
		transform: rotate(360deg);
	}
}
/*===================
    Text effect
====================*/
.title-anime {
  overflow: hidden;
}
.char {
  display: inline-block;
}
/*===================
Shine Image
====================*/
.shine-image figure {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.shine-image figure::before {
	position: absolute;
	top: 0;
	left: -88%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.shine-image figure:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/* Popup */
#imgPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-box {
	position: relative;
	max-width: 450px;
	display: flex;
	padding: 20px;
	margin: 0 auto;
	background: var(--background);
	margin-top: 63px;
}
.popup-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.popup-box .close-btn {
	position: absolute;
	top: -12px;
	right: -12px;
	background: var(--primary-color);
	color: var(--white-color);
	font-size: 20px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	text-align: center;
	line-height: 32px;
	cursor: pointer;
	font-weight: bold;
}
#popupCarousel .owl-nav button{
  position: absolute;
  top: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
  line-height: 30px;
}
#popupCarousel .owl-nav button:hover{
  background: var(--secondary-color);
}
#popupCarousel .owl-nav .owl-prev {
  position: absolute;
  left: -17px;
}
#popupCarousel .owl-nav .owl-next {
  position: absolute;
  left: auto;
  right: -17px;
}
#popupCarousel .owl-dots {
	display: none;
}
/*===================
    Header CSS
====================*/
.header {
	background: var(--dark-bg);
	padding: 12px 0;
	border-bottom: 1px solid rgba(104,160,80,0.3);
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
	transition: all 0.4s ease;
	z-index: 9999;
}
.header.sticky {
	background: var(--primary-color);
	padding: 0;
}
.logo {
	width: 220px;
}
.mainmenu {
	display: flex;
}
.mainmenu ul {
	margin: 5px 20px 0 0;
	padding: 0;
}
.mainmenu ul li{
  display: inline-block;
  line-height: 1;
  list-style: none;
  position: relative;
}
.mainmenu ul > li > a {
	display: inline-block;
	padding: 12px 15px;
	font-size: 16px;
	overflow: hidden;
	color: var(--white-color);
	font-weight: 600;
    position: relative;
}
.mainmenu ul > li:hover > a {
	color: var(--secondary-color);
}

.mainmenu ul > li > a::before,
.mainmenu ul > li > a::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease;
}

.mainmenu ul > li > a::after {
  top: 0;
  left: 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}

.mainmenu ul > li > a::before {
  right: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
}

.mainmenu ul > li > a:hover::before,
.mainmenu ul > li > a:hover::after {
  width: 100%;
  height: 100%;
  border-color: var(--secondary-color);
}
/*=== Sub Menu ===*/
.mainmenu ul > li > ul {
	position: absolute;
	top: 100%;
	width: 260px;
	background-color: var(--secondary-color);
	left: 0;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(40px);
	transform: translateY(40px);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 0;
}
.mainmenu ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.mainmenu ul > li > ul > li {
  display: block;
}
.mainmenu ul > li > ul > li:last-child a{
  border-bottom-width: 0px;
}
.mainmenu ul > li > ul > li > a {
	display: block;
	color: var(--white-color);
	padding: 15px;
	font-size: 15px;
	border-bottom: 1px solid #8CC85D;
}
.mainmenu ul > li > ul > li > a:hover {
  color: var(--heading-color);
}
.mainmenu a.btn {
	height: 46px;
}
.openClose {
	margin-top: 2px;
  	margin-left:20px
}
.openClose img {
  width: 45px;
}
/*==================================
 		Mobile Responsive Header
===================================*/
.mobile-header {
	display: none;
}
.mobile-header .p15 {
	padding: 15px;
}
.mobile-header {
	position: sticky;
	box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15);
	z-index: 9999;
	left: 0;
	top: 0;
	background: var(--background);
	transition: all linear .3s;
	-webkit-transition: all linear .3s;
	-moz-transition: all linear .3s;
	-ms-transition: all linear .3s;
	-o-transition: all linear .3s;
}
.mobile-header-humberger {
	background: transparent;
	border-color: transparent;
	height: 30px;
}
.mobile-header-inner {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-content: center;
}
.mobile-header-humberger img {
	height: 20px;
	width: auto;
}
.mobile-logo img {
	width: 130px;
}
.sidebar-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-contact ul {
	margin: 0;
	padding: 0;
}
.mobile-contact ul li {
	float: left;
	width: 35px;
	height: 30px;
	border: 0px solid;
	text-align: center;
	list-style: none;
}
.mobile-contact ul li a {
	font-size: 16px;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 6px;
	padding-top: 2px;
	display: block;
}
.sidebarMenuContainer {
	position: fixed;
	top: 0;
	left: -280px;
	width: 80vw;
	background: var(--white-color);
	z-index: 9999;
	height: 100vh;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	overflow-y: scroll;
}
.sidebarMenuContainer.active{
	opacity: 1;
	visibility: visible;
	left: 0;
}
.side-logo {
	background: var(--dark-bg);
	padding: 10px;
}
.side-logo img {
  width: 150px;
}
.sidebar-navigation h3 {
	background: #f2f2f2;
	font-size: 18px;
	padding: 15px;
	margin-bottom: 0;
}
.sidebar-navigation ul li {
	padding: 7px 15px;
	border-bottom: 1px solid #efefef;
}
.sidebar-navigation ul li a {
	font-size: 15px;
	font-weight: 600;
}
.sidebar-navigation ul li ul li {
	border-bottom: 0px solid;
}
.sidebarMenuContainer .closeMenu {
	position: absolute;
	right: 10px;
	top: 11px;
	width: 35px;
	height: 35px;
	background: var(--primary-color);
	text-align: center;
	color: var(--white-color);
	font-size: 17px;
	line-height: 36px;
	box-shadow: 0 0 6px var(--primary-color);
	border-width: 0;
	border-radius: 7px;
}
/*===================
   Footer CSS
====================*/
.footer-area {
	padding: 100px 0 40px 0;
	color: var(--white-color);
}
.developer-identity {
	text-align: right;
}
.developer-identity {
  text-align: right;
}
.footer-logo-info img {
  width: 230px;
  margin-bottom: 20px;
}
.footer-social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
}
.footer-social {
  margin-bottom: 29px;
}
.footer-social ul li a {
  color: var(--white-color);
  font-size: 16px;
}
.footer-social ul li i {
  border: 1px solid var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 39px;
  transition: all 0.4s;
}
.footer-social ul li i:hover {
  background: var(--white-color);
  color: var(--dark-bg);
}
.footer-phone p, .footer-location p {
  font-size: 17px;
  margin-bottom: 6px;
}
.footer-phone p i, .footer-location p i {
	font-size: 22px;
	color: var(--background);
	margin-right: 7px;
}
.footer-phone h2 {
  font-size: 20px;
  color: var(--white-color);
}
.footer-address {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-phone {
  width: calc(100% - 60px);
}
.footer-link-content h2 {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 14px;
}
.footer-newsletter {
  width: calc(40% - 20px);
}
.footer-link-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-link-content ul li a {
  color: var(--background);
  font-size: 15px;
}
.footer-link-content ul li {
  margin-bottom: 9px;
}
.footer-link-content {
  margin-top: 30px;
}
.opening-hour li {
	font-size: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	margin-bottom: 0 !important;
	display: flex;
	justify-content: space-between;
	padding: 1px 0;
}
.opening-hour li:last-child{
	border-bottom: 0px solid;
}
.opening-hour li.active {
	color: var(--secondary-color);
    font-weight: 600;
}
.opening-hour li span {
  width: 33%;
  text-align: center;
}
.opening-hour li span:first-child {
  text-align: left;
}
.opening-hour li h5 {
	font-size: 16px;
	color: var(--silk-color);
}
.footer-location p:last-child {
	font-size: 15px;
}
.footer-location p:last-child {
  font-size: 15px;
}
.copyright {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 30px;
	margin-top: 30px;
}
.footer-location {
	width: calc(50%);
}
.footer-location a {
	color: var(--white-color);
	font-weight: 500;
}
.footer-phone a {
	color: var(--background);
}
.footer-area hr {
	opacity: 0.2;
	margin-bottom: 30px;
}

.newsletter-form {
  border: 1px solid var(--primary-color);
  padding: 3px;
  border-radius: 5px;
  height: 42px;
}
.newsletter-form input {
  background: transparent;
  border: 0;
  color: var(--background);
  padding: 5px 0 5px 15px;
}
.newsletter-form .form-group {
	display: flex;
	position: relative;
}
.newsletter-form button {
	border: 0;
	width: 35px;
	height: 35px;
	border-radius: 5px;
	background: var(--secondary-color);
	color: var(--white-color);
	position: absolute;
	right: 0;
}
.newsletter-form .form-group:focus-visible {
	outline: none;
}
#scrollTop {
	width: 48px;
	height: 48px;
	text-align: center;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 50%;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index: 999;
}
#scrollTop:hover {
  background: var(--secondary-color);
  cursor: pointer;
}
#scrollTop i {
  padding-top: 14px;
  font-size: 19px;
}
/* Sticky social bar at bottom */
.social-bar {
  position: fixed;  
  bottom: 20px;  
  left: 20px;    
  z-index: 999;  
  display: flex; 
  flex-direction: column; 
  align-items: flex-end;
}
.social-toggle {
  background: var(--secondary-color);  
  color: var(--white-color);
  padding-top: 12px;
  border-radius: 50px;
  cursor: pointer;  
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  text-align: center;
}
.social-icons {
  display: none; /* Hidden by default */
  margin-top: 10px;  
  display: flex;
  flex-direction: column;  
  gap: 10px;
}
.social-icons a {
	background: var(--secondary-color);
	color: var(--white-color);
	width: 48px;
	height: 48px;
	padding-top: 9px;
	border-radius: 50%;
	text-align: center;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 19px;
}
.social-icons a:hover, .social-toggle:hover {
	background: var(--secondary-color);
}
.social-icons .fb {
  background: #4267B2;
}
.social-icons .ins {
  background: linear-gradient(115deg, rgb(249, 206, 52), rgb(238, 42, 123), rgb(98, 40, 215));
}
.social-icons .tk {
  background: #010101;
}
.social-icons .yt {
  background: #FF0033;
}
.social-icons .wa {
  background: linear-gradient(to right, #25d466, #33c758, #4cae4f);
  font-size: 26px;
  padding-top: 3px;
}
/*======================
   Homepage Hero CSS
=======================*/
.hero-area {
	background-image: url('img/thai-recipy.jpg');
	color: var(--white-color);
	position: relative;
	z-index: 1;
	background-size: cover;
	background-position: left center;
}
.hero-area::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: var(--dark-bg);
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-content {
	margin-top: 20px;
	padding-right: 10px;
}
.hero-content .title-section h4, .hero-content .title-section h1 {
	color: var(--white-color);
}
.btn.hero-btn {
	margin-right: 15px;
}
.title-section h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 12px;
}
.title-section h4 i{
  color: var(--silk-color);
  margin-right: 8px;
}
.hero-content .title-section h1 {
	font-size: 46px;
	margin-bottom: 20px;
}
.hero-list ul li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
  font-weight: 700;
}
.hero-list ul {
  margin: 0;
  padding: 0;
}
.hero-list {
  margin-bottom: 20px;
}
.hero-list ul li i {
  color: var(--secondary-color);
}
.hero-images-block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.hero-image {
  width: calc(50% - 15px);
}
.circle-image {
	position: absolute;
	width: 200px;
	height: 200px;
	left: 50%;
	top: 30%;
	transform: translate(-50%, -30%);
	transform: translateX(-50%);
	animation: orbit 20s linear infinite;
	z-index: 99;
	border: 5px solid var(--heading-color);
	border-radius: 50%;
}
/* Keyframes for the rotation */
@keyframes orbit {
  from {
    transform: translateX(-50%) rotate(0deg); /* Start at 0 rotation */
  }
  to {
    transform: translateX(-50%) rotate(360deg); /* End with a full rotation */
  }
}
/* Hero Food Carousel */
#heroFoodCarousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#heroFoodCarousel .owl-dot {
	width: 15px;
	height: 15px;
	border: 2px solid var(--secondary-color);
	border-radius: 50%;
	margin: 0 3px;
}
#heroFoodCarousel .owl-dot.active {
  background: var(--secondary-color);
}
/*======================
   Homepage Marquee
=======================*/
.scrolling-marquee-ticker {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 15px 0;
  font-size: 30px;
  font-weight: 700;
}
.scrolling-wrap {
	display: flex;
	gap: 30px;
	overflow: hidden;
}
.scrolling-text {
	position: relative;
	animation: marqueeLeft 20s linear infinite;
	display: flex;
	gap: 30px;
	flex-shrink: 0;
}
@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.scrolling-text span i {
	margin-right: 20px;
}
/*======================
   Homepage About
=======================*/
.about-featured-image {
	position: relative;
	margin-right: 15px;
}
h1.cus-status {
	width: auto;
	margin: 0 auto;
	background: var(--silk-color);
	color: var(--white-color);
	border-radius: 15px;
	font-size: 40px;
	padding: 17px 15px 15px 15px;
	display: flex;
	line-height: 1.2;
	position: absolute;
	left: -37px;
	writing-mode: vertical-rl;
	transform: rotate(-180deg);
	height: 295px;
	top: 86px;
}
h1.cus-status span {
	font-size: 18px;
	font-weight: 500;
	margin-top: 15px;
}
.title-section h1 {
	font-size: 38px;
}
.home-about-list ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home-about-list ul li {
	flex-basis: calc(50% - 10px);
	box-sizing: border-box;
	background-color: var(--dark-bg);
	padding: 20px;
	text-align: left;
	font-size: 20px;
	display: flex;
	color: var(--background);
	border-radius: 22px;
	position: relative;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease-in-out;
	font-weight: 700;
	line-height: 1.9;
}
.home-about-list ul li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom center; 
  transition: transform 0.3s ease-in-out;
}

.home-about-list ul li:hover::before {
  transform: scaleY(1);
}

.home-about-list ul li:hover {
  color: var(--white-color);
}
.home-about-list li i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-right: 13px;
}
.home-about-list ul li:hover i {
  color: var(--heading-color);
}
.about-permalink {
	display: flex;
}
.about-permalink .btn {
  border: 2px solid var(--secondary-color);
  margin-right: 25px;;
}
.icon-phone {
	font-size: 18px;
	font-weight: 700;
	color: var(--heading-color);
	display: flex;
}
.icon-phone i {
	position: relative;
	z-index: 1;
	width: 47px;
	height: 47px;
	border-radius: 50%;
	color: var(--background);
	font-size: 25px;
	animation: icon-animation 2s ease-in-out infinite;
	display: flex;
	align-items: center;
	justify-content: center;
	float: left;
}
.icon-phone i::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 47px;
	border-radius: 50%;
	height: 47px;
	background: var(--heading-color);
	z-index: -1;
}
@keyframes icon-animation {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.icon-phone strong {
  display: block;
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 3px;
  margin-top: 3px;
}
.icon-phone span {
  line-height: 1.2;
  margin-left: 15px;
}


/*======================
   Homepage Commitment
=======================*/
.commitment-area {
  position: relative;
}
.commitment-area::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 1px;
	background: var(--secondary-color);
	left: 0;
	top: 50%;
	opacity: 0.3;
}
.commitment-content {
	padding: 80px 120px 80px 119px;
	color: var(--white-color);
	font-size: 19px;
	border-radius: 30px;
	position: relative;
}
.commitment-content h2 {
	background: var(--secondary-color);
	text-align: center;
	padding: 10px 60px;
	border-radius: 30px;
	margin-bottom: 0;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: -30px;
	color: var(--white-color);
	transform: translateX(-50%);
}
.commitment-content p:last-child {
	margin: 0;
}
/*======================
   Homepage Food Menus
=======================*/
.food-menu-area {
	background-color: var(--background);
	background-image: url("img/testimonial.png");
	background-position: center center;
	background-repeat: no-repeat;
}
.food-menu-area .nav-pills .nav-item a i {
	margin-right: 5px;
}
.food-menu-area .nav-pills .nav-item a {
	padding: 8px 14px;
	border-radius: 5px;
	color: var(--pro);
	border: 3px solid var(--primary-color) !important;
	background: var(--background);
	font-size: 14px;
	font-weight: 500;
}
.food-menu-area .nav-pills .nav-item .active {
	background: var(--primary-color);
	font-weight: 700;
	color: var(--background);
}
.food-menu-area .nav-pills .nav-item {
	margin: 5px;
}
.menu-single {
	background: var(--background);
	box-shadow: 0px 0px 15px #ddd;
	margin-bottom: 23px;
	border-radius: 20px;
	overflow: hidden;
}
.food-thumbnail {
	padding: 20px;
}
.food-thumbnail img {
	height: 250px;
	object-fit: cover;
	width: 100%;
	border-radius: 20px;
	box-shadow: 0px 0px 12px var(--primary-color);
}
.food-content {
	padding: 5px 20px 16px 20px;
}
.food-content h5 {
	font-size: 17px;
	margin-bottom: 7px;
	height: 40px;
}
.food-content .menu-price {
	font-size: 17px;
}
.food-content p {
	text-align: left;
	font-size: 14px;
	line-height: 21px;
	min-height: 66px;
	margin-bottom: 0;
}
button.orderMenu {
	background: var(--secondary-color);
	color: var(--white-color);
	font-size: 14px;
	padding: 5px 20px;
	font-weight: 500;
	border-radius: 50px;
	cursor: pointer;
	text-transform: uppercase;
	border: 0px solid;
	width: 135px;
}
.quick-food-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  display: none;
}
.quick-food-popup {
  width: 450px;
  background: var(--white-color);
  margin: 50px auto;
  border-radius: 20px;
  text-align: center;
  padding: 40px;
  position: relative;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn{
  from{transform:scale(0.7); opacity:0;}
  to{transform:scale(1); opacity:1;}
}
.close-btn {
  font-size: 53px;
  position: absolute;
  top: 0;
  right: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.quick-food-popup img {
  margin-bottom: 10px;
}
.quick-food-popup h2 {
  font-size: 17px;
}
/*======================
  Homepage Chef Special
=======================*/
.chef-special-box {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.chef-special-content {
	position: relative;
	padding: 45px 40px;
	color: var(--white-color);
	z-index: 1;
	overflow: hidden;
}
.chef-special-content::before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: var(--primary-color);
	opacity: 0.4;
	z-index: -1;
}
.chef-special-content h2 {
	font-size: 26px;
	margin-bottom: 19px;
	color: var(--white-color);
}
.chef-special-content i {
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 2;
	font-size: 30px;
	background: var(--secondary-color);
	border-radius: 50%;
	border: 2px solid var(--secondary-color);
	transition: all 0.4s;
	margin-top: 10px;
}
.chef-special-content:hover i {
	background: transparent;
	color: var(--white-color);
	border-radius: 50%;
}
.chef-special-thumb figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/0.85;
	border-radius: 30px;
}
/*======================
   Homepage Video
=======================*/
.video-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.video-item {
  width: calc(50% - 10px);
  box-sizing: border-box;
}
.fancybox__container {
	z-index: 9999;
}
#videoCarousel .owl-nav button{
  position: absolute;
  top: 50%;
  background: var(--primary-color);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  line-height: 41px;
}
#videoCarousel .owl-nav button:hover{
  background: var(--secondary-color);
}
#videoCarousel .owl-nav .owl-prev {
  position: absolute;
  left: -17px;
}
#videoCarousel .owl-nav .owl-next {
  position: absolute;
  left: auto;
  right: -17px;
}
#videoCarousel .owl-nav .disabled {
	opacity: 0.5;
}
#videoCarousel .owl-dots {
	display: none;
}
/*======================
   Homepage Testimonial
=======================*/
.customer-review p {
  color: var(--white-color);
  font-size: 18px;
  padding-right: 53px;
  margin-bottom: 50px;
}
.customer-info {
  display: flex;
  gap: 20px;
}
.customer-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.customer-info h4 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 7px;
}
.customer-info h4 span {
  font-weight: 400 !important;
  display: block;
  font-size: 14px;
  line-height: 2;
}
.company-statistics {
	display: flex;
	justify-content: space-between;
	color: var(--background);
	margin-top: 40px;
}
.stats-item {
	display: flex;
	gap: 10px;
}
.stats-item h1 {
  font-size: 30px;
  color: var(--white-color);
}
.stats-icon i {
	font-size: 60px;
	color: var(--silk-color);
}
.testimonial-thumb {
	margin-left: 50px;
	position: relative;
}
.testimonial-cta-call {
	display: flex;
	gap: 17px;
	width: 80%;
	padding: 12px 15px;
	border-radius: 15px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: absolute;
	bottom: 23px;
	left: 50px;
}
.t-icon i {
  font-size: 21px;
  color: var(--white-color);
  width: 45px;
  height: 45px;
  background: var(--silk-color);
  border-radius: 50%;
  line-height: 2.1;
}
.t-call p {
  color: var(--white-color);
  font-size: 14px;
  margin-bottom: 0;
}
.t-call h3 {
  color: var(--white-color);
  font-size: 20px;
}
/*======================
   Homepage Blog
=======================*/
.blog-item {
	height: 100%;
}
.blog-item img {
    transition: .5s;
}
.blog-item:hover img {
    transform: scale(1.1);
}
.blog-overlay {
	position: absolute;
	padding: 30px;
	width: 100%;
	height: 60%;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	background: linear-gradient(rgba(52, 173, 84, 0), var(--secondary-color));
	z-index: 1;
}