

*,
*:after,
*:before{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:active,
:hover,
:focus{
    outline:0 !important;
    outline-offset: 0;
}

a,
a:hover{
    color: var(--primary-color);
}

ul,
ol{
    margin: 0;
    padding: 0;
}

/*****  variable define   *****/
:root{
    --primary-color:#AB2C48;
    --Secondry-color:#43121d;
    --third-color:#f98199;
    --white-color:#fff;
    --text-color:#555;
    --text-gray:#999;
    --black-color:#000
    --primary-font:'Roboto',sans-serif;
    --Secondry-font:'Quicksand',sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: var(--primary-font);
    font-size: 100%;
    font-weight: 400;
}

/* 
==================================================================
              custom scrollbar
==================================================================
*/
::-webkit-scrollbar {
  width: 0.525rem;
}

::-webkit-scrollbar-track {
  background: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* 
==================================================================
              custom scrollbar
==================================================================
*/

h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 3rem;
}

h2 {
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: capitalize;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  line-height: 3rem;
}

h4 {
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

h5 {
  color: var(--primary-color);
  font-family: var(--secondary-font);
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.625rem;
  letter-spacing: 1px;
}

.main-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--primary-color)  !important ;
  border: 0.1875rem solid var(--primary-color);
  color: var(--white-color)  !important ;
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0px 6px 4px -1px rgba(0, 0, 0, 0.9) !important;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.white-btn {
  padding: 0.625rem 1.875rem;
  line-height: 1.5625rem;
  background-color: var(--white-color);
  border: 0.1875rem solid var(--white-color);
  color: var(--text-color);
}

.main-btn:hover {
  background-color: transparent !important; 
  color: var(--primary-color) !important;
}

.white-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.wrapper {
  padding-top: 6.25rem;
  padding-bottom: 8.25rem;
}

.text-content {
  width: 70%;
  margin: auto;
}

.counter-section h2,
.testimonial-section h2,
.book-food-text h2 {
  color: var(--white-color);
}

.pad{
  padding-top:2.5rem;
}

/* 
==================================================================
              custom scrollbar
==================================================================
*/
.navigation-wrap{
    position: fixed;
    width: 100%;
    background-color: var(--white-color);
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.navigation-wrap .nav-item{
    padding: 0 0.624rem;
    transition: all 200ms linear;
}

.navbar-toggler:focus{
    outline: unset;
    border: unset;
    box-shadow: none;
}

.nav-link{
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    letter-spacing: 1px;

}

.navigation-wrap .main-btn{
    padding: 0.3125rem 1.4375rem;
    box-shadow: none ;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--primary-color);
    background: var(--white-color);
    box-shadow: 0 0.125rem 1.75rem  0 rgb(0,0,0,0.9);
    transition:all .14s ease-in-out 0s ;
}
/* change navbar styling on scroll */
.navigation-wrap.scroll-on{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white-color);
    box-shadow: 0 0.125rem 1.75rem 0 rgb(0,0,0,0.09);
    transition: all .15s ease-in-out 0s;
}

/* 
==================================================================
              top-banner design
==================================================================
*/
.top-banner{
    width:100% ;
    background: url('../images/bg/bg-1.jpg')no-repeat center;
    background-size: cover;
    padding: 16.875rem 0 9.375rem;
}

/* 
==================================================================
              COUNTER design
==================================================================
*/

.counter-section{
    background-color: var(--primary-color);
    padding: 2.5rem 0;
}
.counter-section p{
    color: var(--white-color);
    text-transform: uppercase;
}

/* 
==================================================================
              about section design
==================================================================
*/
.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 {
  padding-top: 3.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-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;
}

.story-section{
  width: 100%;
  background: url(../images/bg/bg-2.jpg) no-repeat center;
  background-size: cover;
  padding-top: 50px;
  text-align: center;
  padding-bottom: 50px;
}

.story-section h2{
  color: var(--primary-color);
}

/* 
==================================================================
              explore food section design
==================================================================
*/

.explore-food .card{
  border: none;
  background-color: transparent;
  border-radius: 0.9375rem;
}
.explore-food .card img{
  border-radius: 0.9375rem;
  object-fit: cover;
}

.explore-food .card span{
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid#eee;

}
.explore-food .card span del{
  color: var(--text-gray);
  margin-left: 0.5rem;
}


/* 
==================================================================
              Testinomial section design
==================================================================
*/
.testimonial-section{
  background-color: var(--primary-color);
}
.testimonial-section .carousel-item{
  margin-top: 3rem;
  padding: 10rem 3.125rem;
  background-color: var(--white-color);
  border-radius: 0.9375rem;
  text-align: center;

}
.testimonial-section .carousel-caption img{
  max-width: 5rem !important;
  border-radius: 50% !important;
  padding: 0.3125;
text-align: center;
}

.testimonial-section .carousel-item .carousel-caption p{
  font-size: 1.3125rem !important;
  line-height: 2.0625rem !important;
  padding: 0 11% 0.625rem !important;
}
.testimonial-section .carousel-indicators{
  bottom: -2.8125rem;
}
.testimonial-section .carousel-indicators button{
  width: 15px;
  height: 15px;
  outline: none;
  border-radius: 50%;
  border: none;
  margin-right: 1rem;
  opacity: 0.2;
}
.testimonial-section .carousel-indicators button.active{
  opacity: 1;
}
/* 
==================================================================
             FAQ  section design
==================================================================
*/

.faq h4 span{
  color: var(--primary-color);
  font-size: 1.875rem;
  margin-right: 0.3125rem;
}
.book-food{
  width: 100%;
  background: url(../images/bg/bg-3.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: 0 91.9125px;
  padding: 4.375rem 0;
}

/* form control */
.newsletter{
  width: 55%;
  margin: 0 auto;
}
.newsletter .form-control{
  height: 3.225rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%;
  border: none;
  border-radius: 0;
  background: transparent;
  border:0.1875rem solid var(--text-gray);
  color: var(--black-color);
  font-weight: 700;
}
.newsletter .form-control:hover,
.newsletter .form-control:focus{
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color);
}

/* 
==================================================================
             Footer  section design
==================================================================
*/
.footer{
  background: var(--primary-color);

}
.footer .footer-link{
  font-size: 1rem;
  color: var(--white-color);
  padding: 0 1.875rem;
  text-decoration: none;
}
.footer .footer-link:hover{
  color: var(--white-color) !important;
}
.footer a i{
  font-size: 1.5rem;
  color: var(--white-color);
  padding: 0 1rem;
}


