@charset "UTF-8";
/*------------------------------------------------------------------

 *
 * Author      : Badhon Khan
 * Project     : Resturent
 * Version     : 1.0.0
 * Last update : 17/8/29
 *

 * -----------------------------------------------------------------*
 *                         TABLE OF CONTENTS                        *
 * -----------------------------------------------------------------*
 *
 * 01. Base Styles
 * 02. Header
 * 03. Navigation
 * 04. Footer Styles
 * 05. Responsive Styles
 *

 * -----------------------------------------------------------------*
 *                        Color Codes                               *
 * -----------------------------------------------------------------*

 * $theme-color         : #fc854b;

 * $text-color          : #787878;
 * $text-color-dark     : #444444;
 * $bg-color-light      : #FFFFFF;
 * $bg-color-dark       : #f1f1f1;

-------------------------------------------------------------------*/
/*
	===================
	Google family
	===================
*/
/*
	===================
	Color
	===================
*/
/*
	===================
	Google Fonts
	===================
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,400i,500,500i");
@import url("../fonts/abril/font.css");
/*
	===================
	Base Styles.
	===================
*/
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #666666;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Abril Display";
  color: #333333;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 0.9rem;
}

a {
  transition: 0.5s;
}
a:hover {
  text-decoration: none;
}
p {
    font-weight: 400;
}

/*
	===================
	Padding Class
	===================
*/
.p0 {
  padding: 0;
}

.pr-0 {
  padding-right: 0;
}

.pl-0 {
  padding-left: 0;
}

.pt-0 {
  padding-top: 0;
}

/*
	===================
	Margin Class
	===================
*/
.m0 {
  margin: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-0 {
  margin-left: 0;
}

.mt-0 {
  margin-top: 0;
}

/*
	===================
	Position Class
	===================
*/
.pos-r {
  position: relative;
}

.pos-a {
  position: absolute;
}

/*
	===================
	Global Class
	===================
*/
.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.display-inline {
  display: inline;
}

.display-block {
  display: block;
}

.display-inline-block {
  display: inline-block;
}

.border-radius-0 {
  border-radius: 0 !important;
}

.width-auto {
  width: auto !important;
  margin: 0 auto;
}

.width-100 {
  width: 100%;
}

.highlight-text {
  color: #ff6f00;
}

.ct-rating i {
  color: #ff6f00;
}

.ct-comment a {
  color: #999999;
}
.ct-comment a:hover {
  color: #ff6f00;
}

.btn {
  font-family: "Abril Display";
}

.white-btn {
  border-color: white !important;
  background: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
}
.white-btn:hover {
  background: #ff6f00 !important;
  border-color: #ff6f00 !important;
}

.ct-tooltip {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  border-bottom: 1px dotted black;
}

.ct-tooltip .ct-tooltiptext {
  width: auto;
  background-color: #ff6f00;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
  padding: 3px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  font-family: "Abril Display";
  font-weight: 400;
  transform: translateX(-50%);
  padding: 4px 10px;
  line-height: 1;
  transition: opacity 1s;
}

.ct-tooltip .ct-tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ff6f00 transparent transparent transparent;
}

.ab {
  font-family: "Abril Display" !important;
}

.op {
  font-family: "Open Sans", sans-serif;
}

.ro {
  font-family: "Roboto", sans-serif;
}

#map {
  width: 100%;
  height: 200px;
}

.folding-section {
  overflow: hidden;
}

.slider-video .foody-video {
  width: 100%;
  height: 300px;
}

.imageHolder {
  z-index: 1;
}

/*
	===================
	Codetracker Btn
	===================
*/
.ct-primary-box-btn,
.ct-primary-btn {
  background: transparent;
  border-color: #ff6f00;
  color: #ff6f00;
  text-align: center;
  padding: 7px 15px;
  border-width: 2px;
  font-weight: 600;
  line-height: 1;
  font-size: 14px;
  border-radius: 50px;
}
.ct-primary-box-btn i,
.ct-primary-btn i {
  margin-left: 7px;
}
.ct-primary-box-btn:hover, .ct-primary-box-btn:active,
.ct-primary-btn:hover,
.ct-primary-btn:active {
  color: white;
  background: #ff6f00;
  border-color: #ff6f00 !important;
}
.ct-primary-box-btn:focus,
.ct-primary-btn:focus {
  outline: none;
  box-shadow: none;
}

.ct-primary-box-btn {
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  cursor: pointer;
  padding: 14px 90px;
}
.ct-primary-box-btn i {
  margin-right: 8px;
}

.social-media-btn {
  font-size: 12px;
  line-height: 11px;
  padding: 5px 10px;
  color: white;
  background: #ff6f00;
  border: 1px solid transparent;
}
.social-media-btn i {
  margin-right: 10px;
}
.social-media-btn:hover {
  border-color: #ff6f00;
  color: #ff6f00;
  background: white;
}

/*
	===================
	Codetracker Transparent
	===================
*/
.blog-active-bg {
  background: #ff6f00 !important;
  border-color: #ff6f00 !important;
}

.bg-transparent {
  background: transparent;
}

.bg-transparent-orange {
  background: rgba(255, 111, 0, 0.8);
}

.bg-transparent-green {
  background: rgba(156, 255, 0, 0.8);
}

.bg-transparent-red {
  background: rgba(255, 66, 0, 0.8);
}

.bg-transparent-sky {
  background: rgba(0, 222, 255, 0.8);
}

.border-transparent {
  border-color: transparent !important;
}
.border-transparent:hover {
  border-color: transparent !important;
}
.border-transparent:focus {
  box-shadow: none;
  color: #ff6f00;
}

/*
	===================
	Ct Title
	===================
*/
.ct-title .main-title {
  font-size: 22px;
  font-weight: 400;
  font-family: "Abril Display";
}
.ct-title .sub-title {
  font-size: 40px;
  font-weight: 600;
  font-family: "Abril Display";
}

.ct-center-title .main-title {
  font-size: 30px;
  font-weight: 600;
  font-family: "Abril Display";
}
.ct-center-title .sub-title {
  font-size: 20px;
  font-weight: 400;
  font-family: "Abril Display";
}

#breadcrumb {
  position: relative;
}
#breadcrumb .breadcrumb-bottom-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  text-align: center;
  transform: translateX(-50%);
}
#breadcrumb .breadcrumb-bottom-bg img {
  transform: translateY(4px);
}

.breadcrumb-box {
  color: white;
}
.breadcrumb-box .main-title {
  font-family: "Abril Display";
}
.breadcrumb-box .breadcrumb-page-location a {
  color: white;
  font-family: "Abril Display";
}
.breadcrumb-box .breadcrumb-page-location a:hover {
  color: #ff6f00;
}

/*
	===================
	Color Title
	===================
*/
.nav-active {
  color: #ff6f00 !important;
}

.li-white {
  color: white !important;
}

.color-white {
  color: white !important;
}

.color-black {
  color: #222222;
}

.color-dark {
  color: #333333;
}

.color-orange {
  color: #ff6f00 !important;
}

.color-green {
  color: #5099e4;
}

.color-twitter {
  color: #00aaf0;
}

.bg-orange {
  background: #ff6f00;
}

.bg-white {
  background: white;
}

.bg-facebook {
  background: #395795;
  border-color: #21335b;
}

.color-facebook {
  color: #395795;
}

.bg-twitter {
  background: #00aaf0;
  border-color: #0082be;
}

.color-twitter {
  color: #00aaf0;
}

.bg-pinterest {
  background: #c81e25;
  border-color: #aa2b1d;
}

.bg-google {
  background: #df4f3c;
  border-color: #ad2d1f;
}

.bg-tumblr {
  background: #35465c;
  border-color: #35465c;
}

.bg-dark-blue {
  background: #0e0c28;
}

.color-youtube {
  color: red;
}

.color-vimeo {
  color: #1ab7ea;
}

.ct-active {
  background: #ff6f00;
  color: white !important;
}
.ct-active:hover {
  background: #fff;
  color: #ff6f00 !important;
}

.cursor-pointer {
  cursor: pointer;
}

/*
	===================
	Responsive Class
	===================
*/
@media (max-width: 575px) {
  .hidden-xs-down,
  .hidden-sm-down,
  .hidden-md-down,
  .hidden-lg-down,
  .hidden-xl-down,
  .hidden-xs-up {
    display: none !important;
  }

  .hidden-sm-up,
  .hidden-md-up,
  .hidden-lg-up {
    display: block !important;
  }

  /*
  	=========================
  	Global Class
  	=========================
  */
  section {
    padding: 20px 0;
  }

  .img-100 {
    width: 100%;
  }

  .ct-center {
    text-align: center;
  }

  .ct-title {
    padding: 10px 0;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm-down,
  .hidden-md-down,
  .hidden-lg-down,
  .hidden-xl-down,
  .hidden-sm-up,
  .hidden-xs-up {
    display: none !important;
  }

  .hidden-md-up,
  .hidden-lg-up,
  .hidden-xl-up {
    display: block !important;
  }

  /*
  	=========================
  	Global Class
  	=========================
  */
  section {
    padding: 30px 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md-down,
  .hidden-lg-down,
  .hidden-xl-down,
  .hidden-sm-up,
  .hidden-md-up,
  .hidden-xs-up {
    display: none !important;
  }

  .hidden-lg-up,
  .hidden-xl-up {
    display: block !important;
  }

  /*
  	=========================
  	Global Class
  	=========================
  */
  section {
    padding: 40px 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg-down,
  .hidden-xl-down,
  .hidden-sm-up,
  .hidden-lg-up,
  .hidden-md-up,
  .hidden-xs-up {
    display: none !important;
  }

  .hidden-xl-up {
    display: block !important;
  }
}
@media (min-width: 1300px) {
  .hidden-xl-down,
  .hidden-sm-up,
  .hidden-lg-up,
  .hidden-md-up,
  .hidden-xs-up {
    display: none !important;
  }

  .min-img {
    width: 7% !important;
  }
  /*
  	===================
  	Ct Title
  	===================
  */
  .ct-center-title {
    margin-bottom: 40px;
  }
}
/*
	================================
	Custom Query
	================================
*/
@media (max-width: 991px) {
  /*
  	=========================
  	Global Class
  	=========================
  */
  .ct-dw-center {
    text-align: center;
  }

  .ct-dw-left {
    text-align: left;
  }

  .ct-dw-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  /*
  	=========================
  	Global Class
  	=========================
  */
  .ct-up-center {
    text-align: center;
  }

  .ct-up-left {
    text-align: left;
  }

  .ct-up-right {
    text-align: right;
  }

  .pos-center-v {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
  }

  #breadcrumb {
    padding: 70px 0;
  }

  /*
  	=========================
  	Button
  	=========================
  */
  .ct-primary-btn {
    font-size: 16px;
    padding: 11px 40px;
  }
}
@media (max-width: 1024px) {
  /*
  	===================
  	Ct Title
  	===================
  */
  .ct-title .main-title {
    font-size: 20px;
    padding-right: 0 !important;
  }
  .ct-title .sub-title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .slider-video .foody-video {
    height: 600px;
  }
}
 /*
	========================
	Header Section
	========================
*/
#gradient-page {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5d00+0,f4d800+100 */
  background: #ff5d00;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(top left, #ff5d00 0%, #f4d800 100%);
  background: -o-linear-gradient(top left, #ff5d00 0%, #f4d800 100%);
  background: linear-gradient(to bottom right, #ff5d00 0%, #f4d800 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5d00', endColorstr='#f4d800',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

.img-gradient {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5d00+0,f4d800+100 */
  background: #ff5d00;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(top left, rgba(255, 93, 0, 0.4) 0%, rgba(244, 216, 0, 0.5) 100%) !important;
  background: -o-linear-gradient(top left, rgba(255, 93, 0, 0.4) 0%, rgba(244, 216, 0, 0.5) 100%) !important;
  background: linear-gradient(to bottom right, rgba(255, 93, 0, 0.4) 0%, rgba(244, 216, 0, 0.5) 100%) !important;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5d00', endColorstr='#f4d800',GradientType=1 ) !important;
  /* IE6-9 fallback on horizontal gradient */
}

#header-info {
  background: #222222;
  padding: 10px;
  position: relative;
  z-index: 11;
}
#header-info i {
  margin-right: 10px;
  font-size: 16px;
}
#header-info a {
  color: #fff;
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
}
#header-info button {
  color: #999999;
}
#header-info .nav-item {
  position: relative;
}
#header-info .nav-item:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 15px;
  width: 1px;
  transform: translateY(-50%);
  background: #444444;
}
#header-info .nav-item:last-child:before {
  display: none;
}
#header-info .dropdown-menu {
  background: #f1f1fb;
}
#header-info .dropdown-menu a {
  margin-bottom: 0;
  color: #333333;
  font-family: "Abril Display";
  border-bottom: 1px solid rgba(218, 218, 218, 0.68);
}
#header-info .dropdown-menu a:last-child {
  border-bottom: 0;
}
#header-info .dropdown-menu a:hover {
  background: #fff;
  color: #ff6f00;
}

#header-nav {
  position: relative;
  z-index: 10;
  background: #f1f1fb;
}
#header-nav .ct-logo {
  padding: 20px 0 12px;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 768px) {
  #header-info .dropdown {
    line-height: 1;
  }
  #header-info .dropdown button {
    line-height: 1;
  }
  #header-info a {
    margin: 0;
    line-height: 1;
  }
  #header-info .header-info-content div {
    display: inline-block;
  }
}
@media (min-width: 1200px) {
  #header-nav .food-nav .nav-link {
    padding: 0.5rem 0 0.5rem 0 !important;
    margin-right: 2rem;
  }
  #header-nav .food-nav li:last-child .nav-link {
    margin: 0;
  }
 .registered {
    position: absolute;
     top: 2px; 
    margin-right: -20% !important
  }
}
@media (min-width: 1300px) {
   .registered {
    margin-right: 13% !important
  }
}

@media (max-width: 768px) {
  #header-info .header-info-btn {
    padding-top: 9px;
  }
  
}
/*
	========================
	ALL Nav Section
	========================
*/
#header-nav .navbar-toggler {
  transform: translateY(10px);
}
#header-nav .nav-link {
  color: #333333;
  font-weight: 400;
}
#header-nav .nav-link:hover {
  color: #ff6f00;
}
#header-nav .food-nav .nav-link {
  padding: 0.5rem 3.5rem;
}
#header-nav .food-nav .nav-link:hover {
  color: #ff6f00;
}
#header-nav .food-nav .nav-link i {
  margin-right: 5px;
}

.ct-header-nav-btn {
  font-weight: 400;
  margin-left: 20px;
}

.stellarnav ul ul {
  background: white;
}

.stellarnav li.has-sub > a:after {
  content: "\f107";
}

.stellarnav li li.has-sub > a:after {
  content: "\f105";
}

.stellarnav li.drop-left li.has-sub > a:after {
  content: "\f104";
}

.stellarnav.mobile ul {
  background: white;
}

.stellarnav.mobile.active > ul, .stellarnav.mobile > ul > li {
  border-bottom: 1px solid rgba(221, 221, 221, 0.35);
}

.stellarnav.mobile.active > ul ul, .stellarnav.mobile > ul > li ul > li {
  border-bottom: 1px solid rgba(221, 221, 221, 0.35);
  padding-left: 15px;
}
.stellarnav.mobile.active > ul ul:last-child, .stellarnav.mobile > ul > li ul > li:last-child {
  border-bottom: 0;
}

.stellarnav > ul > li > a {
  padding: 14px 10px;
}

.stellarnav li.hover a:hover {
  background: #ff6f00 !important;
  color: #fff;
}

.stellarnav > ul > li > a {
  color: #333333;
  font-weight: 400;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

/*
.pogoSlider--dirCenterHorizontal .pogoSlider-dir-btn {
  display: none;
}
*/

.pogoSlider-nav-btn {
  width: 15px;
  height: 15px;
}

.pogoSlider-nav-btn--selected {
  background: #ff6f00;
}

.stellarnav li.hover a.ct-nav-link:hover {
  background: transparent !important;
  color: #ff6f00;
}

.header-one > ul > li > a {
  padding: 0 5px;
  color: #333333;
  font-weight: 400;
}

.header-one ul ul {
  width: 200px;
}

.header-one ul ul ul {
  left: 200px;
}

.header-one li.drop-left ul ul {
  right: 200px;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 992px) and (max-width: 1199px) {
  #header-nav .food-nav {
    padding: 2rem 1.5rem 0.5rem;
  }
  #header-nav .ct-main-ul {
    margin: 0;
  }
  #header-nav .ct-main-menu {
    position: relative;
  }
  #header-nav .ct-main-nav {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  #header-nav .ct-main-nav .nav-item {
    border: 0;
  }
  #header-nav .ct-main-nav .nav-item:last-child {
    border: 0;
  }
  #header-nav .ct-main-nav .nav-link {
    padding: 0.5rem 1.5rem;
  }
}
@media (min-width: 992px) {
  #header-nav .ct-main-ul {
    margin: 0;
  }
  #header-nav .ct-main-ul .nav-item {
    margin-right: 22px;
    border-top: 0;
  }
  #header-nav .ct-main-ul .nav-item:last-child {
    margin-right: 0;
    border-bottom: 0;
  }
  #header-nav .ct-main-ul .nav-link {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  #header-nav .ct-main-ul .nav-link,
  #header-nav .food-nav .nav-link {
    font-size: 14px;
  }
}
/*
	========================
	Footer Section
	========================
*/
#footer-section {
  padding: 30px 0 20px;
  background-size: cover !important;
  background-position: center center !important;
}
#footer-section .footer-logo {
  margin-bottom: 30px;
}
#footer-section .social-media a {
  margin: 5px 12px;
}
#footer-section .footer-nav {
  padding: 20px 0;
}
#footer-section .footer-nav a {
  font-size: 16px;
  color: #a4a4a4;
  font-weight: 600;
  padding: 5px 14px;
}
#footer-section .footer-nav a:hover {
  color: #ff6f00;
}
#footer-section .copyright {
  font-size: 16px;
  letter-spacing: 2px;
  color: #a4a4a4;
}
#footer-section .copyright br {
  display: none;
}
#footer-section .copyright a {
  color: #ff6f00;
}
#footer-section .copyright a:hover {
  color: white;
}

#footer-section .img-holder {
  top: 0;
  left: 0;
  height: 100% !important;
}

@media (min-width: 1024px) {
  #footer-section {
    padding: 60px 0;
  }
}
/**
 * ---------------------------------------------------------------------------
 * 0?. Responsive Styles
 * ---------------------------------------------------------------------------
 */
/*
	======================
	Home Page Section
	======================
*/
/*
	========================
	Slider Section
	========================
*/
.folding-section {
  position: relative;
  height: 100%;
}
.folding-section .owl-carousel {
  position: absolute;
  top: 0;
  height: 100%;
  overflow: hidden;
}
.folding-section .owl-carousel div {
  height: 100%;
}
.folding-section .owl-carousel .owl-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.folding-section .slider-info {
  position: absolute;
  top: 50%;
  width: 100%;
}

.slider-parallax .slider-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto !important;
  z-index: 10;
}

.home-transparent #header-info,
.home-transparent #header-nav {
  background: transparent;
}
.home-transparent #header-info button,
.home-transparent #header-nav .nav-link,
.home-transparent .stellarnav > ul > li > a,
.home-transparent #header-info a {
  color: white;
}

#header-info .dropdown-menu a {
    color: #333;
}

.home-transparent #header-info button:hover,
.home-transparent #header-nav .nav-link:hover,
.home-transparent .stellarnav > ul > li > a:hover,
.home-transparent #header-info a:hover {
  color: #ff6f00;
}
.home-transparent #header-info {
  border-bottom: 1px solid #f1f1f152;
}
.home-transparent #header-nav .nav-link {
  border: 0;
}
.home-transparent #header-info .nav-item:before {
  background: white;
}
.home-transparent #header-info .nav-item:last-child:before {
  display: none;
}

.slider-video .slider-info {
  top: 50%;
  transform: translateY(-50%);
}

.img-gradient-folding-section {
  background: url("../img/slider/slide-img-3.jpg");
  background-size: cover;
}

.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.overlay-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff5d00+0,f4d800+100 */
  background: #ff5d00;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-linear-gradient(top left, rgba(255, 93, 0, 0.2) 0%, #f4d800 100%);
  background: -o-linear-gradient(top left, rgba(255, 93, 0, 0.2) 0%, #f4d800 100%);
  background: linear-gradient(to bottom right, rgba(255, 93, 0, 0.2) 0%, #f4d800 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5d00', endColorstr='#f4d800',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}

body,
html {
  height: 100%;
}

.folding-section .slider-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 9;
}
.folding-section .pogoSlider {
  height: 100%;
}
.folding-section .pogoSlider-2 {
  height: 100%;
}

/*
	========================
	Media Query
	========================
*/
@media (max-width: 992px) {
  .folding-section .owl-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .slider-video .slider-info .slider-main-title,
  .slider-parallax .slider-info .slider-main-title,
  .folding-section .slider-info .slider-main-title {
    line-height: 55px;
  }
}
@media (min-width: 993px) {
  .folding-section {
    position: relative;
  }
  .folding-section .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .folding-section .owl-nav div {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff6f00;
    text-align: center;
  }
  .folding-section .owl-nav div:last-child {
    float: right;
  }
  .folding-section .owl-nav i {
    font-size: 30px;
    color: #fff;
    transform: translateY(5px);
  }
  .folding-section .owl-dots {
    text-align: center;
    position: absolute;
    height: auto !important;
    bottom: 20px;
    width: 100%;
  }
  .folding-section .owl-dots .owl-dot {
    display: inline-block;
    height: 10px !important;
    width: 10px;
    border-radius: 100%;
    border: 2px solid white;
    background: #353839;
    margin: 0 5px;
  }
  .folding-section .owl-dots .active {
    width: 15px;
    height: 15px !important;
    background: #ff6f00;
  }
}
@media (min-width: 1024px) {
  .slider-parallax .slider,
  .slider-parallax .slider-info,
  .folding-section .slider,
  .folding-section .slider-info {
    height: 640px;
  }
  .slider-parallax .slider-main-title,
  .folding-section .slider-main-title {
    font-size: 50px;
  }
  .slider-parallax .slider-sub-title,
  .folding-section .slider-sub-title {
    font-size: 20px;
  }

  .slider-video .slider-main-title {
    font-size: 50px;
  }
  .slider-video .slider-sub-title {
    font-size: 20px;
  }
}
/*
	========================
	Testimonial Section
	========================
*/
#ct-testimonial {
  background-repeat: no-repeat !important;
}
#ct-testimonial .testimonial-slider {
  position: relative;
  margin: 20px 0;
}
#ct-testimonial .testimonial-slider .item {
  padding-top: 80px;
  padding-bottom: 20px;
  text-align: center;
}
#ct-testimonial .owl-dots {
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
  padding-top: 6px;
}
#ct-testimonial .owl-dots .active {
  transition: 0.5s;
  box-shadow: 0px 0px 0px 4px #ff6f00, 0px 0px 50px 0px rgba(75, 86, 107, 0.1);
}
#ct-testimonial .owl-dot {
  width: 150px;
  height: 150px;
  display: inline-block;
  margin-right: 20px;
  border-radius: 100%;
}
#ct-testimonial .owl-dot:last-child {
  margin-right: 0;
}
#ct-testimonial .owl-dot:nth-of-type(1) {
  background: url("../img/testimonial/testimonial-img-5.png");
}
#ct-testimonial .owl-dot:nth-of-type(2) {
  background: url("../img/testimonial/testimonial-img-2.png");
}
#ct-testimonial .owl-dot:nth-of-type(3) {
  background: url("../img/testimonial/testimonial-img-4.png");
}
/* #ct-testimonial .owl-dot:nth-of-type(4) {
  background: url("../img/testimonial/testimonial-img-4.png");
} */
/* #ct-testimonial .owl-dot:nth-of-type(5) {
  background: url("../img/testimonial/testimonial-img-5.png");
} */
#ct-testimonial .owl-nav {
  position: absolute;
  left: 50%;
  padding: 0 15px;
  transform: translateX(-50%);
}
#ct-testimonial .owl-nav div {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
  border: 1px solid #ff6f00;
  color: #ff6f00;
  transition: 0.5s;
}
#ct-testimonial .owl-nav div i {
  margin-top: 5px;
  font-size: 25px;
}
#ct-testimonial .owl-nav div:hover {
  background: #ff6f00;
  color: #fff;
}
#ct-testimonial .owl-nav .owl-next {
  float: right;
}

@-webkit-keyframes AnimateHorizontal {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100000px 0;
  }
}
@-moz-keyframes AnimateHorizontal {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100000px 0;
  }
}
@-o-keyframes AnimateHorizontal {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100000px 0;
  }
}
@keyframes AnimateHorizontal {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100000px 0;
  }
}
#ct-testimonial {
  -webkit-animation: AnimateHorizontal 2500s linear infinite;
  -moz-animation: AnimateHorizontal 2500s linear infinite;
  -o-animation: AnimateHorizontal 2500s linear infinite;
  animation: AnimateHorizontal 2500s linear infinite;
  background-repeat: repeat-x !important;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 768px) {
  #ct-testimonial .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
  }
  #ct-testimonial .owl-nav div {
    border-color: transparent;
    width: auto;
    height: auto;
  }
  #ct-testimonial .owl-nav div i {
    font-size: 40px;
    transition: 0.5s;
    color: #333333;
  }
  #ct-testimonial .owl-nav div:hover {
    background: transparent;
  }
  #ct-testimonial .owl-nav div:hover i {
    color: #ff6f00;
  }
}
@media (min-width: 1200px) {
  #ct-testimonial {
    padding: 70px 0;
  }
  #ct-testimonial .ct-center-title {
    margin-bottom: 12px;
  }
}
/*
	========================
	Specialities foodys Section
	========================
*/
#specialities-foodys {
  background: #f1f1fb;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 1024px) {
  #specialities-foodys .specialities-description {
    padding: 0 50px 0 10px;
  }
}
@media (min-width: 1200px) {
  #specialities-foodys {
    padding-bottom: 70px;
  }
  #specialities-foodys .specialities-description {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 50px;
    padding-right: 30px;
  }
  #specialities-foodys .ct-primary-btn {
    margin-top: 20px;
  }
}
/*
	========================
	Why choose us Section
	========================
*/
#why-choose-us {
  overflow: hidden;
}
#why-choose-us .ct-title {
  padding-bottom: 20px;
}
#why-choose-us .choose-us-title {
  font-size: 1rem;
  transition: 0.5s;
}
#why-choose-us .main-title {
  padding-right: 50px;
}
#why-choose-us .media img {
  transition: 0.5s;
}
#why-choose-us .media:hover img {
  opacity: 0;
}
#why-choose-us .media:hover .hover-icon img {
  opacity: 1;
}
#why-choose-us .media:hover .choose-us-title {
  color: #ff6f00;
}
#why-choose-us .hover-icon img {
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
#why-choose-us .why-choose-us-list {
  position: relative;
  z-index: 10;
}

.parallax-box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.parallax-box .parallax-left-img img {
  transform: translateY(100px);
}

.why-choose-us-img img {
  animation-name: spin;
  animation-duration: 80s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }

  to {
    -ms-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/*
	================================
	Custom Query
	================================
*/
@media (min-width: 1200px) {
  #why-choose-us {
    padding: 70px 0;
  }
  #why-choose-us .main-title {
    padding-right: 50px;
  }
  #why-choose-us .media .choose-us-title {
    font-size: 20px;
    font-weight: 700;
  }
  #why-choose-us .media .media-body {
    padding-left: 18px;
  }
}
/*
	========================
	Week’s Special Section
	========================
*/
#week-special {
  background-color: #f2f3f3;
  background-size: cover !important;
  background-position: center center !important;
}
#week-special .special-offer {
  color: #fff;
  padding: 30px 20px;
  margin-bottom: 20px;
  position: relative;
}
#week-special .special-offer .offer-title {
  color: #fff;
}
#week-special .special-offer:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px dotted white;
}
#week-special .product-box-area .owl-nav {
  position: absolute;
  left: 0;
  padding: 0 15px;
  width: 100%;
}
#week-special .product-box-area .owl-nav div {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #ff6f00;
  color: #ff6f00;
  transition: 0.5s;
}
#week-special .product-box-area .owl-nav div i {
  margin-top: 5px;
  font-size: 25px;
}
#week-special .product-box-area .owl-nav div:hover {
  background: #ff6f00;
  color: #fff;
}
#week-special .product-box-area .owl-nav .owl-next {
  float: right;
}
#week-special .product-box {
  position: relative;
  margin-bottom: 20px;
}
#week-special .product-box i, #week-special .product-box a {
  transition: 0.5s;
}
#week-special .product-box:hover .ct-product-review {
  background: #ff6f00;
}
#week-special .product-box:hover .ct-product-review i, #week-special .product-box:hover .ct-product-review a {
  color: white;
}
#week-special .product-box .ct-product-review {
  padding: 10px;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  transition: 0.5s;
  transform: translateY(-100%);
}
#week-special .product-box .caption {
  background: #fff;
  padding: 20px;
}
#week-special .product-box .ct-product-title {
  font-size: 16px;
  font-family: "Abril Display";
  color: #333333;
  margin-bottom: 5px;
  display: inline-block;
  transition: 0.5s;
}
#week-special .product-box .ct-product-title:hover {
  color: #ff6f00;
}
#week-special .special-product {
  padding-right: 20px;
}

.week-special .ct-primary-btn {
  position: relative;
  z-index: 10;
  margin-top: 5px;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 1200px) {
  #week-special {
    padding: 70px 0;
  }
  #week-special .product-box-area {
    padding-bottom: 30px;
    padding-top: 10px;
  }
  #week-special .special-offer p {
    font-size: 20px;
    margin: 0;
    font-family: "Abril Display";
  }
  #week-special .special-offer .offer-title {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
  }
  #week-special .special-product {
    margin-right: 13px;
  }
}
@media (min-width: 1400px) {
  #week-special .product-box-area .owl-nav {
    position: absolute;
    left: 0;
    padding: 0 15px;
    width: 100%;
    top: 49%;
    transform: translateY(-100%);
  }
  #week-special .product-box-area .owl-prev {
    margin-left: -100px;
  }
  #week-special .product-box-area .owl-next {
    margin-right: -100px;
  }
}
/*
		================================
		Reservation Section
		================================
*/
#reservation .ct-title-main-subtitle,
#reservation .ct-title-main-title {
  color: white;
}
#reservation .ct-title-main-title {
  font-weight: 600;
}
#reservation .ct-title-main-subtitle {
  font-weight: 400;
}
#reservation .reservation-info {
  color: #cecece;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 768px) and (max-width: 1024px) {
  #reservation .ct-title {
    margin-bottom: 20px;
  }
  #reservation .reservation-description {
    display: none;
  }
}
/*
		================================
		Reservation Section
		================================
*/
#experts-chef .experts-chef-box {
  margin-bottom: 20px;
  transition: 0.5s;
  overflow: hidden;
}
#experts-chef .experts-chef-box:hover .chef-img {
  display: inline-block;
  border-radius: 100%;
  box-shadow: 0px 0px 0px 4px white, 0px 0px 50px 0px rgba(75, 86, 107, 0.1);
}
#experts-chef .experts-chef-box:hover .caption-title {
  color: #ff6f00;
}
#experts-chef .experts-chef-box:hover .chef_social_media .fa-facebook-official,
#experts-chef .experts-chef-box:hover .chef_social_media .fa-twitter-square,
#experts-chef .experts-chef-box:hover .chef_social_media .fa-youtube-play,
#experts-chef .experts-chef-box:hover .chef_social_media .fa-vimeo-square {
  margin-left: 0;
}
#experts-chef .experts-chef-box:hover .chef_social_media .fa-facebook-official {
  transition: 0.3s;
}
#experts-chef .experts-chef-box:hover .chef_social_media .fa-twitter-square {
  transition: 0.5s;
}
#experts-chef .experts-chef-box:hover .chef_social_media .fa-youtube-play {
  transition: 0.7s;
}
#experts-chef .experts-chef-box:hover .chef_social_media .fa-vimeo-square {
  transition: 0.9s;
}
#experts-chef .experts-chef-box .caption {
  padding-top: 20px;
  font-family: "Abril Display";
  color: #666666;
}
#experts-chef .experts-chef-box .caption .caption-title {
  font-size: 1.2rem;
  transition: 0.5s;
  margin-bottom: 2px;
}

.chef_social_media {
  top: 0;
  padding-left: 15px;
}
.chef_social_media i {
  transition: 0.5s;
  margin-left: -80px;
}
.chef_social_media a {
  color: #333333;
  font-size: 25px;
  transition: 0.5s;
}
.chef_social_media a:hover {
  color: #ff6f00;
  transform: translateX(10px);
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 1200px) {
  #experts-chef {
    padding: 70px 0;
  }
  #experts-chef .experts-chef-box .caption {
    padding-top: 30px;
  }
  #experts-chef .experts-chef-box .caption .caption-title {
    font-size: 22px;
  }
  #experts-chef .experts-chef-box .caption p {
    font-size: 16px;
  }
}
/*
		================================
		Call to Action Section
		================================
*/
#call-to-action {
  position: relative;
  overflow: hidden;
}
#call-to-action .call-to-action-content,
#call-to-action .call-to-action-title {
  color: white;
}

.parallax-box-call-to-action {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 1200px) {
  #call-to-action {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  #call-to-action .call-to-action-content {
    margin-bottom: 30px;
  }
  #call-to-action .ct-primary-btn {
    margin-top: 0;
  }
}
/*
		================================
		Partner Section
		================================
*/
#partner {
  background: #efeee2;
}
#partner .owl-nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
#partner .owl-nav div {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  color: #ff6f00;
  transition: 0.5s;
}
#partner .owl-nav div i {
  margin-top: 5px;
  font-size: 35px;
}
#partner .owl-nav .owl-prev {
  float: left;
}
#partner .owl-nav .owl-next {
  float: right;
}

/*
	======================
	Menu Page Section
	======================
*/
/*
	======================
	About Page Style
	======================
*/
#ct-about .ct-quotation {
  font-style: italic;
  color: #666666;
}
#ct-about .ct-owner-name {
  color: #333333;
  font-style: italic;
}
#ct-about .ct-about-share-box {
  border-top: 1px solid #e2dacf;
}
#ct-about .owner-contact a {
  border: 2px solid #ff6f00 !important;
}
#ct-about .owner-contact a:hover {
  background: white;
  color: #ff6f00;
}

@media (max-width: 1024px) {
  .social-media-btn-box {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .social-media-btn-box {
    text-align: center;
    padding-top: 27px;
  }

  #ct-about .ct-quotation {
    padding-top: 32px;
    padding-bottom: 50px;
  }
  #ct-about .ct-owner-name {
    padding-top: 24px;
  }
  #ct-about .ct-about-description-box {
    padding-bottom: 28px;
  }
  #ct-about .ct-about-video-title {
    padding: 30px 0;
  }
  #ct-about .owner-contact {
    padding-top: 20px;
  }
  #ct-about .ct-about-box {
    padding-bottom: 22px;
  }
  #ct-about .ct-about-share-box {
    padding-top: 9px;
    padding-bottom: 20px;
  }
  #ct-about .social-media-btn {
    margin: 0 8px;
  }
}
/*
	======================
	Menu Page Section
	======================
*/
/*
	======================
	All Menu Page Style
	======================
*/
#all-menu-list .ct-collapse-btn {
  width: 100%;
  text-align: left;
}
#all-menu-list .nav {
  text-align: center;
}
#all-menu-list .nav a {
  font-family: "Abril Display";
  color: #222222;
  line-height: 1;
  padding: 10px 18px;
}
#all-menu-list .nav a:hover {
  border-color: transparent;
}
#all-menu-list .nav .active {
  background: #ff6f00;
  border-color: transparent;
  color: white !important;
  border-radius: 30px;
}
#all-menu-list .menu-title {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  letter-spacing: 3px;
}
#all-menu-list .menu-title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e8e2d8;
  transform: translateY(-50%);
}
#all-menu-list .menu-title span {
  position: relative;
  background: #fcfaf5;
  z-index: 10;
  font-family: "Abril Display";
}
#all-menu-list .menu-item {
  padding: 10px 20px;
  background: transparent;
}
#all-menu-list .product-name {
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
#all-menu-list .product-content {
  color: #666;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 768px) {
  #all-menu-list .menu-item {
    padding: 10px 0;
  }
  #all-menu-list .nav {
    padding: 20px 20px 0;
    border-bottom: 0;
  }
  #all-menu-list .nav a {
    padding: 10px 15px;
  }
}
@media (min-width: 1200px) {
  #all-menu-list {
    padding: 70px 0;
  }
  #all-menu-list .nav {
    padding: 0;
  }
  #all-menu-list .nav a {
    padding: 14px 20px;
  }
  #all-menu-list .nav .active {
    position: relative;
  }
  #all-menu-list .nav .active:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 18px;
    background: url("../img/menu/angle-top.png");
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
  }
  #all-menu-list .menu-list-block {
    text-align: center;
  }
  #all-menu-list .menu-list-box {
    display: inline-block;
    background: #f3eedd;
    border-radius: 20px;
    margin: 30px 0 20px;
  }
  #all-menu-list .menu-title {
    font-size: 20px;
    letter-spacing: 5px;
    margin-bottom: 5px;
  }
  #all-menu-list .menu-title span {
    padding-right: 20px;
  }
  #all-menu-list .menu-title:before {
    width: 90%;
  }
  #all-menu-list .product-name {
    font-size: 14px;
  }

  .ct-tab-pane {
    padding: 38px 50px;
    text-align: left;
    border: 2px solid #fe9849;
  }
}
/*
	======================
	Reservation Page Section
	======================
*/
/*
	======================================
	Reservation Page Section Style
	======================================
*/
#reservation {
  background: url("../img/menu/menu-bg.jpg");
}
#reservation .reservation-box {
  background: url("../img/menu/menu-list-block-bg.png");
}
#reservation .reservation-main-title {
  font-size: 30px;
  line-height: 39px;
  font-family: "Abril Display";
  font-weight: 400;
  color: #333333;
}
#reservation .reservation-sub-title {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 30px;
  font-weight: 300;
}
#reservation .reservation-sub-title strong {
  font-weight: 700;
  color: #333333;
}
#reservation .form-box .ct-input {
  border: 2px solid #ececec;
}

.reservation-content {
  background: #0d0c28;
  position: relative;
  z-index: 10;
}

#ct-foody-information .ct-information-title,
#ct-foody-information .ct-information-title {
  font-size: 20px;
  font-family: "Abril Display";
  font-weight: 400;
}
#ct-foody-information .ct-info-description p {
  margin-bottom: 30px;
}
#ct-foody-information .ct-address p {
  margin: 0;
  line-height: 25px;
}

.dtp-date .left,
.dtp-date .right {
  font-size: 20px;
}
.dtp-date i {
  color: white;
}

.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
  background: #d85e00;
}

.dtp div.dtp-date, .dtp div.dtp-time {
  background: #ff6f00;
}

.dtp div.dtp-actual-year {
  color: #fff;
}

.dtp table.dtp-picker-days tr > td > a.selected {
  background: #ff6f00;
}

.dtp-buttons button {
  background: #ff6f00;
  border-radius: 0;
  margin-right: 5px;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  border-radius: 5px;
}

/*
	================================
	Custom Query
	================================
*/
@media (min-width: 768px) {
  .reservation-content {
    background: -webkit-linear-gradient(left, #0e0c28 9%, rgba(14, 12, 40, 0.85) 26%, rgba(14, 12, 40, 0.47) 71%, rgba(14, 12, 40, 0.32) 83%, rgba(14, 12, 40, 0) 100%);
    background: -o-linear-gradient(left, #0e0c28 9%, rgba(14, 12, 40, 0.85) 26%, rgba(14, 12, 40, 0.47) 71%, rgba(14, 12, 40, 0.32) 83%, rgba(14, 12, 40, 0) 100%);
    background: linear-gradient(to right, #0e0c28 9%, rgba(14, 12, 40, 0.85) 26%, rgba(14, 12, 40, 0.47) 71%, rgba(14, 12, 40, 0.32) 83%, rgba(14, 12, 40, 0) 100%);
  }
}
@media (min-width: 1024px) {
  #reservation .form-box {
    padding: 0 30px;
  }
  #reservation .form-box .form-box-btn {
    margin-top: 20px;
  }
  #reservation .form-box .pdr-up-5 {
    padding-right: 15px;
  }
  #reservation .form-box .pdl-up-5 {
    padding-left: 15px;
  }

  .dtp > .dtp-content {
    background: url("../img/menu/menu-bg.jpg");
  }
}
@media (min-width: 1200px) {
  #reservation .ct-title-main-subtitle {
    font-size: 25px;
  }
}
/*
	======================
	Reservation Page Section
	======================
*/
/*
	========================
	Contact Page Style
	========================
*/
#contact-us .contact-title {
  color: #756548;
}
#contact-us .ct-call-back {
  color: #666666;
  font-family: "Abril Display";
}
#contact-us .ct-call-back:hover {
  color: #ff6f00;
}
#contact-us .ct-primary-box-btn {
  padding: 14px 20px;
  border: 2px solid white;
}
#contact-us .reservation-box {
  background: #26344c;
}
#contact-us .reservation-box-title {
  color: white;
  font-weight: 700;
}
#contact-us .contact-by-phone {
  background-position: center !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}
#contact-us .contact-by-phone .ct-primary-box-btn {
  padding: 9px 17px;
}
#contact-us .contact-by-phone-title {
  font-weight: 700;
}
#contact-us .social-media img {
  width: 30px;
}

/*
	================================
	Custom Query
	================================
*/
@media (max-width: 768px) {
  #contact-us .ct-primary-box-btn {
    padding: 11px 12px;
  }
}
@media (min-width: 768px) {
  #contact-us .contact-box-area .container {
    padding: 0;
  }
  #contact-us .reservation-box form .col-md-6 {
    padding-left: 3px;
    padding-right: 3px;
  }
}
@media (min-width: 992px) {
  #contact-us .ct-contact-sidebar-box:first-child {
    padding-bottom: 0;
  }
}
@media (min-width: 1200px) {
  #contact-us .contact-block {
    padding: 15px 30px 70px;
  }
  #contact-us .contact-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  #contact-us .contact-form input,
  #contact-us .contact-form textarea {
    border: 2px solid #ececec;
  }
  #contact-us .contact-form input {
    padding: 16px 20px;
  }
  #contact-us .contact-form textarea {
    height: 210px;
    resize: none;
  }
  #contact-us .contact-form .ct-primary-box-btn {
    padding: 14px 45px;
    border-width: 1px;
  }
  #contact-us .reservation-box {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 27px;
    padding-bottom: 30px;
  }
  #contact-us .reservation-box .reservation-box-title {
    font-size: 30px;
  }
  #contact-us .reservation-box form .col-md-6 {
    padding: 0 15px;
  }
  #contact-us .reservation-box .ct-primary-box-btn {
    width: 100%;
  }
  #contact-us .contact-by-phone {
    padding-top: 50px;
    padding-bottom: 52px;
  }
  #contact-us .contact-by-phone .contact-by-phone-title {
    font-size: 28px;
  }
  #contact-us .contact-by-phone .contact-by-phone-title:nth-of-type(2) {
    font-size: 25px;
  }
  #contact-us .contact-by-phone .ct-primary-box-btn {
    margin-top: 23px;
    margin-bottom: 26px;
  }
  #contact-us .contact-by-phone .ct-primary-box-btn {
    line-height: 1;
    padding-top: 15px;
    padding-right: 29px;
    padding-left: 29px;
  }
  #contact-us .social-media a {
    margin: 0 5px;
  }
  #contact-us .social-media img {
    width: 100%;
  }
  #contact-us #map {
    height: 250px;
    margin-bottom: 35px;
  }
}
/*
	======================
	404 Page Section
	======================
*/
/*
	================================
	404 Page Style
	================================
*/
#error-page .error-search-form input {
  font-size: 14px;
  padding: 15px 20px;
  border: 2px solid #eaead8;
}
#error-page .error-search-form .ct-primary-btn {
  font-weight: 400;
  padding-left: 20px;
  padding-right: 20px;
}
#error-page .error-page-title {
  color: #666666;
}

.error-page-bottom-bg {
  overflow: hidden;
}

.error-page-img {
  right: 0;
}

/*
	================================
	Custom Query
	================================
*/
@media (max-width: 575px) {
  #error-page {
    padding-bottom: 0;
  }
  #error-page .error-search-form form {
    display: inline-block;
  }
}
@media (min-width: 768px) {
  #error-page {
    padding-top: 70px;
    padding-bottom: 0;
    position: relative;
  }
  #error-page .error-search-form .ct-primary-btn {
    margin-left: 10px;
    padding: 16px 40px;
  }
}
@media (min-width: 1024px) {
  #error-page {
    padding-top: 0;
  }
  #error-page .error-page-box {
    z-index: 11;
    position: relative;
    transform: translateY(100px);
  }
  #error-page .error-search-form input {
    width: 270px;
  }
}
/*
	======================
	404 Page Section
	======================
*/
/*
	========================
	ALL Nav Section
	========================
*/
#blog-right-sidebar {
  /*
  	Blog Box Section
  */
}
#blog-right-sidebar .twitter-feed-title,
#blog-right-sidebar .recent-post-title {
  color: #333333;
}
#blog-right-sidebar .featured-post .list-group-item,
#blog-right-sidebar .featured-post .media,
#blog-right-sidebar .twitter-feed .list-group-item,
#blog-right-sidebar .twitter-feed .media,
#blog-right-sidebar .recent-post .list-group-item,
#blog-right-sidebar .recent-post .media {
  transition: 0.5s;
  border: 0;
  margin: 0;
  border-bottom: 1px solid #fbf8f3;
}
#blog-right-sidebar .featured-post .list-group-item:last-child,
#blog-right-sidebar .featured-post .media:last-child,
#blog-right-sidebar .twitter-feed .list-group-item:last-child,
#blog-right-sidebar .twitter-feed .media:last-child,
#blog-right-sidebar .recent-post .list-group-item:last-child,
#blog-right-sidebar .recent-post .media:last-child {
  border-color: transparent;
}
#blog-right-sidebar .featured-post .list-group-item:hover,
#blog-right-sidebar .featured-post .media:hover,
#blog-right-sidebar .twitter-feed .list-group-item:hover,
#blog-right-sidebar .twitter-feed .media:hover,
#blog-right-sidebar .recent-post .list-group-item:hover,
#blog-right-sidebar .recent-post .media:hover {
  background: #fcf9f4;
}
#blog-right-sidebar .featured-post .media-body a,
#blog-right-sidebar .twitter-feed .media-body a,
#blog-right-sidebar .recent-post .media-body a {
  color: #333333;
}
#blog-right-sidebar .featured-post .media-body a:hover,
#blog-right-sidebar .twitter-feed .media-body a:hover,
#blog-right-sidebar .recent-post .media-body a:hover {
  color: #ff6f00;
}
#blog-right-sidebar .featured-post .nav {
  display: inline-flex;
}
#blog-right-sidebar .featured-post .nav .active {
  background: #ff6f00;
  color: white;
  border-radius: 0;
  border-color: transparent;
}
#blog-right-sidebar .featured-post .nav-tabs {
  border-bottom: 0;
}
#blog-right-sidebar .featured-post .tab-content {
  border-top: 3px solid #ff6f00;
}
#blog-right-sidebar .featured-post .nav-link {
  color: #999999;
}
#blog-right-sidebar .search-input i {
  transition: 0.5s;
  color: #999999;
}
#blog-right-sidebar .search-input input,
#blog-right-sidebar .search-input button {
  padding: 15px;
  border: 1px solid;
  border-color: #e8e7e4 !important;
}
#blog-right-sidebar .search-input input {
  color: #333;
}
#blog-right-sidebar .search-input button {
  cursor: pointer;
}
#blog-right-sidebar .search-input button:hover i {
  color: #ff6f00;
}
#blog-right-sidebar .search-input button:focus {
  border: 1px solid;
  border-color: #ff6f00 !important;
  box-shadow: none;
}
#blog-right-sidebar .side-bar {
  border-radius: 10px;
}
#blog-right-sidebar .blog-box {
  position: relative;
}
#blog-right-sidebar .blog-box h4 {
  transition: 0.5s;
}
#blog-right-sidebar .blog-box .btn-primary {
  color: #333;
  font-weight: 500;
  transition: 0.5s;
}
#blog-right-sidebar .blog-box .btn-primary:hover {
  color: #ff6f00;
}
#blog-right-sidebar .blog-box .card-body a:hover h4 {
  color: #ff6f00;
}
#blog-right-sidebar .ct-badge-area,
#blog-right-sidebar .blog-img-box {
  position: relative;
}
#blog-right-sidebar .blog-img-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 147px;
}
#blog-right-sidebar .blog-img-meta {
  position: absolute;
  bottom: 0;
  width: 100%;
}
#blog-right-sidebar .ct-blog-pagination a {
  background: #54616f;
  border-color: #293037;
}
#blog-right-sidebar .ct-blog-pagination a:hover {
  background: #ff6f00;
  border-color: #ff6f00;
}
#blog-right-sidebar .featured-post .nav-link:hover {
  color: #ff6f00;
}
#blog-right-sidebar .featured-post .nav .active:hover {
  color: #fff;
}
#blog-right-sidebar .blog-post-meta {
  position: relative;
}

.blog-slider .owl-nav {
  display: flex;
  justify-content: space-between !important;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.blog-slider .owl-nav div {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #ff6f00;
  color: white;
  font-size: 30px;
  line-height: 1;
  margin: 5px;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  transition: 0.5s;
}
.blog-slider .owl-nav div:hover {
  background: white;
  color: #ff6f00;
}

/*
	===================
	Responsive Class
	===================
*/
@media (min-width: 1200px) {
  #blog-right-sidebar {
    padding: 50px 0;
  }
  #blog-right-sidebar .blog-box h4 {
    font-size: 30px;
  }
  #blog-right-sidebar .media {
    padding: 20px;
  }
  #blog-right-sidebar .search-input {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #blog-right-sidebar .recent-post,
  #blog-right-sidebar .twitter-feed,
  #blog-right-sidebar .featured-post {
    margin-bottom: 24px;
  }
}
/*
	======================
	404 Page Section
	======================
*/
 /*
	========================
	Single Blog
	========================
*/
.single-blog-box .single-blog-comment-author-img {
  width: 40px;
}
.single-blog-box .quotation p {
  font-weight: 500;
}
.single-blog-box .quotation:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: #ff6f00;
  border-radius: 20px;
}
.single-blog-box .media-share-link-text {
  font-weight: 500;
}
.single-blog-box .media-share-link .share-link {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  background: white;
  border: 2px solid #ececec;
  color: #b2b2b2;
  margin-right: 5px;
}
.single-blog-box .media-share-link .blog-facebook:hover {
  background: #3b5998;
  color: #fff;
  border-color: #3b5998;
}
.single-blog-box .media-share-link .blog-twitter:hover {
  background: #1da1f2;
  color: #fff;
  border-color: #1da1f2;
}
.single-blog-box .media-share-link .blog-instagram:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
}
.single-blog-box .media-share-link .blog-tumblr:hover {
  background: #35465c;
  color: #fff;
  border-color: #35465c;
}
.single-blog-box .blog-single-comment-form input {
  border-radius: 8px;
}
.single-blog-box .blog-single-comment-form input,
.single-blog-box .blog-single-comment-form textarea {
  font-size: 14px;
  border-color: #ececec;
}
.single-blog-box .blog-single-comment-form input:focus,
.single-blog-box .blog-single-comment-form textarea:focus {
  border-color: #ff6f00;
}

.reply {
  padding: 10px 0;
}
.reply a {
  color: #333333;
  margin-right: 10px;
}
.reply a:hover {
  color: #ff6f00;
  text-decoration: underline;
}

.single-blog-share-link a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.single-blog-share-link a:hover {
  background: white;
  border: 1px solid #ddd !important;
}
.single-blog-share-link a:hover i {
  color: #333333 !important;
}

@media (min-width: 768px) {
  .single-blog-box .blog-single-comment-form textarea {
    min-height: 150px;
    resize: none;
  }
}
@media (min-width: 1024px) {
  .single-blog-comment-list .media {
    padding-bottom: 0 !important;
  }
  .single-blog-comment-list .media-body {
    padding-left: 10px;
    padding-right: 10px;
  }
  .single-blog-comment-list .media-body .media {
    padding: 5px 0 !important;
    padding-top: 20px !important;
    margin-bottom: 0 !important;
  }
  .single-blog-comment-list .media-body .media .single-blog-comment-author-img {
    width: 40px;
  }
  .single-blog-comment-list .single-blog-comment-author-img {
    width: auto;
  }

  .single-blog-comment-form {
    margin-top: 30px;
  }
  .single-blog-comment-form input,
  .single-blog-comment-form textarea {
    padding: 20px;
  }

  .leave_reply {
    padding-bottom: 10px;
  }

  .single-blog-box .card-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .single-blog-box .single-blog-comment-author-img {
    margin-right: 0 !important;
    width: auto;
  }
  .single-blog-box h5 {
    line-height: 1.5;
  }
  .single-blog-box .media-share-link .share-link {
    margin-right: 15px;
  }

  .media-share-link-box {
    padding-bottom: 20px;
  }

  .single-blog-comment {
    margin-top: 36px;
  }
}
.back-menu {background-image: url("../img/menu-bg.png") !important;}
/*# sourceMappingURL=style.css.map */
.regis-form {
      font-size: 18px;
    color: #000;
    text-align: center;
    line-height: 28px;
    margin: 20px 0;
}
.book1-inpt {
      display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    background-color: rgba(255, 255, 255, 0.6);
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  
}
 .registered {
    position: absolute; 
    top: 2px;
     right:-25% 
  }
.stylish {
  display: block;
    width: 100%;
    line-height: 24px;
    height: 46px;
    font-size: 16px;
    box-shadow: none;
    border: 2px solid #dbdbdb;
    padding: 12px 15px;
    border-radius: 20px;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    background: transparent;
    outline: none;
	color:#076fac
}
.min-img {
    width: 15%
  }
  .text-justice {
    text-align: justify
  }
  .chef {
    margin: 0px; padding: 0px
  }
  .chef li {
    text-align: left;
    font-weight: normal
  }
  .respo {
    width:100%
  }
  .mb30 {
    margin-bottom: 30px;
  }

@media (min-width: 300px) and (max-width: 767px) {

#ct-testimonial .owl-dot:nth-of-type(1) {
  background: url("../img/testimonial/testimonial-img-33.png") !important;
    width: 80px;
    height: 80px;
}
#ct-testimonial .owl-dot:nth-of-type(2) {
  background: url("../img/testimonial/testimonial-img-22.png") !important;
    width: 80px;
    height: 80px;
}
#ct-testimonial .owl-dot:nth-of-type(3) {
  background: url("../img/testimonial/testimonial-img-11.png") !important;
    width: 80px;
    height: 80px;
}
#ct-testimonial .owl-dot:nth-of-type(4) {
  background: url("../img/testimonial/testimonial-img-44.png") !important;
    width: 80px;
    height: 80px;
}
#ct-testimonial .owl-dot:nth-of-type(5) {
  background: url("../img/testimonial/testimonial-img-55.png") !important;
    width: 80px;
    height: 80px;
}

}