@import url('https://fonts.googleapis.com/css2?family=Handlee&family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root{
	--primary:#561B07;
	--green:#65AB04;
  --white:#FFFFFF;
  --black:00000;
}

html {
  scroll-behavior: smooth;
}
h1,h2,h3,h4,h5,h6{
   font-family:'Handlee', sans-serif ;
}

body {
  font-family:'Inter', sans-serif ;
  font-size: 100%;
  font-weight: 400;
      text-transform: capitalize;
      overflow-x: hidden;
}

section{
	margin-top: 90px;
}
.btn{
	color:#fff;
	text-transform: capitalize;
 font-family:'Handlee', sans-serif ;
 transition: all .2s linear;
 background: var(--green);
 border-color: var(--green);
}
.mb12{
  margin-bottom: 12px;
}
.mb30{
  margin-bottom: 30px;
}
/*
=========================================
    Custom Scrollbar
=========================================
*/ 

::-webkit-scrollbar {
  width: 0.625rem;
} 
::-webkit-scrollbar-track {
  background: #FFF; 
} 
::-webkit-scrollbar-thumb {
  background:var(--primary); 
} 

/*
==========================================
   Header Design
==========================================
*/
/*
=========================================
    Own Css
=========================================
*/ 
.heading{
  text-align: center;
  font-weight: normal;
  font-weight: 600;
  padding:.5rem 0;
}

/*
=========================================
    Own Css End
=========================================
*/

.navbar .navbar-brand{
  color: var(--primary);
  width: 350px;
}
.navbar .navbar-brand .color-logo{
  width: 52%;
  display: none;
}
.navbar .navbar-brand img{
  width: 100%;
  height: auto;
}

.navbar .nav-item{
  padding:0 0.625rem;
  transition:all 200ms linear;
}
.navbar-toggler:focus{
  outline:unset;
  border:unset;
  box-shadow: none;
}
.navbar .nav-link{
     font-family:'Handlee', sans-serif ;
  font-size:0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  color:var(--primary) ;
  color: #FFF;
  letter-spacing: 1px;
   transition:all 200ms linear;
}
.navbar .nav-link:hover{
	transform: scale(1.1);
	/*color: var(--primary);*/
}
.navbar .navbar-nav .nav-item .nav-link::after
{
  content: '';
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  display: block;
  margin: auto;
  transition: 0.5s;

}
.navbar .navbar-nav .nav-item .nav-link:hover::after
{
  width: 100%;
}
.dropdown-toggle::after {
  display: none;
  border: none;
}
.navbar .main-btn{
  padding:0.3125rem 1.4375rem;
  box-shadow: none;
  margin-left:0.625rem;
  background: var(--primary);
  color: #FFF;
} 
/* Change navbar styling on scroll */
.navbar.solid {
	color: var(--primary);
  background: #FFF;
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0 0 0 / 9%);
  transition: all .15s ease-in-out 0s;
  }
.navbar .nav-solid{
  color: var(--primary) !important;
  }
 .navbar {
    transition: all 0.4s;
    background: transparent;
}

/*Social-media icons */
.social.icon-bar {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 999;
}

.social.icon-bar a {
  display: block;
  text-align: center;
  color: #FFF;
  transition: all 0.4s linear;
  font-size: 18px;
  margin-bottom: 10px;
}

.social.icon-bar a:hover {
  transform: translateX(-.5rem);
}

.facebook {
    color: #FFF;
  background: #3B5998;
  color: white;
}
.swiggy {
    color: #FFF;
  color: white;
  width: 50px;
}
.swiggy img{
  width: 100%;
  height: auto;
}
.instagram{
 background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  /*background: #3f729b;*/
  color: white;
}

/*Social-media icons End*/
/*Home-vedio-section*/
@keyframes fadeIn {
   0%{
      transform: translateY(-4rem) scale(0);
      opacity: 0;
   }
}
/*Sliderrr*/

.home .flex-slider {
  width:100%;
  position:relative
}
.home .flex-slider .slides {
  list-style:none;
  overflow:hidden;
  margin:0;
  padding:0
}
.home .flex-slider .slides > li {
  float:left;
  margin-right:-100%;
  width:100%;
  overflow:hidden;
  height:50vw;
}
.home .flex-slider .flex-direction-nav {
  list-style:none;
  margin:0;padding:0
}
.home .flex-slider .flex-direction-nav .flex-prev, .flex-slider .flex-direction-nav .flex-next {
  background-color:transparent;
  text-decoration:none;
  position:absolute;
  top:45%;bottom:0; 
  margin:0 auto;
  z-index:8;
  text-align:center;
  color:var(--black);
   height: 3rem;
   width: 3rem;
   line-height: 3rem;
}
.home .flex-slider .flex-direction-nav .flex-prev:hover, .flex-slider .flex-direction-nav .flex-next:hover{
   background: rgba(0,0,0,0.3);
   color:var(--white);
}
.home .flex-slider .flex-direction-nav .flex-prev, .flex-slider .flex-direction-nav .flex-next .fa{
  font-size: 2rem;
  line-height: 3rem;
  color: var(--white);
}
.home .flex-slider .flex-direction-nav .flex-prev{left:0}
.home .flex-slider .flex-direction-nav .flex-next{right:0}
.slide-image{
  background-size:cover;
  background-position:center;
  position:absolute;
  left:0;top:0;
  width:100%;
  height:100%;
}
.home .flex-active-slide .slide-image{
  animation: zoomout 5s;
}
@keyframes zoomout{
  0%{
    transform: scale(1.3);
  }
  100%{
    transform: scale(1);
  }
}
@media (max-width:768px) {
  .flex-slider .slides > li {
    height:70vw
  }
}


.home{
   margin-top: 0;
   padding:0;
   background: var(--black);
}

.home .slide{
   z-index: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

.home .slide::before{
   content: '';
   position: absolute;
   top:0; left:0;
   height: 100%;
   width: 100%;
   background: var(--dark-bg);
   z-index: -1;
}

.home .slide .content{
   text-align: center;
   width: 70%;
   display: none;
   /*background: rgba(0,0,0,0.2);*/
}

.home .slide .content span{
   font-size: 2.6rem;
   display: block;
   font-family: 'Aclonica', sans-serif;
   text-shadow: 2px 2px 0 rgb(0 0 0 / 90%);
   padding-bottom: .0rem;
   color:var(--white);
   animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .2s backwards;
}

.home .slide .content h3{
   font-size: 5.2vw;
   text-transform: uppercase;
   color:var(--white);
   
   text-shadow: 3px 3px 0 rgb(0 0 0 / 90%);
   line-height: 1;
   font-family: 'Aclonica', sans-serif;
    
   margin-bottom: 0;
   animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .4s backwards;
}

.home .slide .content .btn{
   animation:fadeIn 0.4s cubic-bezier(.54,1.3,.63,1.34) .6s backwards;
}

.home .flex-active-slide .content{
   display: inline-block;
}

/*Home-vedio-section End*/
.meal {
  margin-top: 0;
    }



/*section-2 story*/

.story-section .wel-head{
  color: var(--green);
  text-align: center;
  font-weight: normal;
  font-weight: 600;
   font-size: 1.5rem;
    padding:.5rem 0;
}
.story-section .wel-pera{
  color: #666;
  font-size: 1rem;
  text-align: center;
  line-height: 2;
}
.story-section .wel-pera a{
  color: #252525;
  text-decoration: none;
  }
.story-section  h3{
    color:var(--primary);
    font-size: 3rem;
     padding:.5rem 0;
    text-align: center;
    font-weight: 600;
}
.story-section .btn-box{
  text-align: center;
}
.story-section .btn-box .btn{
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-top: 20px;
  margin-left: 35px;
}
.story-section .btn-box .btn:hover{
  background-color: transparent;
  color: var(--primary);
}
.story-section .story-logo{
  margin-top: 25px;
  margin-bottom: 25px;
}
.story-section .story-logo > div{
  width: 40%;
  height: auto;
  display: block;
  margin: auto;
}

/*section-2 story End*/

/*Services*/
.service-banner{
  background: #F3F3F3;
  padding: 60px 0;
}
.service-banner .banner {
   position: relative;
/*  background: url('../images/img1.jpg') no-repeat;
  background-position: bottom;
  background-size: cover;*/
  overflow: hidden;
   opacity: 0.9;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.3);
}
.service-banner .banner img{
  display: block;
}
.service-banner .banner:after{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0 , 0 , 0 ,0.4);
  position: absolute;
  top: 0; left: 0;
}
.service-banner .banner .content{
  position: absolute;
  bottom: 18px; left: 0;
  text-align: center;
  width: 100%;
  z-index:55; 
}

.service-banner .banner .content h3 {
  font-size: 2rem;
  letter-spacing: 1.5px;
  color: #FFF;
  font-weight: 600;
  padding-top: .8rem;
}
.service-banner .banner .content .btn{
  background: transparent;
  color: #FFF;
  padding: 3px 25px;
  border-color: #FFF;
  border-radius: 20px;
}
.service-banner .banner .content .btn:hover{
  background: var(--dark);
  color: #FFF;
  border-color:  var(--dark);
}
/*Services*/

/*section-2 staff Start */
.staff-section{
  /*background: #EEEEEE;*/
  /*padding: 45px 0;*/
}
.staff-section h3{
  font-weight: 500;
  text-align: center;
  color: var(--green);
}
.staff-section h1{
  color: var(--primary);
}

.staff-section .box-container .box{
  /*border:1rem solid #fff;*/
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  border-radius: .5rem;
  position: relative;
  overflow: hidden;
}

.staff-section .box-container .box img{
  height:100%;
  width:100%;
  object-fit: cover;
}

.staff-section .box-container .box .content{
  position: absolute;
  top:-100%; left:0;
  height: 100%;
  width:100%;
  background: rgba(0,0,0,.7);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition:all 200ms linear;
}

.staff-section .box-container .box .content h3{
  font-size: 2rem;
  color:var(--white);
}

.staff-section .box-container .box:hover .content{
  top:0;
}

/*section-2 staff End */


/*section-5 quality*/
.quality{
  background: #864e1e;
  padding: 60px 0;
}
.quality .box
{
   width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s linear;
}
.quality .box:hover .circle{
transform: scale(1.1);
}

.quality .box h3{
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--white);
}
.quality .box h3:first-child{
  margin-right: 15px;
}
.quality .box .icon{
    width: 120px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
.quality .box .icon .circle{
    width: 100px;
    height: 100px;
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #FFF;
    border-radius: 50%;
     transition: all 0.4s linear;
}
.quality .box .icon .circle img{
  filter: invert(1);
  max-width: 60%;
}

/*section-5 quality End*/

.content-section{
  background: #FFF;
}
.content-section .card,
.content-section .card img{
  border-radius: 0.625rem;
}
.content-section .text-sec{
  padding-left:2rem;
}
 


  .food-type h2{
    color: var(--primary);
    font-weight: normal;
    line-height: 3rem;
    font-size: 2.25rem;
  }
.food-type ul li{
  font-size:1rem;
  color:var(--text-color);
  line-height: 32px;
  position:relative;
  margin-left: 30px;
}
.food-type ul li::before{
  position:absolute;
  left:-2.1875rem;
  color:var(--primary);
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Free";
  content:'\f00c';
  display:inline-block;
  padding-right:3px;
  vertical-align:middle;
  font-weight: 900;
}

/*-----------------*/

/*---------------------*/
/*=======Testimonial Section ======*/
.testimonial-section{
  margin-top: 70px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--primary);
}
.testimonial-section .slide-1{
  padding:3rem 3.125rem;
  background-color:var(--white-color);
  border-radius: 0.9375rem;
  text-align: center;
} 
.testimonial-section .carousel-img img{
  max-width:5rem;
  border-radius: 50%;
  padding:0.3125rem;
}

.testimonial-section .slide-1 .carousel-img p{
  font-size: 1.3125rem;
  line-height: 2.0625rem;
  padding:0 11% 0.625rem;
  color: var(--white);
}
.testimonial-section .swiper-pagination-bullet-active {
  background: var(--white);
}
.testimonial-section .slide-1 .carousel-img h5{
  color: var(--white);
}
.testimonial-section .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--white);
}

/*=======Testimonial Section======*/

/* Box Testimonial Sections*/
.testimonial{
  padding: 80px 0;
}
.testimonial .box{
  text-align: center;
-webkit-box-shadow: -1px 1px 22px -2px rgba(199,199,199,1);
-moz-box-shadow: -1px 1px 22px -2px rgba(199,199,199,1);
box-shadow: -1px 1px 22px -2px rgba(199,199,199,1);
    padding: 1rem;
    background: var(--white);
    height: 100%;
}
.testimonial  .box h3{
    font-size:1.2rem;}
.testimonial .box .test-img img{
  border-radius: 50%;
}
.testimonial .box .star i{
  color: #fbbc04;
}
.testimonial .box .pera p{
  font-size: 16px;
  line-height: 28px;
}
.testimonial .row > .col-md-4 {
    margin-bottom: 25px;
}
@media (max-width: 991px){
.testimonial .row > .col-md-4 {
    margin-bottom: 25px;
}
  .testimonial .row > .col-md-4:last-child{
  margin-bottom: 0;
  }
}
/*Box Testimonial Sections End*/

.review a[href="https://elfsight.com/google-reviews-widget/?utm_source=websites&utm_medium=clients&utm_content=google-reviews&utm_term=undefined&utm_campaign=free-widget"]{
    display: none !important;
}
.insta a[href="https://elfsight.com/instagram-feed-instashow/?utm_source=websites&utm_medium=clients&utm_content=instagram-feed&utm_term=undefined&utm_campaign=free-widget"]{
    display: none !important;
}

/*=======Feed Section======*/
.feed-section {
    background-color: #FFFF;
    margin-top: -36px;
    position: relative;
    z-index: 99;
    padding-top: 60px;
}
.feed-section .social-img{
  margin-bottom: 2rem;
}
.feed-section .follw{
  text-align: center;
    position: relative;
    z-index: 99999;
}
.feed-section .follw:hover{
  background-color: #FFFFFF;
}
.feed-section .col-lg-3.feed-w{
  width: 20%;  
}
.feed-section .follw i{
  font-size: 14px;
}
/*=======Feed Section End======*/








/*order section starts*/
.booking-section{
  margin-top: 0;
  background: #eeeeee;
}
.booking-section .booking-box {
  padding: 45px 0 ;
padding-right:  70px;
}
.booking-section .booking-box h2{
color: var(--primary);
padding-top: .5rem 0;
text-align: center;
}
.booking-box form{
    border-radius: .5rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border:.1rem solid rgba(0,0,0,.2);
    background:#fff;
    padding:1.5rem;
    margin:0 auto;
    height: 100%;
}

.booking-box form .inputBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.booking-box form .inputBox .input{
    width:49%;
}

.booking-box form .inputBox .input span{
    display:block;
    padding:.5rem 0;
    font-size: 1rem;
    color:var(--primary);
}

.booking-box form .inputBox .input input,
.booking-box form .inputBox .input textarea{
    background:#eee;
    border-radius: .5rem;
    font-size: 1.2rem;
    color:#252525;
    text-transform: none;
    margin-bottom: 1rem;
    width:100%;
    resize: none;
}

.booking-box form .inputBox .input input:focus,
.booking-box form .inputBox .input textarea:focus{
    border:.1rem solid var(--green);
}
.booking-box form .btn{
  margin-top: 20px;
}

/*order section End*/

.footer{
  margin-top: 90px;
}
.footer .box-container .box ul{
  list-style: none;
  padding-left: 0;
}
.footer .box-container .box ul li{
  padding:.2rem 0;
}
.footer .box-container .box h3{
    padding:.5rem 0;
    font-size: 1.5rem;
    color:var(--primary);
    font-weight: 600;
}

.footer .box-container .box a{
    font-size: 1rem;
    text-decoration: none;
    color:#000;
    transition: all 200ms linear;
}
.footer .box-container .box p{
  text-align: justify;
}
.footer .box-container .box i{
  margin-right: 8px;
  color: var(--primary);
}
.footer .box-container .contact-box{
  text-transform: initial;
}

.footer .box-container .box a:hover{
    color:var(--green);
    letter-spacing: 1px;
}

.footer .credit{
    text-align: center;
    border-top: .1rem solid rgba(0,0,0,.1);
    font-size: 1rem;
    color:var(--black);
    padding:.5rem;
    margin-top: 1.5rem;
}

.footer .credit span{
  font-weight: bold;
    color:var(--dark);
}










#scroll-top{
  position: fixed;
  top:-120%;
  right:1rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 2rem;
  background:var(--primary);
  color:#fff;
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
  text-decoration: none;
  /*clip-path: polygon(50% 0%, 0% 100%, 100% 100%);*/
}
#scroll-top:hover{
  background: var(--green);
}
#scroll-top.active{
  top:calc(100% - 4rem)
}
@media(max-width: 991px){
  .home-section {
    margin-top: 75px;
  }
  .navbar {
    background: var(--white);
}
.navbar .navbar-nav .nav-item .nav-link:hover::after
{
  display: none;
}
.navbar .navbar-nav .nav-item .nav-link{
  color: var(--primary);
}
.navbar .nav-link:hover{
  transform: scale(1);
  color: var(--primary);
}
.navbar .navbar-brand img.white-logo{
  display: none !important;
}
  .navbar .navbar-brand img.color-logo{
    display: block !important;
  }
}