@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root{
	--primary:#561B07;
	--green:#65AB04;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:'Quicksand', sans-serif ;
  font-size: 100%;
  font-weight: 400;
      text-transform: capitalize;
      overflow-x: hidden;
}

section{
	margin-top: 90px;
}
.btn{
	color:#fff;
	text-transform: capitalize;
 transition: all .2s linear;
 background: var(--green);
 border-color: var(--green);
}

/*
=========================================
    Custom Scrollbar
=========================================
*/ 

::-webkit-scrollbar {
  width: 0.625rem;
} 
::-webkit-scrollbar-track {
  background: #FFF; 
} 
::-webkit-scrollbar-thumb {
  background:var(--primary); 
} 

/*
==========================================
   Header Design
==========================================
*/

.navbar .navbar-brand{
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
}

.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-size:0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  color:var(--primary) !important;
  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(--green);
  display: block;
  margin: auto;
  transition: 0.5s;

}
.navbar .navbar-nav .nav-item .nav-link:hover::after
{
  width: 100%;
}
.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 {
    transition: all 0.4s;
    background: transparent;
}
/*header design End*/

/*Section 1 Banner*/
.banner-section{
  margin-top: 0;
  padding: 165px 0;
  background: url('../banner/about-banner.png') no-repeat;
  background-position: bottom;
}
.banner-section h1{
  color: #FFF;
  font-weight: 700;
  text-align: center;
}

/*Section 1 Banner End*/

/*Video Area*/
 .video-container{
   width: 100%;
  position: relative;
  overflow: hidden;
}
 .video-container video{
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
}
/*Video Area*/
.about-story h1 ,.about-section h2{
  color: var(--primary);
  font-weight: 700;
  /*margin-bottom: 1.5rem;*/
}
.about-story p ,.about-section p{
  line-height: 2;
  font-size: 14px;
  text-align: justify;
}
.about-section{
  background: var(--white-color);
}

.about-section .card,
.about-section .card img{
  border-radius: 0.625rem;
}
.about-section .text-sec{
  padding-left:2rem;
}
 
/*
==========================================
 food type section Design
==========================================
*/
.food-type{
  margin-top: 10px;
}
 
.food-type ul li{
  font-size:0.8rem;
  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-color);
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Free";
  content:'\f00c';
  display:inline-block;
  padding-right:3px;
  vertical-align:middle;
  font-weight: 900;
}
/*
==========================================
staff section Design
==========================================
*/
.staff{
   background: var(--primary);
   padding: 60px 0;
}
.staff-slide{
    margin: 0 15px;
}
.staff-slide .staff-img{
    overflow: hidden;
}
.staff-slide .staff-img img{
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 1s ease-in-out 0s;
}
.staff-slide:hover .staff-img img{
    transform: scale(1.08);
}
.staff-slide .staff-content{
    background: #fff;
    padding: 20px;
}
.staff-slide .staff-title{
    font-size: 17px;
    font-weight: 600;
    margin-top: 0;
    text-align: center;
    color: var(--primary);
    text-transform: capitalize;
}
.staff-slide .staff-title a{
    display: inline-block;
    color: #808080;
    transition: all 0.3s ease 0s;
}
.staff-slide .staff-title a:hover{
    color: #3d3030;
    text-decoration: none;
}
.staff-slide .staff-description{
    font-size: 15px;
    color: #676767;
    line-height: 24px;
    margin-bottom: 14px;
    text-align: justify;
}


/*
==========================================
staff section Design End
==========================================
*/


/*UPS*/
.ups-section h2{
  /*text-transform: uppercase;*/
}

.ups-section .box{
    background: linear-gradient(#fff,#000);
    /*border: 3px solid var(--green);*/
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}
.ups-section .box img{
    width: 100%;
    height: auto;
    transition: all 0.4s ease 0s;
}
.ups-section .box:hover img{
    opacity: 0.5;
    transform: scale(1.2);
}
.ups-section .box .box-content{
    color: #fff;
    background: rgba(86, 27, 7 ,0.5);
    text-align: center;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    /*border-radius: 20px 0 20px 20px;*/
    opacity: 0;
    transform-origin: center;
    transform: scale(0);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease 0s;
}
.ups-section .box:hover .box-content{
    opacity: 1;
    transform: scale(1);
}
.ups-section .box .title{
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    margin: 0 0 3px;
}
.ups-section .box .post{
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: italic;
    display: block;
}
.ups-section .staff{
  background: none;
  padding: 0;
}

@media only screen and (max-width:990px){
    .ups-section .box{ margin: 0 0 30px; }
}
/*UPS*/


/*
==========================================
FAQ section Design
==========================================
*/
section#faq{
  margin-top:2rem;
}
.faq h2{
  font-weight: 700;
  /*font-size: 2.25rem;*/
  text-transform: capitalize;
  color: var(--primary);
  line-height: 3rem;
}
.faq h4{
  color: var(--black);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.faq h4 span{
  color:#a82c48;
  font-size: 1.875rem;
  margin-right:0.3125rem;
} 
.faq p{
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 1px;
}
.faq a{
  text-decoration: none;
  color: var(--black);
  text-transform: none;
}

/*
==========================================
FAQ section Design
==========================================
*/


