
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Rubik', sans-serif;

  color: #444444;
}

a {
  text-decoration: none;
  color: #CB641A;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6, 
p {
  font-family: 'Rubik', sans-serif;

}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #CB641A;
  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: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header-top {
  background-color: #000;
  padding:10px 0;
  
}
#header-top p{
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  
}
#header-top .btn-header-top {
  background-color: #fff;
  color: #FA5F33;
  line-height: 24px;
  font-size: 14px;
  font-weight:500;
  text-transform: uppercase;
  padding: 5px 15px;
  margin: 0 20px;
  border-radius: 5px;
}
#header {
  top: 0px;
  height: 140px;
  z-index: 997;
  transition: all 0.5s;
  padding:  0;
  background: #F7F7F7;
}
#header .padd{
  
  padding:  10px 0;
 
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 3px 6px 3px rgb(0 0 0 / 6%);
  height: 125px;
}

#header.header-scrolled .logo img {
  max-height: 60px;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

@media  (max-width: 768px) {
  #header-top p{
    font-size: 12px;
    font-weight: normal;
    line-height: 24px;
    color: #fff;
    text-align: center;
    
  }
 

  #header-top .btn-header-top {
    background-color: #fff;
    color: #FA5F33;
    line-height: 20px;
    font-size: 11px;
    font-weight:normal;
    text-transform: uppercase;
    padding: 5px 5px;
    margin: 0 5px;
    border-radius: 5px;
  }
  
}
/*--------------------------------------------------------------
# get started button Menu
--------------------------------------------------------------*/
.get-started-btn {
  background-image: linear-gradient(#FA5F33, #FF8E1D);
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}
.get-started-btn a{
  background-image: linear-gradient(#FA5F33, #FF8E1D);
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.get-started-btn:hover {
  background-image: linear-gradient( #FF8E1D, #FA5F33);
  color: #fff;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navigation {
  padding: 0;
}

.navigation  > ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navigation > ul > li {
  position: relative;
}
.navigation li a{
  text-transform: uppercase;
}

.navigation > ul > li:last-child {
  right:0;
}
.navigation > ul > li:last-child span {
  margin-left:10px; 
  color: #777; 
  font-size:14px; 
  text-transform: none;
}
.navigation > ul > li.dropdown ul li> ul{
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
}
.navigation > ul > li.dropdown .dropdown-menu li.dropdown:hover ul{
  display: block;
}
.navigation > ul > li .dropdown-menu li a{
  padding: 5px 10px;
}
.navigation a,
.navigation a:focus {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 0 10px 50px;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  color:#3C3C3C;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.navigation a i,
.navigation a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navigation a:hover,
.navigation .active,
.navigation .active:focus,
.navigation li:hover>a {
  color: #CB641A;
}
.dropdown-item.active, .dropdown-item:active{
  background: #CB641A;
  color: #fff;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}
.navbar li a{
  text-transform: uppercase;
}

.navbar ul li:last-child {
  right:0;
}
.navbar ul li:last-child span {
  margin-left:10px; 
  color: #777; 
  font-size:14px; 
  text-transform: none;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 10px 0 10px 50px;
  font-size: 18px;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  color:#fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

.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: #CB641A;
}

.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: #CB641A;
}

.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: 1399px) {
  #inner-page-container .img-container .img-container-overlay{
  width:158px
  }
  #inner-page-container .img-container .img-container-overlay p{
  font-size:12px;
  }
  }
  @media (max-width: 1200px) {
  #inner-page-container .img-container .img-container-overlay{
  width:130px
  }
  #inner-page-container .img-container .img-container-overlay p{
  font-size:10px;
  line-height:16px;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;

  }
  .navbar a,
.navbar a:focus {

  padding: 10px 0 10px 24px;

}
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #848484;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
#navbar .bi::before{
  color: #848484 !important;
  
}


@media (min-width: 300px) {
  .mobile-nav-toggle {
    display: block;

  }

}
@media (max-width: 991px) {
  /* .mobile-nav-toggle {
    display: block;
  } */

  .navbar ul {
    display: none;
  }
  .navigation {
    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: 50px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 50px;
  right: 0px;
  bottom: 20px;
  left: 0px;
  padding: 10px 0;
  border-radius: 0px;
  background-color: rgba(0, 0, 0, 0.95);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #CB641A;
}

.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: #CB641A;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



.icon-bar {
    position: fixed;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    z-index: 999;
    background-color: transparent;
}
.icon-bar a {
    display: block;
    text-align: center;
    padding: 5px;
    transition: all .3s ease;
    color: #fff;
    font-size: 24px;

}
.icon-bar .facebook {
    background-color: #000;
    margin-bottom: 5px;

}
.icon-bar .instagram {
    background-color: #000;
    margin-bottom: 5px;

}
@media (max-width: 1024px) {
    .icon-bar {
    display: none;
}
}


/* Create three equal columns that floats next to each other */
#our-menu .column {
  float: left;
  width: 33.33%;
  display: none; /* Hide all elements by default */
}

/* Clear floats after rows */ 
#our-menu .row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
#our-menu .content {
  background-color: white;
  padding: 10px;
}

/* The "show" class is added to the filtered elements */
#our-menu .show {
  display: block;
}

/* Style the buttons */
#myBtnContainer .btn {
  border: 2px solid #D8D8D8;
    outline: none;
    padding: 10px 16px;
    background-color: white;
    cursor: pointer;
    border-radius: 30px;
    font-size: 16px;
    margin: 0 5px 5px 0;
}

#myBtnContainer .btn:hover {
  background-color: #EBEBEB;
}

#myBtnContainer .btn.active {
  background-color: #EBEBEB;
  
}
#myBtnContainer span {
  color: #9D9D9D;
  
}

@media (max-width: 768px) {
    #our-menu .column {
      float: left;
      width: 100%;
  
}

}
@media (max-width: 992px) {
    
.hide-sm {
    display: none;
}
}
@media (min-width: 768px) and (max-width: 1100px) {
    #our-menu .column {
      float: left;
      width: 50%;
  
}
.navigation a, .navigation a:focus {
    padding: 10px 0 10px 30px;
}
}


#toggle {
  display: none;
}

/**
  Hamburger
**/
.hamburger {
  position: absolute;
    top: 25px;
    right: 5%;
    margin-left: -2em;
    margin-top: -45px;
    width: 20px;
    height: 40px;
    z-index: 5;
    margin-right: 20px;
}

.hamburger div {
  position: relative;
    width: 40px;
    height: 3px;
    border-radius: 1px;
    background-color: #777;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
}

/**
Nav Styles
**/
.top-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  top: -100%; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}
.nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;
  top:10%;
}
nav {
  text-align: left;
  margin-left: 0;
}
nav a {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 2em;
  display: inline-block;
  margin-top: 1.25em;
  transition: color 0.2s ease-in-out;
  letter-spacing: 1px;
}
nav a:before {
  content: '';
  height: 0;
  position: absolute;
  width: 0.25em;
  background-color: white;
  left: -0.5em;
  transition: all 0.2s ease-in-out;
}
nav a:hover {
  color: white;
}
nav a:hover:before {
  height: 100%;
}

/**
Animations
**/
#toggle:checked + .hamburger .top-bun {
  transform: rotate(-45deg);
  margin-top: 25px;
}
#toggle:checked + .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}
#toggle:checked + .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -7px;
}

#toggle:checked + .hamburger + .nav {
  top: 0;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  /* height: 80vh; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 10%;
  right: 10%;
}

#hero .carousel-content {
  text-align: center;
    top: 10%;
    right: 10%;
    /* transform: translate(-50%, -50%); */
    padding: 80px 50px;
    text-align: center;
}

#hero h2 {
  color: #FA5F33;
    margin-bottom: 0px;
    font-size: 88px;
    font-weight: lighter;
    padding: 20px 10px;
}


#hero p {
  width: 100%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 20px;
}

#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 {
  position: relative;
  top: 10px;
}
#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: 24px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  transition: 0.3s;
  color: #CB641A;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 1);
  color: #3C3C3C;
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1 !important;
}
.carousel-control-prev {
  left: -30px;
}
.carousel-control-next {
  right: -30px;
}


#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .book-your-cheff-btn {
  background-image: linear-gradient(#FA5F33, #FF8E1D);
  color: #fff;
  border-radius: 50px;
  margin: 30px 0 0 0px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

#hero .book-your-cheff-btn:hover {
  background-image: linear-gradient( #FF8E1D, #FA5F33);
  color: #fff;
}




#hero .btn-book {
  font-weight: normal;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 2px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #92B277;
  border: 2px solid #fff;
  background-color: #fff;
}

#hero .btn-book:hover {
  background: #92B277;
  color: #fff;
}


@media (max-width: 1200px) {
  .carousel-control-prev {
    left: 0px;
  }
  .carousel-control-next {
    right: 0px;
  }
  #hero h2 {
    margin-bottom: 0px;
    font-size: 48px;
    font-weight: normal;
    padding: 20px 10px;
}
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 24px;
  }
  #hero p {
   
    margin: 0 auto 10px auto;
    font-size: 15px;
}
}


@media (max-width: 899px) {
  #hero .book-your-cheff-btn {
    background-image: linear-gradient(#FA5F33, #FF8E1D);
    color: #fff;
    border-radius: 50px;
    margin: 30px 0 0 0px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: 0.3s;
    white-space: nowrap;
  }
  #hero {
    width: 100%;
    top: 50px;
    position: relative;
    
  }
  .home-title h2 {
    font-size: 28px !important;
    font-weight: normal !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    color: #141414 !important;
    line-height: 36px !important;
}
.home-title-left h2 {
  font-size: 28px !important;
  font-weight: normal !important;
  padding: 0 !important;
  margin: 30px 0 !important;
  color: #141414 !important;
  line-height: 36px !important;
}

#three-steps-section .white-container h3 {
  font-size: 20px !important;
  text-align: center;
  line-height: 30px !important;
  font-weight: normal;
}


  .why-us h2::after {
    bottom: -35px !important;
}
.blog .blog-subheading {

    padding: 0 2% !important;
    margin-bottom: 40px;
}

#hero .btn-menu {
    font-size: 14px;
    padding: 10px;
}
#hero .btn-book {
    font-size: 14px;
    padding: 10px;
}
.testimonials .testimonials-subheading p{
    font-size: 20px !important;

}
.register h2 {
    text-align: center;
    font-size: 32px;
}

}
/*--------------------------------------------------------------
# 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: #CB641A;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Select Chef Services
--------------------------------------------------------------*/
#select-chef-services {
 position: relative;
 background-color: #F2F2F4;

}
#select-chef-services .menu-bg {
  padding: 20px 0;
  background: url(../img/home-page-bg1.png) no-repeat;
  /* background-position: center center; */
  background-size: cover;
  position: relative;
}

#select-chef-services .nav>li>a {
  color:#A8A8A9 !important;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
  padding: 20px 30px;
}

#select-chef-services .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
  color:#000 !important;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
}


#select-chef-services .nav {
  justify-content: center;
}


#select-chef-services .img-container {
  position: relative;
}
#select-chef-services .img-container .img-container-overlay {
  position: absolute; 
  right: 25px; 
  top: 40px; 
  width: 180px;
}
#select-chef-services .img-container .img-container-overlay h2{
  font-size: 22px;
  line-height: 30px;
  text-align: left;
  font-weight:  normal;
}
#select-chef-services .img-container .img-container-overlay p{
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  font-weight:  normal;
  padding-top: 10px;
}
/** Start: to style navigation tab **/


#select-chef-services .nav-tabs{
  *zoom: 1;
}

#select-chef-services .nav-tabs:before,
.nav-tabs:after {
  display: table;
  content: "";
}

#select-chef-services .nav-tabs:after {
  clear: both;
}

#select-chef-services .nav-tabs > li {
  float: left;
}

#select-chef-services .nav-tabs > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}

#select-chef-services .nav-tabs {
  border-bottom: 0;
    text-align: center;
    justify-content: center;
    display: flex;
    list-style: none;
    margin-bottom: 30px;
}

#select-chef-services .nav-tabs > li {
  margin-bottom: -1px;
}

#select-chef-services .nav-tabs > li > a {
  color:#A8A8A9 !important;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
  padding: 20px 30px;
}

#select-chef-services .nav-tabs > li > a:hover {
  border-color: #eeeeee #eeeeee #dddddd;
}

#select-chef-services .nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
  color:#000 !important;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
}



#select-chef-services .tab-content.active{
  display: block;
}

#select-chef-services .tab-content.hide{
  display: none;
}

#select-chef-services img {
  width: 100%;
}


@media (max-width:550px) {
  #select-chef-services .nav-tabs {
    display: block !important;
}

#inner-page-main-tab .nav-tabs > li > a {
  color:#A8A8A9 !important;
  background-color: transparent !important;
  font-size: 14px !important;
  line-height: 24px !important;
  padding: 10px 20px !important;
  border: none;
}


#inner-page-main-tab .nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
  color:#000 !important;
  background-color: #FFF8F4 !important;
  font-size: 14px !important;
  line-height: 20px !important;
  border: 1px solid #FA5F33;
  border-radius: 20px;
}
}


@media (max-width:380px){
  .img-height-mobile {
    height: 220px;
  }
}
@media (max-width:768px) {
  #select-chef-services .nav-tabs > li > a {
    color:#A8A8A9 !important;
    background-color: transparent !important;
    font-size: 14px;
    line-height: 20px;
    padding: 20px 10px;
    text-align: center;
  }
  
  #select-chef-services .nav-tabs > .active > a,
  .nav-tabs > .active > a:hover {
    color:#000 !important;
    background-color: transparent !important;
    font-size: 14px;
    line-height: 20px;
  }
  #header {
    top: 0px;
    height: 120px;
}
#header .logo img {
  max-height: 60px;
}
#hero .carousel-content {

  padding: 50px 20px;
  text-align: center;
}
#hero .book-your-cheff-btn {
  border-radius: 30px;
  margin: 30px 0 0 0px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: normal;
  letter-spacing: .2px;
}

#customer-experience p {
  font-size: 16px;
  line-height: 27px;
  text-align: left;
  font-weight: lighter;
  max-width: 100%;
}
#customer-experience h3 {
  font-size: 24px;
  line-height: 37px;
  text-align: left;
  font-weight: normal;
  margin: 0;
}
}
@media (max-width:550px) {
  #hero .carousel-content {

    padding: 50px 0px !important;
    text-align: center;
  }
  #hero h2 {
    font-size: 21px !important;
}
#hero p {
  margin: 0 auto 10px auto;
  font-size: 13px !important;
}
#customer-experience p {
  font-size: 18px !important;
  line-height: 26px !important;
  text-align: left;
  font-weight: lighter;
  max-width: 100% !important;
}

#faq .accordion-button:not(.collapsed) {
  font-size: 20px !important; 
  font-weight: normal;
}
#faq .accordion-button:not(.collapsed) {

  font-size: 20px !important;
  font-weight: normal;
}
#news-event .testimonial-item .img-container {
  box-shadow: 0 ;
  background: transparent;
  border-radius: 0px;
}
#inner-page-main-tab .nav-tabs > li {
  margin-bottom: -1px;
  margin-right: 3px !important;
}
#tab-container2 .category-menu-container2 > div {
  font-size: 16px !important;
  margin: 0 10px !important;

}
#tab-container2 .list-group {
  padding: 0 0px !important;
}
#tab-container3 .list-group {
  padding: 0 0px !important;
}
.top-eating-home21 ul li {
  padding: 0px !important;
}
.top-eating-home21 .add-to-cart-btn {
  margin: 0 15px 0 0;
  padding: 8px 10px !important;
  letter-spacing: 1px;
}

}

.select-chef-services {
  display: flex;
  justify-content: center;
}
.get-started-btn {
  background-image: linear-gradient(#FA5F33, #FF8E1D);
  color: #fff;
  border-radius: 50px;
  margin: 0px 0 0 0px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}

#select-chef-services .get-started-btn:hover {
  background-image: linear-gradient( #FF8E1D, #FA5F33);
  color: #fff;
}




.menu .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
}

.menu .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}
.home-title {
  text-align: center;
  margin: 10px 20px 75px;
  position: relative;
}
.home-title h2 {
  font-size: 48px;
  font-weight: normal;
  padding: 0;
  margin: 20px 0;
  color: #141414;
  line-height: 70px;
}
.home-title::after {
  content: '';
  width: 67px;
  height: 3px;
  background-color: #E86A41;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

.home-title-left {
  text-align: left;
  margin: 10px 0px 75px;
  position: relative;
}
.home-title-left h2 {
  font-size: 48px;
  font-weight: normal;
  padding: 0;
  margin: 20px 0;
  color: #141414;
  line-height: 70px;
}
.home-title-left::after {
  content: '';
    width: 67px;
    height: 3px;
    background-color: #E86A41;
    position: absolute;
    left: 40px;
    transform: translateX(-50%);
    bottom: -25px;
}

#customer-experience p {
  font-size: 22px;
  line-height: 38px;
  text-align: left;
  font-weight: lighter;
  max-width: 90%;
}
#customer-experience .margin-left-20 {
  margin-left: 20px;
}
#customer-experience h3 {
  font-size: 32px;
  line-height: 53px;
  text-align: left;
  font-weight: normal;
  margin: 0;
}
#customer-experience h5 {
  font-size: 18px;
  line-height: 26px;
  text-align: left;
  font-weight: normal;
}
#customer-experience img {
  border-radius: 80px;
  max-width: 100%;
}


#three-steps-section {
  position: relative; 
  padding: 50px 0
}
#three-steps-section .white-container{
  position: relative;
  top: -150px;
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 1%), 0 4px 20px 0 rgb(0 0 0 / 10%);
  background: #fff;
  padding: 60px 0;
}

#three-steps-section .white-container h3{
  font-size: 28px;
  text-align: center;
  line-height: 40px;
  font-weight: normal;
}
#three-steps-section .white-container p{
  font-size: 16px;
  text-align: center;
  line-height: 24px;
  font-weight: normal;
  margin-bottom: 0;
}

#our-menu {
  position: relative; 
  top: -100px;
}
#our-menu .margin-column{
  margin-top: 80px !important;
}
#our-menu .column h3 {
  font-size: 24px;
    position: relative;
    top: -60px;  
}
#our-menu .menu-img-container {
  background-image: linear-gradient(#f2f2f4, #f2f2f4);

  border-radius: 27px;
  position: relative;
}
#our-menu .menu-img-container:hover, #our-menu .menu-img-container.active {
  background-image: linear-gradient(#FA5F33, #FF8E1D);
  border-radius: 27px;
  position: relative;
  color: #fff !important;
}
#our-menu .menu-img-container img{
  position: relative;
  top: -60px;
}

#customer-experience {
  position: relative; 
  
}

#customer-experience .section-bg {

    padding: 80px 0;
    background: url(../img/customer-experience-bg.png) no-repeat, linear-gradient(to right, #fff, #fff);
    position: relative;
    background-position: right;
}
#customer-experience .bi-star-fill::before {
  color: #FA5F33 !important;
}




.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #1D1D1D;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid #A8A8A8;
  opacity: 1;
  background-color: transparent;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3C3C3C;
  width: 20px;
  height: 20px;
  border: 2px solid #3C3C3C;
}

@media (min-width: 992px) {
.testimonials .testimonial-item p {
    width: 80%;
  }
  
}
@media (max-width: 1230px) {
  #customer-experience .section-bg {
    background: none;
  }
}


#meet-our-chef {
  padding: 50px 0;
  background: url(../img/meet-our-chef-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative; 
  
}
.meet-our-chef .meet-our-chef-carousel,
.meet-our-chef .meet-our-chef-slider {
  overflow: hidden;
}

.meet-our-chef .testimonial-item {
  text-align: center;
  color: #1D1D1D;
}

.meet-our-chef .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.meet-our-chef .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid #A8A8A8;
  opacity: 1;
  background-color: transparent;
}

.meet-our-chef .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3C3C3C;
  width: 20px;
  height: 20px;
  border: 2px solid #3C3C3C;
}
#meet-our-chef .m-top-80 {
  margin-top: 80px;
  margin-left: 30px;
}
#meet-our-chef .testimonial-item p{
  text-align: left;
  font-size: 16px;
}
#meet-our-chef .testimonial-item h3{
  text-align: left;
  font-size: 36px;
  line-height: 35px;
  font-weight: normal;
}
#meet-our-chef .bi-star-fill::before {
  color: #FA5F33 !important;
}

#meet-our-chef .testimonial-item .img-container{
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 1%), 0 4px 20px 0 rgb(0 0 0 / 10%);
  background: transparent;
  padding: 0px;
  border-radius: 24px;
}


#faq {
  margin: 0;
}
#faq .accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
  font-size: 28px;
  font-weight: normal;
}



#news-event {
  padding: 50px 0;
  background: url(../img/news-event-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative; 
  
}
.news-events .news-events-carousel,
.news-events .news-events-slider {
  overflow: hidden;
}

.news-events .testimonial-item {
  text-align: center;
  color: #1D1D1D;
}

.news-events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.news-events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 2px solid #A8A8A8;
  opacity: 1;
  background-color: transparent;
}

.news-events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3C3C3C;
  width: 20px;
  height: 20px;
  border: 2px solid #3C3C3C;
}

#news-event .testimonial-item p{
  text-align: left;
  font-size: 16px;
}
#news-event .testimonial-item h3{
  text-align: left;
  font-size: 36px;
  line-height: 35px;
  font-weight: normal;
}
#news-event .m-top-left-30 {
  padding: 20px;
    background: #fff;
}

#news-event .testimonial-item .img-container{
  box-shadow: 0 4px 4px 0 rgb(0 0 0 / 1%), 0 4px 20px 0 rgb(0 0 0 / 10%);
  background: transparent;
  border-radius: 24px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #3C3C3C;
  color: #848484;
  font-size: 14px;
  text-align: center;
  padding: 100px 0 20px 0;
}
#footer h2 {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
#footer ul {
  list-style: none;
 margin: 0;
 padding: 0;
}
#footer ul li a{
  font-size: 14px;
  line-height: 24px;
  color:#fff;
  font-weight: normal;
  text-align: center;

}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #CB641A;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}


#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 30px;
  display: inline-block;
  background: transparent;
  color: #FA5F33;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .form p{
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 200;
}
#footer .input-container {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  width: 100%;
  position: relative;

}

#footer .icon1 {
  padding: 5px 10px;
    background-color: #FA5F33;
    color: #fff;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(45deg);
    font-size: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50px;
}

#footer .input-field {
  width: 100%;
    padding: 12px 20px;
    outline: none;
    border: 1px solid #848484;
    border-radius: 30px;
    background-color: #848484;
    color: #000;
}

#footer .input-field:focus {
  border: 2px solid #CB641A;
}

#footer .social-links a:hover {
  background: transparent;
  color: #fff;
}

#footer .footer-contact-info p{
  color:#fff;
}
#footer .footer-contact-info p span{
  margin-right: 20px;
  font-size: 30px;
}


#footer .copyright {
  margin: 0 0 0px 0;
  padding: 20px 0;
}

#footer .credits {
  font-size: 13px;

}
  /*--------------Inner pages-------------*/
  #inner-page-hero {
    margin: 80px 0 50px 0;
  }
  #inner-page-hero h1{
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    line-height: 60px;
    color: #000;
  }

  #inner-page-container {
    margin: 80px 0;
  }
   
   #inner-page-container .nav>li>a {
     color:#A8A8A9 !important;
     background-color: transparent !important;
     font-size: 18px;
     line-height: 24px;
     padding: 20px 30px;
   }
   
   #inner-page-container .nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
     color:#000 !important;
     background-color: transparent !important;
     font-size: 18px;
     line-height: 24px;
   }
   
   
   #inner-page-container .nav {
     justify-content: center;
   }
   
   
   #inner-page-container .img-container {
     position: relative;
   }
   #inner-page-container .img-container .img-container-overlay {
     position: absolute; 
     right: 25px; 
     top: 20px;
     width: 200px;
   }
   #inner-page-container .img-container .img-container-overlay h2{
     font-size: 16px;
     line-height: 20px;
     text-align: left;
     font-weight:  normal;
   }
   #inner-page-container .img-container .img-container-overlay p{
     font-size: 12px;
     line-height: 18px;
     text-align: left;
     font-weight:  normal;
   }
   /** Start: to style navigation tab **/
      
   #inner-page-container .nav-tabs{
     *zoom: 1;
   }
   
   #inner-page-container .nav-tabs:before,
   .nav-tabs:after {
     display: table;
     content: "";
   }
   
   #inner-page-container .nav-tabs:after {
     clear: both;
   }
   
   #inner-page-container .nav-tabs > li {
     float: left;
   }
   
   #inner-page-container .nav-tabs > li > a {
     padding-right: 12px;
     padding-left: 12px;
     margin-right: 2px;
     line-height: 14px;
   }
   
   #inner-page-container .nav-tabs {
     border-bottom: 0;
       text-align: center;
       justify-content: center;
       display: flex;
       list-style: none;
       margin-bottom: 30px;
       flex-wrap: wrap;
   }
   
   #inner-page-container .nav-tabs > li {
     margin-bottom: -1px;
   }
   
   #inner-page-container .nav-tabs > li > a {
     color:#A8A8A9 !important;
     background-color: transparent !important;
     font-size: 18px;
     line-height: 24px;
     padding: 20px 30px;
   }
   
   #inner-page-container .nav-tabs > li > a:hover {
     border-color: #fff #fff #fff;
   }
   
   #inner-page-container .nav-tabs > .active > a,
   .nav-tabs > .active > a:hover {
     color:#000 !important;
     background-color: transparent !important;
     font-size: 18px;
     line-height: 24px;
   }
   
   
   
   #inner-page-container .tab-content.active{
     display: block;
   }
   
   #inner-page-container .tab-content.hide{
     display: none;
   }
   
   #inner-page-container img {
     width: 100%;
   }
   
   
   @media (max-width:550px) {
     #inner-page-container .nav-tabs {
       display: block !important;
    }
    
   }
   
   
   @media (max-width:380px){
     .img-height-mobile {
       height: 220px;
     }
   }
   @media (max-width:768px) {
     #inner-page-container .nav-tabs > li > a {
       color:#A8A8A9 !important;
       background-color: transparent !important;
       font-size: 14px;
       line-height: 20px;
       padding: 20px 10px;
       text-align: center;
     }
     
     #inner-page-container .nav-tabs > .active > a,
     .nav-tabs > .active > a:hover {
       color:#000 !important;
       background-color: transparent !important;
       font-size: 14px;
       line-height: 20px;
     }
     #inner-page-hero h1 {
      font-size: 32px;
      
  }
  #tab-container2 .list-group-item {
    
    display: block !important;
  }
  #tab-container3 .list-group-item {
    display: block !important;;
}
.top-eating-edit ul {
  justify-content: center !important;;

}

    }





    /** Start: to style navigation tab **/
    #inner-page-main-tab {
      margin: 50px 0 80px 0;
    }   
   #inner-page-main-tab .nav-tabs{
    *zoom: 1;
  }
  
  #inner-page-main-tab .nav-tabs:before,
  .nav-tabs:after {
    display: table;
    content: "";
  }
  
  #inner-page-main-tab .nav-tabs:after {
    clear: both;
  }
  
  #inner-page-main-tab .nav-tabs > li {
    float: left;
  }
  
  #inner-page-main-tab .nav-tabs > li > a {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 2px;
    line-height: 14px;
  }
  
  #inner-page-main-tab .nav-tabs {
    border-bottom: 0;
      text-align: center;
      justify-content: center;
      display: flex;
      list-style: none;
      margin-bottom: 30px;
  }
  
  #inner-page-main-tab .nav-tabs > li {
    margin-bottom: -1px;
    margin-right: 10px;
  }
  
  #inner-page-main-tab .nav-tabs > li > a {
    color:#A8A8A9 !important;
    background-color: transparent !important;
    font-size: 18px;
    line-height: 24px;
    padding: 10px 30px;
    border: none;
  }
  
  #inner-page-main-tab .nav-tabs > li > a:hover {
    border-color: #eeeeee #eeeeee #dddddd;
    border: 1px solid #FA5F33;
    color:#000 !important;
    border-radius: 20px;
    background-color: #FFF8F4;
  }
  
  #inner-page-main-tab .nav-tabs > .active > a,
  .nav-tabs > .active > a:hover {
    color:#000 !important;
    background-color: #FFF8F4 !important;
    font-size: 18px;
    line-height: 24px;
    border: 1px solid #FA5F33;
    border-radius: 20px;
  }
  

  #inner-page-main-tab .tab-content .active{
    display: block;
  }
  
  #inner-page-main-tab .tab-content .hide{
    display: none;
  }
  #inner-page-container .tab-contentainer {
    margin: 50px 0;
  }
  #inner-page-container .tab-contentainer .active{
    display: block;
  }
  #inner-page-container .tab-contentainer .hide{
    display: none;
  }
  /* Hide the browser's default checkbox */
 .home-plan-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
 .home-plan-box .checkmark{
  position: absolute;
  bottom: 40px;
  right: 24px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 15px;
}

/* On mouse-over, add a grey background color */
/* #inner-page-container .tab-contentainer .container:hover input ~ .checkmark {
  background-color: #ccc;
} */

/* When the checkbox is checked, add a blue background */
 .home-plan-box input:checked ~ .checkmark {
  background-color: #000;
    border: 2px solid #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
 .home-plan-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
 .home-plan-box input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
 .home-plan-box .checkmark:after {
  left: 9px;
    top: 4px;
    width: 9px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.calendar-container {

  margin-bottom: 80px;
}
.calendar-container {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;

}
.calendar-container div{
  margin: 10px;
}
.calendar-container  div input {
  border: 2px solid #D8D8D8;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 14px;
  color:#1D1D1D;
}
.calendar-container  div select {
  border: 2px solid #D8D8D8;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 14px;
  color:#1D1D1D;
  width: 130px;
}
.calendar-container  div .select-box:after {
  width: 0; 
  height: 0; 
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #f00;
  position: absolute;
  top: 40%;
  right: 5px;
  content: "";
  z-index: 98;

}
.calendar-container div h3{
  font-size: 36px;
  line-height: 46px;
  font-weight: normal;
  color: #FA5F33;
}



#inner-page-container .calendar-container {

  margin-bottom: 80px;
}
#inner-page-container  .calendar-container {
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;

}
#inner-page-container  .calendar-container div{
  margin: 10px;
}
#inner-page-container  .calendar-container  div input {
  border: 2px solid #D8D8D8;
    padding: 10px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #1D1D1D;
    position: relative;
    width: 100%;
    opacity: 1;
    height: auto;
}
#inner-page-container  .calendar-container  div select {
  border: 2px solid #D8D8D8;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 14px;
  color:#1D1D1D;
  width: 130px;
}

#inner-page-container  .calendar-container div h3{
  font-size: 36px;
  line-height: 46px;
  font-weight: normal;
  color: #FA5F33;
}

#tab-container1 .active {
  display: block;
}
#tab-container1 .hide {
  display: none;
}


#tab-container2 .active {
  display: block;
}
#tab-container2 .hide {
  display: none;
}


#tab-container2 .tab-contentainer .active {
  display: block;
}
#tab-container2 .tab-contentainer .hide {
  display: none;
}





#tab-container2 .category-menu-container2 {
  display: flex;
  margin: 0px 0 30px 0;
  flex-wrap: wrap;
}
#tab-container2 .category-menu-container2 > div{
  font-size: 18px;
  margin: 0 20px;
  color: #ACACAC;
  text-align: center;
  font-weight: 400;
}
#tab-container2 .category-menu-container2 > div:first-child{
  margin-left:0;
}
#tab-container2 .category-menu-container2 > div a{
  color: #ACACAC;
}
#tab-container2 .category-menu-container2 > div a:hover{
  color: #000;
}
#tab-container2 .category-menu-container2 > div img{
  display: block;
  margin: 10px auto;
}

#tab-container2 .icon::before {
  padding: 5px 10px;
  /* background: #fff; */
  color: #DDDDDD;
  text-align: center;
  position: relative;
  top: 30px; left: 0px;
}
#tab-container2 .form-control {
  padding-left: 40px;
  border-radius: 0;
  border: 0;
  border-bottom: 1.5px solid #ddd;
}
#tab-container2 .form-control {
  color: #dddddd;
}
#tab-container2 .list-group {
  padding: 0 20px;
}
#tab-container2 .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#tab-container2 .list-group-item {
  border: 0;
  border-bottom: 1px solid #ddd;
  display: flex;
}

#tab-container2 .list-group-item div{
  margin: 10px;
}
#tab-container2 .list-group-item div h2{
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #000;
  text-align: left;
}
#tab-container2 .list-group-item div p{
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #000;
  text-align: left;
  margin-bottom: 30px;
}

#tab-container2 .list-group-item div img{
  width: 100%;
  height: auto;
}
#tab-container2 {
  margin: 50px 0;
}

#tab-container3 {
  margin: 80px 0 0 0;
}

#tab-container3 .active {
  display: block;
}
#tab-container3 .hide {
  display: none;
}


#tab-container3 .tab-contentainer .active {
  display: block;
}
#tab-container3 .tab-contentainer .hide {
  display: none;
}


#tab-container3 .category-menu-container2 {
  display: flex;
  margin: 40px 0;
  flex-wrap: wrap;
}
#tab-container3 .category-menu-container2 > div{
  font-size: 18px;
  margin: 0 20px;
  color: #ACACAC;
  text-align: center;
  font-weight: 400;
}
#tab-container3 .category-menu-container2 > div:first-child{
  margin-left:0;
}
#tab-container3 .category-menu-container2 > div a{
  color: #ACACAC;
}
#tab-container3 .category-menu-container2 > div a:hover{
  color: #000;
}
#tab-container3 .category-menu-container2 > div img{
  display: block;
  margin: 10px auto;
}

#tab-container3 .icon::before {
  padding: 5px 10px;
  /* background: #fff; */
  color: #DDDDDD;
  text-align: center;
  position: relative;
  top: 30px; left: 0px;
}

#tab-container3 .list-group {
  padding: 0 20px;
}
#tab-container3 .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#tab-container3 .list-group-item {
  border: 0;
  border-bottom: 1px solid #ddd;
  display: flex;
}

#tab-container3 .list-group-item div{
  margin: 10px;
}
#tab-container3 .list-group-item div h2{
  font-size: 30px;
  font-weight: bold;
  line-height: 40px;
  color: #000;
  text-align: left;
}
#tab-container3 .list-group-item div p{
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: #000;
  text-align: left;
  margin-bottom: 30px;
}

#tab-container3 .list-group-item div img{
  width: 100%;
  height: auto;
}

#tab-container3 .top-eating-home21 ul li img {
  width: 36px !important;
  height: auto !important;
}


@media (max-width: 992px) {
#tab-container21 .add-to-cart-btn {
  margin: 0 15px 0 0;
  padding: 8px 20px;
  letter-spacing: 1px;

}
.category-menu-container2 {
      display: flex;
      margin: 20px 0;
  }
  .category-menu-container2 > div {
      font-size: 18px;
      margin: 0 20px;
     
  }
}

.top-eating-edit ul {
  list-style: none;
    display: flex;
    padding: 0;
    justify-content: flex-end;
    margin: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
}
.top-eating-edit ul li{
  font-size: 14px;
  color:#000;
  padding: 10px;
  margin: 10px;
}
.top-eating-edit li:last-child{
  display: flex;
  padding-top: 0px;
}



.top-eating-home21 ul {
  list-style: none;
  display: flex;
  padding: 0;
  justify-content: space-between;
  margin: 0;
  flex-wrap: wrap;
}
.top-eating-home21 ul li{
  font-size: 14px;
  color:#000;
  padding: 10px;
}
.top-eating-home21 ul li:last-child{
  display: flex;
  padding-top: 0px;
}
.top-eating-home21 ul li strike{
  font-size: 14px;
  color:#7F7F7F;
  margin-right: 10px;
}

.top-eating-home21 .btn-rating {
  border-radius: 8px;
  font-size: 14px !important;
  padding: 10px 10px;
  text-align: center;
  background-color: #38B572;
  color: #fff !important;
  margin: 0;
  position: static;
}
.top-eating-home21 .btn-rating-text {
  margin-left:10px; 
  color:#ACACAC; 
  font-size: 14px;
  line-height: 26px;
    padding: 5px 0;
}


.top-eating-home21 .add-to-cart-btn {
background: #696969;
color: #fff;
border-radius: 40px;
margin: 0 0 0 20px;
padding: 10px 25px;
font-size: 11px;
font-weight: 400;
letter-spacing: 1px;
transition: 0.3s;
white-space: nowrap;
}

.top-eating-home21 .add-to-cart-btn:hover {
background: #92B277;
color: #fff;
}

@media (max-width: 992px) {
.top-eating-home21 .add-to-cart-btn {
  margin: 0 15px 0 0;
  padding: 8px 20px;
  letter-spacing: 1px;

}
.category-menu-container2 {
      display: flex;
      margin: 20px 0;
  }
  .category-menu-container2 > div {
      font-size: 18px;
      margin: 0 20px;
     
  }
}

#select-container select {
  border: 2px solid #D8D8D8;
  padding: 10px 10px;
  border-radius: 20px;
  font-size: 14px;
  color: #1D1D1D;
  width: 130px;
}
#select-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}


#billing-page-hero {
  margin: 150px 0 50px 0;
    padding: 0;
}
#billing-page-hero h1{
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  line-height: 60px;
  color: #000;
}

#billing-page-container {
  margin: 0px 0;
}
.checkout .form-control {
  display: block;
  width: 100%;
  border: 1px solid #BABABA;
  
  }
.checkout .php-email-form lable{
  color: #3C3C3C;
  text-align: left;
  padding: 10px 0;
  font-weight: normal;
  font-size: 18px;
  font-family: 'Rubik';
    line-height: 30px;
  
  }
  .checkout .form-container {
    padding: 30px;
    background: #fff;
    border: 1px solid #BABABA;
    margin-bottom: 50px;
  }
.checkout .php-email-form {
  width: 100%;
    /* box-shadow: 0 0 24px 0 rgb(0 0 0 / 12%); */
    
}

.checkout .php-email-form .form-group {
  padding-bottom: 8px;
  margin: 5px 0;
}

.checkout .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.checkout .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.checkout .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.checkout .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.checkout .php-email-form input,
.checkout .php-email-form textarea{
  border-radius: 6px;
  box-shadow: none;
  font-size: 14px;
  color: #A0A0A0;
}
.checkout .checkbox{
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
    border: 1px solid #A0A0A0 !important;
        width: 25px;
    height: 25px !important;
    margin-right: 20px;
}

.checkout .php-email-form input {
  height: 44px;
}

.checkout .php-email-form textarea {
  padding: 10px 12px;
}

.checkout .php-email-form button[type=submit] {
  background: #CB641A;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.checkout .php-email-form button[type=submit]:hover {
  background: #ffa012;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
#checkout {
  margin: 0;
  padding: 0;
}
#checkout .user-login {
  padding: 20px 30px;
  background-color: #FFF8F4;
  border: 1px solid #FA5F33;
  margin: 20px 0;
}
#checkout .user-login h3{
  font-size: 32px;
  line-height: 40px;
  text-align: left;
  color:  #FA5F33;

}
#checkout .user-login h5{
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color:  #000;
  font-weight: normal;
  padding: 0;
  margin: 0;

}
#checkout h4 {
    font-size: 24px;
    color: #141414;
    line-height: 40px;
    font-weight: normal;
    margin-bottom: 20px;
}

#checkout h2 {
    font-size: 62px;
    color: #92B277;
    line-height: 70px;
    padding:  0;
    font-weight: normal;
}
#checkout p {
    font-size: 16px;
    color: #000;
    line-height: 30px;
    padding:20px  60px 20px 0;
    font-weight: 300;
}




#checkout .row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;

}





#checkout input[type=text], select {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 6px;
    box-shadow: none;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #A0A0A0;
}


#checkout label {
  margin-bottom: 10px;
  display: block;
}

#checkout .icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}



#checkout hr {
  border: 1px solid lightgrey;
}

#checkout span.price {
  float: right;
  color: grey;
}

.small-font {
  font-size: 13px !important;
  line-height: 18px;
}
.plan-tabs{
  display: none;
}
.plan-tabs.active{
  display: block;
}

.nav-pills li .nav-link{
  color: #A8A8A9 !important;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
  padding: 10px 30px;
  border: 1px solid transparent;
  border-radius: 20px;
}
.nav-pills li .active{
  color: #000 !important;
  background-color: #FFF8F4 !important;
 border-color: #FA5F33;

}
.tab-content .nav-pills li .nav-link{
  color: #A8A8A9 !important;
  background-color: transparent !important;
  font-size: 18px;
  line-height: 24px;
  padding: 5px 30px !important;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid transparent;
}
 .tab-content  #inner-page-container .nav-pills > li > .active{
  color: #000 !important;
}

.btn-group{
  box-shadow: 0 3px 10px rgba(0,0,0,0.16);
  border-radius: 5px;
  display: flex;
  column-gap: 2px;
}
.btn-group .btn-outline-primary{
  border-color: transparent;
  /*border-radius: 50% !important;*/
  color: #fff;
  background: #000;
 padding:10px 20px;
  display: flex; align-items: center;
  justify-content: center;
}
.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active, .btn-group .btn-outline-primary:hover {
  color: #fff;
  background-color: #FA5F33;
  border-color: #FA5F33;
  box-shadow: none;
}
.btn-check:active + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
  box-shadow: 0 0 0 .25rem rgba(250,95,51,.5);
}
.form-check-input:checked {
  background-color: #FA5F33;
  border-color: #FA5F33;
}
.menu-filter-btns .btn.active{
  display: inline-block !important;
}
.tab-content>.tab-pane:focus-visible{
 outline: none;
}
.confirm-box {
  background: #FFFAF8;
  padding: 30px;
  border: 1px solid #FAC9BC;
  border-radius: 7px;
}
.text-orange {
  color: #FA5F33 !important;
}
.para18 {
  font-size: 18px;
}
.overlay-dark{
  background: rgba(0,0,0,0.4);
  position: absolute;
left: 0;
  right: 0;
  top: 0;
  bottom: 0;

}


.nav-wrapper nav .active {
  color: #CB641A !important;
}
.text20{
  font-size: 18px;
}
.parsley-errors-list li {
    color: #CB3C35;
    list-style-type: none;
    font-weight: bold;
}
.parsley-errors-list {
    padding-left: 0px;
}
#our-menu .menu-img-container{height:100%;}