/*-----------------------------------------------------------------------------------

[Table of contents]

1. Font
2. Css Variable for colors
3. Common CSS - Button, Sections Titles, Background etc.
4. Preloader
5. Header - Main Navigation section
6. Hero Slider section
7. Right Side Menu
8.Banner Section
9.Menu List
10.Delicous Menu Section
11.Video Section
12.Who We Are Section
13.Gallery Slider Section
14.Review Section
15.Privet Event Section
16.Blog Section
17.Footer Section
18.Booking Model
19.Reservation page 1
20.Youtube Video Model
21.About Us Page
22.Chef Section
23.Our journey Section
24.Coustomer Review Section
25.Gallery Section
26.Offer Menu page
27.Menu List Section
28.Reservation Form
29.Contact Us Page
30.Blog List Page
31.Blog Detail Page
32.New Home Page ( Slider Hero Version Home)
33.Video Section
34.Our Menu Section - Tab
35.Discount Section - Vertical Scroll SLider
36.Popular dish section
37.Who We are Option-2
38.Testimonial Section Option-2
39.Out Team Section
40.Blog Section Option-2


-----------------------------------------------------------------------------------*/


/* --------Font--------------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playball&amp;display=swap');
/* -----------Css-variable------ */

:root {
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --dark-black: #323232;
  --more-dark-black: #1b1b1b;
  --primary-red: #c83f46;
  --text-grey: #9a9a9a;
  --black: #000000;
  --border-grey: #696969;
  --blog-bg: #222222;
  --img-border: 5px solid #696969;
  --font-bebas: 'Bebas Neue', sans-serif;
  --font-playball: 'Playball', cursive;
}

/* ------Common-Css------------- */

body {
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Roboto', sans-serif;
  word-break: break-word;
  scroll-behavior: smooth;
  /* background-image: url(../images/dark_bg.png); */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #000;
  width: 100%;
  overflow-x: hidden;
}

body.modal-open {
  padding-right: 5px !important;
}


body.modal-open .navbar {
  width: calc(100% - 5px);
}

body.hide_scroll {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(66, 66, 66, 0.3);
  border-radius: 5px;
  background-color: var(--black);
}

body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--black);
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(66, 66, 66, .3);
  background-color: var(--primary-red);
}

.page_wrapper {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: .4s all;
  color: var(--text-grey);
}

a:hover {
  text-decoration: none;
  color: var(--primary-red);
}

ul,
li {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}

.form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

.light_texchur {
  background-image: url(../images/who_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.row_am {
  padding: 50px 0;
}

.row_inner_am {
  padding: 50px 0;
}

.py_50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Button Common Css */
.btn_primary {
  padding: 16px 35px;
  background-color: var(--primary-red);
  text-transform: uppercase;
  font-size: 20px;
  font-family: var(--font-bebas);
  color: var(--text-white);
  border-radius: 10px;
  line-height: 1;
  letter-spacing: 1px;
  transition: .4s ease-in-out;
  background: linear-gradient(45deg, #fdc503, #f9a918);
}

.btn_primary {
  position: relative;
  overflow: hidden;
}

.btn_primary:hover {
  color: var(--text-white);
  opacity: 0.9;
}

.btn_primary:after {
  content: ' ';
  position: absolute;
  top: -50%;
  right: -60%;
  bottom: -50%;
  left: -60%;
  background: linear-gradient(50deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%);
  -webkit-transform: translate(-80%, 0px);
  -ms-transform: translate(-80%, 0px);
  transform: translate(-80%, 0px);
}

.btn_primary:hover:after {
  animation: 4s cfs-glimmer infinite;
}


@keyframes cfs-glimmer {
  0% {
    -webkit-transform: translate(-50%, 0px);
    -ms-transform: translate(-50%, 0px);
    transform: translate(-50%, 0px);
  }

  50% {
    -webkit-transform: translate(50%, 0px);
    -ms-transform: translate(50%, 0px);
    transform: translate(50%, 0px);
  }
}

.btn_text {
  padding: 10px 0;
  color: var(--primary-red);
  font-family: var(--font-bebas);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
}

.btn_text:hover {
  color: var(--primary-red);
}

/* Section Title Css */
.section_title {
  position: relative;
}

.section_title .icon {
  margin-bottom: 20px;
  display: block;
}

.section_title .sub_text {
  font-family: var(--font-playball);
  font-size: 30px;
  color: var(--primary-red);
  display: block;
  background: linear-gradient(to right, #e03d54, #702f86);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section_title h2 {
  font-size: 50px;
  font-family: var(--font-bebas);
  margin-bottom: 0;
  line-height: 1;
}

/* White Background */
.bg_white_textcher {
  background-image: url(../dosa_img/bg3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #fcbb0ca1;
  background-blend-mode: overlay;
}
.bg_white_textcher h2,
.bg_white_textcher span,
.bg_white_textcher p {
  color: var(--black);
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-red);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--text-grey);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--primary-red);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
#loader img{
  animation: none
}

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

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

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

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


/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
  position: relative;
  width: 100%;
  z-index: 999;
  transition: 0.4s all;
}

header.fix_style {
  background-image: url(../images/dark_bg.png);
  background-size: cover;
  transition: 0.4s all;
  background: linear-gradient(45deg, #fdc503, #f9a918);
}

header.fixed {
  position: fixed;
  top: 0;
}

header.fixed::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  /* background-color: #616161; */
}


/* navigation bar */
.navbar {
  padding: 0 85px;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-item {
  margin: 0 16px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 31px 0 25px 0;
  font-weight: 400;
  color: var(--text-white);
  transition: 0.4s all;
  text-transform: uppercase;
  font-family: var(--font-bebas);
  font-size: 20px;
  letter-spacing: 1px;
  position: relative;
}

.navbar-expand-lg .navbar-nav .nav-item .nav-link:not(.contact_number .nav-link):before {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  opacity: 0;
  transition: .4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .nav-link:not(.contact_number .nav-link):before {
  width: calc(100% + 12px);
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--primary-red);
}

.navbar-expand-lg .navbar-nav .nav-item:hover .nav-link:not(.contact_number .nav-link):before {
  opacity: 1;
  bottom: 25px;
}

.navbar-expand-lg .navbar-nav .contact_number {
  position: relative;
  padding-left: 30px;
}

.navbar-expand-lg .navbar-nav .contact_number a span {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .contact_number::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  width: 1px;
  height: 45px;
  background-color: #616161;
}

.navbar-expand-lg .navbar-nav .nav-link.btn_primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 100px;
  height: 50px;
  transform: skew(-25deg);
  animation: main_anim 3s infinite ease-in-out;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 100%);
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
  position: relative;
  right: 0;
  top: 2px;
  color: var(--text-white);
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn.rotate {
  transform: rotate(180deg);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
  position: absolute;
  top: 100%;
  background-color: var(--dark-black);
  border-radius: 5px;
  min-width: 210px;
  max-width: 230px;
  margin-top: -10px;
  transition: 0.4s all;
  opacity: 0;
  pointer-events: none;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu::before {
  content: "";
  width: 20px;
  height: 40px;
  position: absolute;
  top: -13px;
  left: 20px;
  display: block;
  background: #323232;
  transform: rotate(45deg);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
  margin-left: 0;
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li {
  margin: 10px 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
  font-size: 20px;
  position: relative;
  transition: 0.4s all;
  line-height: 35px;
  font-weight: 400;
  color: var(--text-white);
  font-family: var(--font-bebas);
  letter-spacing: 1px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary-red);
  transition: .4s all;
  opacity: 0;
  border-radius: 2px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
  left: 0;
  opacity: 1;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
  color: var(--primary-red);
  padding-left: 18px;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
  color: var(--primary-red);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
  opacity: 1;
  pointer-events: all;
  margin-top: -1px;
}

.navbar .action_bar {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.navbar .action_bar .btn_primary {
  padding: 16px 45px;
}

.navbar .action_bar .bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 15px;
  cursor: pointer;
  position: relative;
}

.navbar .action_bar .bar span {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
  transition: .4s all;
}

.navbar .action_bar .bar:hover span {
  width: 30px;
}

.navbar .action_bar .bar span:nth-child(2) {
  margin: 5px 0;
  width: 30px;
}

/* navigation toggle menu */
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-bar {
  width: 20px;
  margin: 10px 0;
  position: relative;
  border-top: 2px solid var(--bg-white);
  display: block;
}

.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: var(--bg-white);
  height: 2px;
  width: 25px;
  position: absolute;
  top: -8px;
  right: 0px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}

.toggle-bar::after {
  top: 4px;
}

.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -9px;
}

.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Side Fixer Social Media & Timing Css Start */
.side_fixer {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}

.side_fixer ul {
  display: flex;
}

.side_fixer ul li {
  position: relative;
}

.side_fixer ul li:not(:last-child):after {
  content: "";
  width: 25px;
  height: 1px;
  border-bottom: 1px solid var(--bg-white);
  margin: 0 15px;
  display: inline-block;
  vertical-align: middle;
}

.side_fixer ul li a:hover {
  color: var(--primary-red);
}

.social_media_side {
  left: -160px;
}

.timing_side {
  right: -140px;
}

.timing_side span {
  color: var(--text-grey);
}

/* Side Fixer Social Media & Timing Css End */

/* --- Right Side Menu Css Start --- */
.right_sidemenu {
  position: fixed;
  right: 0;
  top: 0;
  width: 440px;
  background-image: url(../images/dark_bg.png);
  padding: 25px 60px 60px 60px;
  z-index: 999;
  height: 100vh;
  overflow-y: auto;
  transition: .4s all;
  opacity: 0;
  pointer-events: none;
}

.right_sidemenu.active {
  opacity: 1;
  pointer-events: all;
}

.right_sidemenu::before {
  content: "";
  position: fixed;
  left: -440px;
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: #0e0d0bcc;
  z-index: -5;
  opacity: 0;
  transition: .4s all;
  pointer-events: none;
}

.right_sidemenu.active::before {
  opacity: 1;
  pointer-events: all;
}

.right_sidemenu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(66, 66, 66, 0.3);
  border-radius: 5px;
  background-color: var(--black);
}

.right_sidemenu::-webkit-scrollbar {
  width: 10px;
  background-color: var(--black);
}

.right_sidemenu::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(66, 66, 66, .3);
  background-color: var(--dark-black);
}

.right_sidemenu .close_rightmenu {
  font-size: 24px;
  color: var(--text-white);
  text-align: right;
  margin-right: -25px;
  display: block;
  cursor: pointer;
  transition: .4s all;
  width: 25px;
  margin-left: auto;
}

.right_sidemenu .close_rightmenu:hover {
  transform: rotate(45deg);
}

.right_sidemenu .side_logo {
  display: block;
  margin-bottom: 45px;
}

.right_sidemenu .contact_listing .sub_title {
  font-family: var(--font-bebas);
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.right_sidemenu .contact_listing li {
  padding: 25px 0;
  border-top: 1px solid #536c59;
}

.right_sidemenu .contact_listing li:first-child {
  border: none;
  padding-top: 0;
}

.right_sidemenu .contact_listing li .cnt_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.right_sidemenu .contact_listing li .cnt_block a,
.right_sidemenu .contact_listing li .cnt_block p {
  width: 70%;
  color: var(--text-grey);
}

.right_sidemenu .contact_listing li .cnt_block a:hover {
  color: var(--primary-red);
}

.right_sidemenu .contact_listing li .cnt_block span {
  width: 30%;
  text-align: right;
  color: var(--text-grey);
}

.right_sidemenu .tab_img {
  margin-top: 50px;
}

.right_sidemenu .tab_img img {
  width: 100%;
  border-radius: 20px;
  border: var(--img-border);
}

/* --- Right Side Menu Css End --- */

/* --- Banner Section Css Start --- */

.banner_section {
  padding-top: 185px;
  text-align: center;
  position: relative;
}

.banner_section .banner_side_shape div {
  position: absolute;
}

.banner_section .banner_side_shape .left_shape {
  left: 0;
  bottom: 100px;
  text-align: left;
  z-index: -1;
}

.banner_section .banner_side_shape .right_shape {
  right: 0;
  bottom: 0;
  text-align: right;
  z-index: -1;

}

.banner_section .banner_inner {
  padding-bottom: 80px;
}

.banner_section h1 {
  font-size: 60px;
  font-family: var(--font-bebas);
  margin-bottom: 0px;
  color: #fff;
}

.banner_section .banner_images {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 80px;
}

.banner_section .banner_images .img {
  position: relative;
}

.banner_section .banner_images .img .radius_img {
  width: 255px;
}

.banner_section .banner_images .img:nth-child(1) {
  margin-top: -120px;
}

.banner_section .banner_images .img:nth-child(1) .radius_img {
  height: 350px;
}

.banner_section .banner_images .img:nth-child(2) .radius_img {
  width: 500px;
  height: 580px;
  margin: 0 75px;
}

.banner_section .banner_images .img:nth-child(2) .radius_img {
  border-top-left-radius: 300px;
  border-top-right-radius: 300px;
}

.banner_section .banner_images .img:nth-child(3) .radius_img {
  height: 420px;
}

.banner_section .banner_images .img .radius_img {
  object-fit: cover;
  border: var(--img-border);
}

.banner_section .banner_images .img:nth-child(1) .radius_img,
.banner_section .banner_images .img:nth-child(3) .radius_img {
  border-radius: 300px;
}

/* Banner Images Badges And Tags */
.banner_section .banner_images .img .bt_curve_text {
  margin-top: -45px;
}

.banner_section .banner_images .img .side_shape {
  position: absolute;
  top: 40%;
  left: 35px;
}

.banner_section .banner_images .img .badge_shape {
  position: absolute;
  right: -50px;
  bottom: 50px;
}

.banner_badge {
  position: absolute;
  top: 50px;
  right: 75px;
  width: 135px;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_badge .since {
  background-color: #282828;
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 100px;
  text-align: center;
  padding-top: 26px;
  margin: 0 auto;
}

.banner_badge .since p {
  font-size: 16px;
  margin: 0;
  font-family: var(--font-bebas);
  letter-spacing: 6px;
  line-height: 1;
  padding-left: 5px;
}

.banner_badge .since span {
  font-size: 35px;
  font-family: var(--font-bebas);
  line-height: 1;
  margin-left: -3px;
}

.banner_badge .round_anim {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.banner_badge .round_anim img {
  transform-origin: 50% 50% 0;
  transform: rotate(0deg);
  -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

.banner_section .banner_images .img .go_down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: drop_up linear 1.5s infinite forwards;
}

@keyframes spin {

  0% {
    transform: rotate(0deg);
  }

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

@keyframes drop_up {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }

}

/* --- Banner Section Css End --- */


/* ---------- Menu List Flow Css Start ------------- */

.menu_list_section {
  background-color: var(--black);
  padding: 20px 0;
  transform: rotate(-1deg);
  pointer-events: none;
  position: relative;
  z-index: 11;
}

.menu_list_section.rotet_down {
  transform: rotate(0.5deg);
}

.menu_list_section .owl-stage,
.menu_list_section .owl-stage-outer,
.textFlow_list .owl-stage,
.textFlow_list .owl-stage-outer {
  height: 40px;
}

.text_block {
  display: flex;
  align-items: center;
}

.text_block span {
  color: var(--text-white);
  font-size: 40px;
  font-family: var(--font-bebas);
  font-weight: 400;
  line-height: 1;
}

.text_block .mark_star {
  height: 30px;
  margin: 0 50px;
  font-family: 'Playball', cursive;
}

/* ------------Delicous Menu Section Css Start ------------- */

.delicous_menu {
  margin-top: 50px;
  position: relative;
}

.delicous_menu.row_am {
  padding-bottom: 0;
  margin-bottom: -1px;
}

.menu_listing .menu_listing_block {
  padding: 50px 0;
  border-top: 1px solid var(--border-grey);
  position: relative;
}

.menu_listing .menu_listing_block:last-child {
  border-bottom: 1px solid var(--border-grey);
}

.menu_listing .diplay_state {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: .8s all;
}

.menu_listing .menu_name {
  width: 250px;
}

.menu_listing .menu_name h3 {
  font-size: 90px;
  text-transform: uppercase;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
}

.menu_listing .list_running {
  width: calc(100% - 400px);
}

.menu_listing .list_running marquee {
  border-left: 1px solid rgba(105, 105, 105, 0.3);
  border-right: 1px solid rgba(105, 105, 105, 0.3);
}

.menu_listing .list_running .wrp {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

.menu_listing .list_running .wrp:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--text-grey);
  display: block;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100px;
}

.menu_listing .menuMobileLIst {
  display: none;
}

.menu_listing .list_running .wrp span,
.menu_listing .menuMobileLIst ul li span {
  font-family: var(--font-bebas);
  color: var(--text-grey);
  font-size: 20px;
  display: inline-block;
}

.menu_listing .menuMobileLIst ul li span {
  margin-bottom: 5px;
}

.menu_listing .direction_pointer {
  display: block;
  width: 150px;
  text-align: right;
  color: var(--text-white);
  font-size: 30px;
}

.menu_listing .hover_state {
  display: flex;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: .8s all;
  opacity: 0;
  pointer-events: none;
}

.menu_listing .hover_state .menu_img {
  margin-right: 40px;
}

.menu_listing .hover_state .menu_img img {
  width: 350px;
  height: 145px;
  object-fit: cover;
  border: var(--img-border);
  border-radius: 150px;
}

.menu_listing .hover_state .menu_name {
  width: auto;
}

.menu_listing .hover_state .menu_name h3,
.menu_listing .hover_state .menu_name h3 a {
  color: var(--primary-red);
  position: relative;
}

.menu_listing .hover_state .menu_name h3::after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--primary-red);
  margin-top: -15px;
  opacity: 0;
  transition: .4s ease-in-out;
}

.menu_listing .hover_state .menu_name h3:hover::after {
  opacity: 1;
}

.menu_listing .hover_state .btn {
  margin-left: auto;
}

.menu_listing_block:hover .hover_state {
  opacity: 1;
  pointer-events: all;
}

.menu_listing_block:hover .diplay_state {
  opacity: 0;
  pointer-events: none;
}

/* ------------Delicous Menu Section Css End ------------- */

/* -------- Video Wraper Css Start ------------ */
.video_wraper {
  z-index: auto;
  float: none;
  flex-shrink: 1;
  display: flex;
  margin: 0px;
  inset: 0px;
  position: relative;
  flex-basis: auto;
  overflow: visible;
  box-sizing: border-box;
  width: 100%;
  height: 1400px;
  padding-bottom: 400px;
  margin-top: -130px;
}

.video_wraper::before {
  content: "";
  position: absolute;
  height: 55%;
  bottom: 0;
  background-image: url(../images/banner_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.video_wraper .action_box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  flex-direction: column;
}

.video_wraper .round_anim {
  position: absolute;
  transform-origin: 50% 50% 0;
  transform: rotate(0deg);
  -webkit-animation: spin 15s linear infinite;
  -moz-animation: spin 15s linear infinite;
  animation: spin 15s linear infinite;
}

.video_wraper .action_btn img {
  width: 100px;
}

.video_wraper .action_btn a {
  display: block;
  z-index: 99;
  position: relative;
}

.video_wraper .play_vtn {
  width: 160px;
  height: 160px;
}

@keyframes spin {

  0% {
    transform: rotate(0deg);
  }

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

/* -------- Video Wraper Css End ------------ */

/* --------- Who We Are Section Start --------- */
.who_we_section {
  position: relative;
  margin-top: 0px;
}

.who_we_section .sider_shape {
  position: absolute;
  right: 0;
  top: 27%;
}

.who_we_section .section_title {
  gap: 20px;
  padding-top: 40px;
}

.who_we_section .section_title .icon {
  padding-top: 13px;
}

.who_we_section .radius_img {
  border: var(--img-border);
  border-radius: 100% 100% 0 0;
  height: 680px;
  object-fit: cover;
}

.who_we_section .who_We_text {
  padding-left: 75px;
}

.who_we_section .who_We_text .chef_block {
  position: relative;
  width: 242px;
  height: 362px;
  margin: 70px 0;
}

.who_we_section .who_We_text .chef_block .chef_img {
  border-radius: 500px;
  object-fit: cover;
  width: 220px;
  height: 320px;
}

.who_we_section .who_We_text .chef_block .text_img {
  position: absolute;
  top: 0;
  left: 0;
}

.who_we_section .who_We_text .action_block {
  display: flex;
  align-items: center;
}

.who_we_section .who_We_text .action_block .social_media {
  gap: 10px;
  margin-right: 15px;
}

.who_we_section .who_We_text .action_block .social_media a {
  border: 1px solid var(--black);
  color: var(--black);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
}

.who_we_section .who_We_text .action_block .social_media a:hover {
  background-color: var(--primary-red);
  color: var(--text-white);
  border-color: var(--primary-red);
}

/* --------- Who We Are Section End --------- */

/* ---------- Gallery Slider Css Start ---------- */

.bredcrumb_section.gallery_banner {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/gallery-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 90px;
}

.gallery_slider .item img {
  border-radius: 20px;
  height: 385px;
  object-fit: cover;
}

.gallery_slider #gallery_flow_right,
.gallery_slider #gallery_flow_left {
  padding: 20px 0;
  /* pointer-events: none; */
}

.gallery_slider #gallery_flow_left {
  transform: rotate(180deg);
}

.gallery_slider #gallery_flow_left .img {
  transform: rotate(-180deg);
}

.gallery_slider .owl-stage {
  display: flex;
}

/* ---------- Gallery Slider Css End ---------- */

/* --------- Review Section Start ------------- */

.bredcrumb_section.review_banner {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/review-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 90px;
}


.review_section.row_am {
  position: relative;
  padding-bottom: 300px;
}

.review_section .review_text {
  font-family: var(--font-bebas);
  font-size: 200px;
  text-align: center;
}

.review_section .review_list {
  display: flex;
  flex-direction: column;
}

.review_section .review_list .with_text {
  width: 475px;
  border: 5px solid var(--black);
  background-color: #323232;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.review_section .review_list .with_text img {
  width: 100px;
  height: 150px;
  border: 3px solid var(--black);
  border-radius: 100px;
  object-fit: cover;
}

.review_section .review_list .review_box {
  margin: 50px 0;
}

.review_section .review_list .review_box .review {
  width: calc(100% - 130px);
}

.review_section .review_list .review_box .review .star {
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.review_section .review_list .review_box .review .star span {
  color: #f78e11;
  letter-spacing: -2px;
}

.review_section .review_list .review_box .quotes {
  position: absolute;
  font-size: 26px;
}

.review_section .review_list .review_box .left_quote {
  top: -25px;
  left: 20px;
}

.review_section .review_list .review_box .right_quote {
  bottom: -25px;
  right: 20px;
}

.review_section .review_list .review_box:nth-child(even) {
  margin-left: auto;
}

.review_section .review_list .review _box:nth-child(n + 3n) {
  margin-left: 150px;
}

.review_section .review_list .review_box .review .name {
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
}

.review_section .review_list .with_video {
  width: 475px;
  height: 245px;
  border: 5px solid var(--black);
  background-color: #323232;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  background-image: url(../images/review_02.png);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------- Review Section End ------------- */

/* ---------- Privet Section Css Start ----------- */

.privet_event_section .sider_shape {
  position: absolute;
  left: 0;
  bottom: 150px;
}

.privet_event_section .privet_text {
  padding-right: 80px;
}

.privet_event_section .privet_text img {
  width: 350px;
  height: 400px;
  object-fit: cover;
  border: var(--img-border);
  border-radius: 100% 100% 0 0;
  margin: 75px 0 0 auto;
}

.privet_event_section .privet_info .radius_img {
  height: 650px;
  width: 100%;
  object-fit: cover;
  border: var(--img-border);
  border-radius: 100% 100% 0 0;
}

.privet_event_section .privet_info p {
  margin: 30px 0;
}

.privet_event_section .privet_info .side_icon {
  position: absolute;
  top: 30px;
  left: 30px;
}

/* ---------- Privet Section Css End ----------- */

/* --------- Blog Section Css Start ---------- */

.blog_post {
  max-width: 75%;
  margin-bottom: 50px;
}

.blog_post .img {
  display: block;
}

.blog_post .img img {
  border: var(--img-border);
  border-radius: 100% 100% 0 0;
  height: 320px;
  width: 100%;
  object-fit: cover;
  transition: .4s all;
  transform-origin: left bottom;
}

.blog_post .info .date {
  display: block;
  margin: 15px 0;
  color: var(--text-grey);
}

.blog_post .info h3 {
  font-size: 28px;
  font-family: var(--font-bebas);
  font-weight: 400;
  margin-bottom: 10px;
}

.blog_post .info h3 a {
  color: var(--text-white);
  transition: .4s ease-in-out;
}

.blog_post .info h3 a:hover {
  color: var(--primary-red);
}

.blog_post .info .btn {
  position: relative;
  transform: translateY(10px);
  opacity: 0;
  transition: .4s all;
}

.blog_post:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

.blog_post:hover .img img {
  transform: rotate(-3deg);
}

/* --------- Blog Section Css End ---------- */

/* ----------- Footer Css Start ---------- */

footer {
  background: linear-gradient(45deg, #fdc503, #f9a918);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 10px;
  padding-bottom: 0px;
}

footer .foote_widget {
  border-bottom: 1px solid #bababa;
}

footer .direction_block p {
  font-size: 40px;
  color: var(--text-white);
  line-height: 1.3;
}

footer .direction_block p a {
  color: var(--text-white);
}

footer .direction_block p a:hover {
  color: var(--primary-red);
}

footer .offer_block h2 {
  font-family: var(--font-bebas);
  font-size: 50px;
  margin-bottom: 0;
}

footer .offer_block h2+p {
  color: var(--text-grey);
}

footer .offer_block h2+p span {
  color: var(--text-white);
}

footer .offer_block .form-group {
  max-width: 460px;
  height: 60px;
  position: relative;
}

footer .offer_block .form-group .icon {
  position: absolute;
  top: 52%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-grey);
}

footer .offer_block .form-group .form-control {
  width: 100%;
  height: 100%;
  border: 2px solid var(--border-grey);
  background-color: var(--black);
  border-radius: 12px;
  color: var(--text-grey);
  font-weight: 600;
  padding-left: 35px;
  font-size: 14px;
  padding-right: 175px;
}

footer .offer_block .form-group .form-control::placeholder {
  color: var(--text-grey);
}

footer .offer_block .form-group .btn {
  position: absolute;
  right: 3px;
  top: 3px;
  padding: 0;
  width: 175px;
  height: calc(100% - 6px);
}

footer .social_media li {
  text-align: right;
  padding: 8px 0;
}

footer .social_media li a {
  text-align: right;
  color: var(--text-white);
  padding: 5px 0;
}

footer .social_media li a:hover {
  color: var(--primary-red);
}

footer .links {
  padding: 15px 0;
}

footer .links li a {
  color: var(--text-white);
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  padding: 10px;
  margin: 0 10px;
  font-size: 20px;
  font-weight: 400;
}

footer .links li a:hover {
  color: var(--primary-red);
}

footer .copy_right p {
  color: #e2e2e2;
  margin: 0;
  padding: 20px 0;
}

footer .copy_right a {
  color: var(--primary-red);
  text-decoration: underline;
}

/* footer go top button */
.go_top {
  position: fixed;
  right: 30px;
  bottom: 75px;
  cursor: pointer;
  z-index: 99;
  transition: .4s all;
  display: none;
}

.go_top span {
  background-color: var(--primary-red);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 25px;
}

.go_top:hover {
  bottom: 80px;
}

/* ----------- Footer Css End ---------- */

/* --------- Booking Model Css Start --------- */
.booking_model .modal-dialog {
  max-width: 800px;
}

.booking_model .modal-body {
  padding: 0;
}

.booking_model .modal-dialog .modal-content {
  background-image: url(../images/banner_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px;
  border: var(--img-border);
  border-radius: 20px;
}

.booking_model .modal-header .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  margin: 0;
  padding: 5px;
}

.booking_model .modal-header h2 {
  color: var(--black);
  font-size: 50px;
  font-family: var(--font-bebas);
  line-height: 1;
}

.booking_model .modal-header p {
  color: var(--black);
}

.booking_model .modal-header p a {
  color: var(--primary-red);
}

.booking_model .booking_form form .row>div {
  padding-left: 10px;
  padding-right: 10px;
}

.booking_model .booking_form form .form-group {
  position: relative;
}

.booking_model .booking_form form .form-group .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  font-size: 14px;
}

.booking_model .booking_form form .form-group .has_icon {
  padding-left: 35px;
}

.booking_model .booking_form form .form-group input[type="date"]::-webkit-inner-spin-button,
.booking_model .booking_form form .form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.booking_model .booking_form form input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.booking_model .booking_form form .form-control {
  height: 55px;
  border: 2px solid var(--border-grey);
  border-radius: 10px;
  font-weight: 500;
}

.booking_model .booking_form form input[type="date"] {
  text-transform: uppercase;
}

.booking_model .booking_form form .form-control::placeholder {
  color: var(--black);
}

.booking_model .booking_form form textarea.form-control {
  height: 150px;
}

/* --------- Booking Model Css End --------- */


/* --------- reservation page Booking Model Page Css Start --------- */

.bredcrumb_section.reservationpage_bg {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/reservation_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 90px;
}

.reservationpage_bg .booking_model .modal-header h2 {
  font-size: 35px;

}

/* --------- reservation page Booking Model Page Css End --------- */


/* --------- reservation page 1 Css Start --------- */

.bredcrumb_section.reservationpage_1_bg {
  position: relative;
  background: url(../images/reservation_1_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 90px;
}

.resarvation_form.reservationpage_1_bg .form_inner {
  margin-top: 50px;
  background-color: var(--black);
  background-image: none;
}

.resarvation_form.reservationpage_1_bg .form_inner .formBlock h2 {
  font-size: 35px;
}

.resarvation_form.reservationpage_1_bg .form_inner .contact_block h2 {
  font-size: 35px;
}

.reservationpage_1_bg .side_shape {
  right: 0;
}



/* ------Youtube Video Model Css Start------ */
.youtube-video .modal-dialog {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  padding: 0 15px;
  height: 100%;
  max-width: 1240px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#video-container {
  position: relative;
  padding-bottom: 50%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

iframe#youtubevideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.youtube-video .modal-footer {
  border: none;
  text-align: center;
  display: block;
  padding: 0;
}

.youtube-video .modal-content {
  background: none !important;
  border: none;
}

#close-video {
  color: #fff;
  font-size: 30px;
}

/* ------Youtube Video Model Css End------ */


/* ------------About Us Page Css Start---------- */
.abt_banner {
  padding-top: 185px;
  position: relative;
}

.abt_banner .section_title {
  max-width: 750px;
  margin: 0 auto;
}

.abt_banner .right_shape {
  right: 0;
  top: 30%;
}

.abt_banner .abt_img {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 60px 0;
}

.abt_banner .abt_img .img img {
  max-width: 100%;
  border: var(--img-border);
  border-radius: 10px;
}

.abt_banner .abt_img .img:first-child img {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

.abt_banner .abt_img .img:last-child img {
  border-right: none;
  border-radius: 10px 0 0 10px;
}

/* --------Text Flow Slider Css Start----- */
.textFlow_list {
  background-color: var(--black);
  padding: 20px 0;
  margin-bottom: 10px;
  position: relative;
}

.textFlow_list.white_cover::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  height: 30px;
  width: 100%;
  background-color: var(--bg-white);
  z-index: -1;
}

.textFlow_list .text_block span {
  color: var(--text-white);
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
}

/* --------Text Flow Slider Css End----- */

/* ------------Chef Section Start----------------- */
.chef_section {
  position: relative;
}

.chef_section.row_am {
  padding-bottom: 100px;
}

.chef_section .side_shape {
  right: 0;
}

.chef_section .chef_img .radius_img {
  border: var(--img-border);
  border-radius: 100% 100% 0 0;
}

.chef_section .abt_chef {
  padding: 120px 0 0 60px;
}

.chef_section .abt_chef .banner_badge {
  position: relative;
  top: auto;
  right: auto;
  margin: 0 0 35px 0;
}

.chef_section .chef_name {
  margin: 0;
  font-family: var(--font-bebas);
  font-size: 25px;
  color: var(--black);
  font-weight: 500;
  margin-top: 15px;
  letter-spacing: 1px;
}

.chef_section .chef_name span {
  color: var(--text-grey);
}

/* ------------Chef Section End----------------- */

/* -------Video Section Css Start-------- */
.video_section {
  position: relative;
  z-index: 9;
  margin-bottom: -10px;
}

.video_section .chef_img {
  position: absolute;
  top: -150px;
  right: 32%;
}

.video_section .chef_img img {
  border-radius: 350px;
  border: var(--img-border);
  width: 235px;
  height: 320px;
  transition: .4s ease-in-out;
}

/* -------Video Section Css End-------- */

/* ----------Our journey Section Css Start------------ */

.our_journey {
  position: relative;
}

.our_journey .side_shape {
  right: 0;
  top: -100px;
}

.our_journey .joueney_box {
  padding-right: 30px;
  margin-top: 30px;
}

.our_journey .joueney_box h3 {
  font-size: 28px;
  color: var(--black);
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  font-weight: 400;
  margin: 35px 0 10px 0;
}

.our_journey .joueney_box p {
  margin-bottom: 0;
}

/* ----------Our journey Section Css End------------ */

/* ---------Coustomer Review Section Css Start--------- */
.coustomer_review_section {
  position: relative;
}

.coustomer_review_section .coustomer_inner {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.coustomer_review_section .review_box {
  margin: 0 0 35px 0;
  border: var(--img-border);
  background-color: #323232;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 48%;
}

.coustomer_review_section .with_text img {
  width: 100px;
  height: 150px;
  border: 3px solid var(--black);
  border-radius: 100px;
  object-fit: cover;
}

.coustomer_review_section .review_box .review {
  width: calc(100% - 130px);
}

.coustomer_review_section .review_box .review .star {
  margin-bottom: 5px;
  letter-spacing: -2px;
}

.coustomer_review_section .review_box .review .star span {
  color: #f78e11;
  letter-spacing: -2px;
}

.coustomer_review_section .review_box .quotes {
  position: absolute;
  font-size: 26px;
}

.coustomer_review_section .review_box .left_quote {
  top: -25px;
  left: 20px;
}

.coustomer_review_section .review_box .right_quote {
  bottom: -25px;
  right: 20px;
}

.coustomer_review_section .review_box:nth-child(even) {
  margin-left: auto;
}

.coustomer_review_section .review _box:nth-child(n + 3n) {
  margin-left: 150px;
}

.coustomer_review_section .review_box .review .name {
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
}

/* ---------Coustomer Review Section Css End--------- */

/* ---------Gallery Section Start--------- */
.gallery_section {
  position: relative;
  margin-top: -30px;
}

.gallery_section .img {
  margin: 40px 0 0 0;
  display: block;
  position: relative;
}

.gallery_section .img a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-white);
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 30px;
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.8);
}

.gallery_section .img:hover a {
  transform: scale(1);
  opacity: 1;
}

.gallery_section .img img {
  height: 350px;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

.lightbox {
  top: 50% !important;
  transform: translateY(-50%) !important;
  position: fixed;
}

.lb-nav a.lb-prev {
  background: url(../images/prev.svg) left 48% no-repeat;
}

.lb-nav a.lb-next {
  background: url(../images/next.svg) right 48% no-repeat;
}

.lb-data .lb-close {
  background: url(../images/close.png);
  background-size: contain;
}

#lightbox {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
}

.lb-data .lb-number {
  padding: 8px 0 0 0;
}

/* ---------Gallery Section Start--------- */


/* ---------Our Chef page  Start--------- */

.abt_banner .right_shape.chef_shape {
  right: 0;
  top: 60%;
}

.chef_section.chef_page .chef_name {
  color: var(--text-white);
}

.chef_section.chef_page.row_am {
  padding-bottom: 0;
}


/* ----------Offer Menu page Css Start-------------- */
.offer_menu {
  padding-top: 185px;
}

.offer_menu .item img {
  border: var(--img-border);
}

.offer_menu_section .nav-tabs {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  margin: 50px 0 30px 0;
  padding: 15px 0;
}

.offer_menu_section .nav-tabs .nav-item {
  margin: 0 40px;
}

.offer_menu_section .nav-tabs .nav-link {
  background-color: transparent;
  font-size: 22px;
  color: var(--text-grey);
  font-family: var(--font-bebas);
  border: transparent;
  position: relative;
  padding: 5px 0;
}

.offer_menu_section .nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  opacity: 0;
  transition: .4s all;
}

.offer_menu_section .nav-tabs .nav-link:hover:before,
.offer_menu_section .nav-tabs .nav-link.active:before {
  opacity: 1;
  bottom: 10px;
}

.offer_menu_section .nav-tabs .nav-link:hover,
.offer_menu_section .nav-tabs .nav-link.active {
  color: var(--primary-red);
}

.menulist_wraper {
  display: block;
}

.menulist_wraper .menulist {
  width: 50%;
}

.menulist_wraper .menulist.right_side {
  border-left: 2px solid #e7e7e7;
}

.menulist_wraper .menulist.left_side .menulist_box {
  padding-right: 20px;
}

.menulist_wraper .menulist.right_side .menulist_box {
  padding-left: 80px;
}

.menulist_wraper .menulist_box {
  border-bottom: 2px solid #e7e7e7;
  margin-bottom: 35px;
}

.menulist_wraper .menulist_box:last-child {
  margin-bottom: 0;
}

.menulist_wraper .menusub_text {
  display: inline-block;
  font-size: 25px;
  font-family: var(--font-bebas);
  color: #ffe15c;
  background-color: #444;
  padding: 10px 15px 8px 15px;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 400;
  border-radius: 10px;
  background: linear-gradient(45deg, #fdc503, #f9a918);
  margin-bottom: 40px;
}

.menulist_wraper ul li {
  margin-bottom: 40px;
  display: flex;
}
.menulist_wraper ul li .img {
  margin-right: 20px;
  width: 200px;
  height: 150px;
}
.menulist_wraper ul li .img img{
  width: 200px;
  height: 150px;
  border-radius: 10px;
}

.menulist_wraper ul li .mainCource {
  display: flex;
  justify-content: space-between;
}

.menulist_wraper ul li .mainCource .dishName {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 15px;
  max-width: 75%;
}

.menulist_wraper ul li .mainCource .dishName h4 {
  font-size: 25px;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  margin: 0;
}

.menulist_wraper ul li .mainCource .new {
  color: var(--text-white);
  background-color: var(--primary-red);
  text-transform: uppercase;
  padding: 1px 4px 0 4px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.3;
  display: inline-block;
  min-width: 40px;
  text-align: center;
  margin-left: 20px;
}

.menulist_wraper ul li .mainCource .doted,
.dishList_block .dish_list ul li .mainCource .doted {
  border-bottom: 2px dotted var(--border-grey);
  width: 100%;
  position: relative;
  top: -15px;
  flex: 1;
}

.menulist_wraper ul li .mainCource .price {
  font-size: 25px;
  color: var(--primary-red);
  font-family: var(--font-bebas);
  width: 80px;
  text-align: right;
  padding-left: 15px;
}

.menulist_wraper ul li .description {
  padding-right: 10px;
}

.menulist_wraper ul li .description p {
  color: #898989;
}

.pdf_btn {
  margin: 50px 0;
}

/* ----------Offer Menu page Css End-------------- */

/* -----------------Menu List Section Start----------- */
.bredcrumb_section.menu_list {
  position: relative;
  padding: 150px 0 100px 0;
  background: linear-gradient(to left, rgb(0 0 0 / 0%), rgb(0 0 0 / 44%)), url(../dosa_img/banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 0;
}

.menuList_page {
  transform: rotate(0);
}

.menuList_page .text_block span {
  font-size: 150px;
}

.menuList_page .text_block .mark_star {
  height: auto;
  font-size: 100px;
}

.menuList_page .owl-stage-outer,
.menuList_page .owl-stage {
  height: 150px;
}

.dishList_block .row {
  align-items: center;
}

.dishList_block .dish_list {
  padding-left: 20px;
}

.dishList_block .dish_left {
  margin-left: -220px;
  text-align: left;
}

.dishList_block .dish_right {
  margin-right: -240px;
  text-align: right;
}

.dishList_block .dish_list .btn {
  margin-top: 20px;
}

.dishList_block .dish_list ul {
  /* max-height: 650px; */
  /* overflow-y: auto; */
  padding-right: 15px;
  display: list-item;
  column-gap: 80px;
}

.dishList_block .dish_list ul::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(66, 66, 66, 0.3);
  border-radius: 5px;
  background-color: var(--black);
}

.dishList_block .dish_list ul::-webkit-scrollbar {
  width: 10px;
  background-color: var(--black);
}

.dishList_block .dish_list ul::-webkit-scrollbar-thumb {
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 6px rgba(66, 66, 66, .3);
  background-color: var(--text-grey);
}


.dishList_block .dish_list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.dishList_block .dish_list ul li .img {
  width: 100px;
}

.dishList_block .dish_list ul li .img img {
  width: 100%;
  border-radius: 10px;
}

.dishList_block .dish_list ul li .info {
  width: calc(100% - 100px);
  padding-left: 20px;
}

.dishList_block .dish_list ul li .mainCource {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}

.dishList_block .dish_list ul li .mainCource .dishName {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
  padding-right: 15px;
}

.dishList_block .dish_list ul li .mainCource .dishName h4 {
  font-size: 28px;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  margin: 0;
}

.dishList_block .dish_list ul li .mainCource .new {
  color: var(--text-white);
  background-color: var(--primary-red);
  text-transform: uppercase;
  padding: 1px 4px 0 4px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.3;
  display: inline-block;
  min-width: 40px;
  text-align: center;
  margin-left: 20px;
}

.dishList_block .dish_list ul li .mainCource .price {
  font-size: 28px;
  color: var(--primary-red);
  font-family: var(--font-bebas);
  width: 100px;
  text-align: right;
  padding-left: 15px;
}

.dishList_block .dish_list ul li .description {
  padding-right: 60px;
}

.dishList_block .dish_list ul li .description p {
  color: #bfbfbf;
  margin-bottom: 0;
}

/* -----------------Menu List Section End----------- */

/* ------------ Reservation Form Css Start ----------- */
.resarvation_form {
  padding: 0px 0 50px 0;

}

.resarvation_form.rform_bg {
  background-image: url(../images/formBg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.resarvation_form .form_inner {
  border: var(--img-border);
  background-image: url(../images/dark_bg.png);
  padding: 40px 50px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resarvation_form .form_inner .formBlock {
  width: 60%;
}

.resarvation_form .form_inner .formBlock h2 {
  font-size: 50px;
  font-family: var(--font-bebas);
  line-height: 1;
  color:#fff;
}

.resarvation_form .form_inner .formBlock p {
  color: var(--text-grey);
}

.resarvation_form .form_inner .formBlock p a {
  color: var(--primary-red);
}

.resarvation_form .form_inner form {
  margin-top: 50px;
}

.resarvation_form .form_inner form .row>div {
  padding-left: 10px;
  padding-right: 10px;
}

.resarvation_form .form_inner form .form-group {
  position: relative;
}

.resarvation_form .form_inner form .form-group .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-white);
  font-size: 14px;
}

.resarvation_form .form_inner form .form-group .has_icon {
  padding-left: 35px;
}

.resarvation_form .form_inner form .form-group input[type="date"]::-webkit-inner-spin-button,
.resarvation_form .form_inner form .form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.resarvation_form .form_inner form .form-control {
  height: 55px;
  border: 2px solid var(--border-grey);
  border-radius: 10px;
  font-weight: 500;
  background-color: #222;
  color: var(--text-white);
}

.resarvation_form .form_inner form input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.resarvation_form .form_inner form input[type="date"] {
  text-transform: uppercase;
}

.resarvation_form .form_inner form input[type="date"]::-webkit-inner-spin-button,
.resarvation_form .form_inner form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.resarvation_form .form_inner form .form-control::placeholder {
  color: var(--text-white);
}

.resarvation_form .form_inner form textarea.form-control {
  height: 150px;
}

.resarvation_form .form_inner .contact_block {
  background-color: #1c1c1c;
  padding: 20px 50px;
  text-align: center;
  border-radius: 20px;
  border: 3px solid var(--border-grey);
  width: 32%;
}

.resarvation_form .form_inner .contact_block h2 {
  font-family: var(--font-bebas);
  font-size: 50px;
  margin-bottom: 15px;
  color: #fff;
}

.resarvation_form .form_inner .contact_block .booking h3 {
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
  color: #e8e8e8;
}

.resarvation_form .form_inner .contact_block .booking a {
  font-size: 30px;
  color: var(--primary-red);
  font-weight: 500;
}

.resarvation_form .form_inner .contact_block ul li {
  margin-top: 20px;
}

.resarvation_form .form_inner .contact_block ul li h3 {
  font-weight: 400;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: #e8e8e8;
}

.resarvation_form .form_inner .contact_block ul li p {
  color: var(--text-grey);
  margin-bottom: 0;
}

/* ------------ Reservation Form Css End ----------- */

/* ------------ Contact Us Page Css Start ------------- */
.contact_us_section {
  position: relative;
  padding-top: 185px;
}

.contact_us_section .right_shape {
  right: 0;
  top: 10%;
}

.contact_us_section .left_shape {
  left: 0;
  top: 20%;
}

.contact_us_section .section_title {
  margin-bottom: 100px;
}

.contact_us_section .img .radius_img {
  border-radius: 300px 300px 0 0;
  border: var(--img-border);
  height: 785px;
  width: 100%;
  object-fit: cover;
}

.contact_us_section .contact_box {
  padding: 15px 0 0 70px;
  text-align: left;
}

.contact_us_section .contact_listing .sub_title {
  font-family: var(--font-bebas);
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.contact_us_section .contact_listing li {
  padding: 25px 0;
  border-top: 1px solid #536c59;
}

.contact_us_section .contact_listing li:first-child {
  border: none;
  padding-top: 0;
}

.contact_us_section .contact_listing li .cnt_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact_us_section .contact_listing li .cnt_block a,
.contact_us_section .contact_listing li .cnt_block p {
  width: 70%;
  color: var(--text-white);
}

.contact_us_section .contact_listing li .cnt_block a:hover {
  color: var(--primary-red);
}

.contact_us_section .contact_listing li .cnt_block span {
  width: 30%;
  text-align: right;
  color: var(--text-grey);
}

.contact_us_section form h3 {
  font-size: 28px;
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
}

.contact_us_section form .form-control {
  height: 55px;
  border: 2px solid var(--border-grey);
  border-radius: 10px;
  font-weight: 400;
  background-color: #222;
  color: var(--text-white);
}

.contact_us_section form .form-control::placeholder {
  color: var(--text-white);
}

.contact_us_section form textarea.form-control {
  height: 100px;
  padding-top: 10px;
}

.contact_us_section .map {
  margin: 100px 0;
}

.contact_us_section .map iframe {
  border-radius: 20px;
  border: var(--img-border);
  filter: grayscale(1);
  width: 100%;
}

/* ------------ Contact Us Page Css End ------------- */



/* ------Blog List Page Css start------ */

.bredcrumb_section.blog_list_page {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/blog-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 90px;
}


.blog_list_section {
  position: relative;
  margin: 75px 0;
  z-index: 9;
}

.blog_list_section .blog_left_side .blog_panel {
  background-color: var(--bg-white);
  border-radius: 20px;
  border: #696969 solid 6px;
  margin-bottom: 50px;
  background-color: var(--dark-black);
}

.blog_list_section .blog_left_side .blog_panel .main_img img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blog_list_section .blog_left_side .blog_panel .blog_info {
  padding: 30px 35px;
}

.blog_list_section .blog_left_side .blog_panel .blog_info span {
  font-size: 12px;
  ;
  color: var(--text-grey);
}

.blog_list_section .blog_left_side .blog_panel .blog_info h2 {
  font-family: var(--font-bebas);
  font-size: 30px;
  font-weight: normal;
  display: block;
  transition: .4s all;
  margin-bottom: 15px;
  margin-top: 5px;
  letter-spacing: 1px;
}

.blog_list_section .blog_left_side .blog_panel .blog_info h2 a {
  font-size: 30px;
  display: block;
  transition: .4s all;
  margin-bottom: 15px;
  margin-top: 5px;
}

.blog_list_section .blog_left_side .blog_panel .blog_info h2:hover a {
  color: var(--main_purple);
}

.blog_list_section .blog_info .authore_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}

.blog_list_section .blog_info .authore_block .authore {
  display: flex;
  align-items: center;
}

.blog_list_section .blog_info .authore_block .authore .img {
  width: 50px;
  margin-right: 15px;
  position: relative;
  top: -2px;
}

.blog_list_section .blog_info .authore_block .authore .img img {
  max-width: 100%;
  border-radius: 100px;
  border: solid 2px #1b1b1b;
}

.blog_list_section .blog_info .authore_block .text h4 {
  margin-bottom: 0px;
  font-weight: normal;
  font-size: 17px;
}

.blog_list_section .blog_info .authore_block .blog_tag span {
  background-color: var(--more-dark-black);
  color: var(--text-white);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: var(--font-bebas);
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 16px;
}

/* -----blog-right-side------ */
.bg_box {
  padding: 30px;
  background-color: var(--dark-black);
  border-radius: 12px;
  border: #696969 solid 6px;
  margin-bottom: 40px;
}

.blog_list_section .blog_right_side .blog_search_block form label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog_list_section .blog_right_side .blog_search_block form .form_inner {
  position: relative;
  width: 100%;
  height: 60px;
}

.blog_list_section .blog_right_side .blog_search_block form .form_inner .form-control {
  height: 100%;
  border-radius: 12px;
  border: 1px solid #9E9BA7;
  padding-right: 50px;
  color: var(--text-white);
  background-color: var(--dark-black);
}

.blog_list_section .blog_right_side .blog_search_block form .form_inner button {
  font-size: 20px;
  position: absolute;
  background-color: transparent;
  border: none;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  padding: 5px;
  transition: .4s all;
  color: var(--text-white);
}

.blog_list_section .blog_right_side .blog_search_block form .form_inner button:hover {}

/* Recent Blog Css Start */

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li:last-child a {
  margin-bottom: 10px;
  transition: .4s all;
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a .img {
  width: 70px;
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a .img img {
  border-radius: 10px;
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a .text {
  width: calc(100% - 90px);
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a .text h4 {
  font-weight: normal;
  color: var(--text-white);
  font-size: 14px;
  transition: .4s all;
  text-transform: uppercase;
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a:hover h4 {
  color: var(--main_purple);
}

.blog_list_section .blog_right_side .recent_post_block .recent_blog_list li a .text span {
  font-size: 14px;
}

/* Categories block Css */

.blog_list_section .blog_right_side .categories_block ul li {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px 0;
}

.blog_list_section .blog_right_side .categories_block ul li:last-child {
  margin-bottom: 0;
}

.blog_list_section .blog_right_side .categories_block ul li .cat {
  width: 75%;
  transition: .4s all;
  color: var(--text-white);
}

.blog_list_section .blog_right_side .categories_block ul li .cat i {
  color: var(--main_purple);
  margin-right: 3px;
}

.blog_list_section .blog_right_side .categories_block ul li .cat:hover {
  color: var(--primary-red);
}

/* Tag Blocks Css Start */

.blog_list_section .blog_right_side .tags_block ul {
  display: flex;
  flex-wrap: wrap;
}

.blog_list_section .blog_right_side .tags_block ul li a {
  display: inline-block;
  padding: 6px 20px;
  background-color: var(--more-dark-black);
  border-radius: 6px;
  margin: 0 10px 10px 0;
  transition: .4s all;
}

.blog_list_section .blog_right_side .tags_block ul li a:hover {
  background-color: var(--bg-white);
  color: var(--dark-black);

}

.blog_list_section .blog_right_side h3 {
  font-family: var(--font-bebas);
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 22px;

}




/* Pagination Css Start */
.pagination_block ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.pagination_block ul li a {
  margin: 0 5px;
  transition: 0.4s all;
  display: block;
  width: 39px;
  height: 39px;
  background-color: none;
  border-radius: 6px;
  text-align: center;
  line-height: 39px;
  color: var(--text-white);
  border: 1px solid #696969;
}

.pagination_block ul li a:hover,
.pagination_block ul li a.active {
  background-color: var(--primary-red);
  color: var(--text-white);
  border-color: var(--primary-red);
}

.pagination_block ul li a:hover i {
  color: var(--text-white);
}

.pagination_block ul li:first-child a:hover {
  color: var(--purple);
}

.pagination_block ul li:last-child a:hover {
  color: var(--purple);
}


/* Blog Single Css Start */

.blog_detail_section .blog_info {
  padding: 30px 80px 0 80px;
}

.blog_detail_section .container {
  max-width: 1010px;
}

.blog_detail_section .blog_info .date {
  font-size: 15px;
  color: var(--text-grey);
}

.blog_detail_section .blog_info h1 {
  font-family: var(--font-bebas);
  font-size: 40px;
  font-weight: normal;
  color: var(--text-white);
  letter-spacing: 1px;
  display: block;
  transition: .4s all;
  margin-bottom: 15px;
  margin-top: 5px;
}

.blog_detail_section .blog_info .authore_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 40px;
}

.blog_detail_section .blog_info .authore_block .authore {
  display: flex;
  align-items: center;
}

.blog_detail_section .blog_info .authore_block .authore .img {
  width: 50px;
  margin-right: 15px;
  position: relative;
  top: -2px;
}

.blog_detail_section .blog_info .authore_block .authore .img img {
  max-width: 100%;
  border-radius: 100px;
}

.blog_detail_section .blog_info .authore_block .text h4 {
  margin-bottom: 0px;
  color: var(--text-white);
  font-weight: normal;
  font-size: 17px;
}

.blog_detail_section .blog_info .authore_block .text span {
  color: var(--text-grey);
  font-weight: normal;
  font-size: 13px;
}

.blog_detail_section .blog_info .authore_block .blog_tag span {
  background-color: var(--more-dark-black);
  color: var(--text-white);
  display: inline-block;
  padding: 3px 16px;
  border-radius: 6px;
  line-height: 1.5;
  font-family: var(--font-bebas);
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 17px;
}

/* Blog Detail */
.blog_detail_section {
  margin-bottom: 40px;
}

.blog_detail_bredcrumb.bred_crumb .bred_text {
  margin-top: -70px;
}

.blog_detail_section .blog_inner_pannel {
  background-color: var(--dark-black);
  border: #696969 solid 6px;
  border-radius: 20px;
  padding: 45px 40px;
  margin-top: -100px;
  position: relative;
}

.blog_detail_section .blog_inner_pannel .review {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.blog_detail_section .blog_inner_pannel .review span {
  line-height: 1;
}

.blog_detail_section .blog_inner_pannel .review span:first-child {
  color: var(--purple);
  display: inline-block;
  font-weight: 700;
}

.blog_detail_section .blog_inner_pannel .review span:last-child {

  display: inline-block;
  margin-left: 15px;
  padding-left: 15px;

}

.blog_detail_section .blog_inner_pannel .section_title {
  margin-bottom: 40px;
}

.blog_detail_section .blog_inner_pannel .section_title h2 {
  margin-bottom: 0;
}

.blog_detail_section .blog_inner_pannel img {
  max-width: 100%;
}

.blog_detail_section .blog_inner_pannel .main_img {
  margin: 30px 0;
}

.blog_detail_section .blog_inner_pannel .main_img img {
  width: 100%;
  border-radius: 20px;
}

.blog_detail_section .blog_inner_pannel .main_img iframe {
  border-radius: 12px;
  width: 100%;
  height: 510px;
}

.blog_detail_section .blog_inner_pannel .info {
  padding: 0 80px;
}

.blog_detail_section .blog_inner_pannel .info h2 {
  font-family: var(--font-bebas);
  font-weight: normal;
  color: var(--text-white);
  margin-top: 30px;
  font-size: 30px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.blog_detail_section .blog_inner_pannel .info ul {
  margin-bottom: 40px;
}

.blog_detail_section .blog_inner_pannel .info ul li p {
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
  font-size: 16px;

}

.blog_detail_section .blog_inner_pannel .info ul li p .icon {
  position: absolute;
  left: 0;

}

.blog_detail_section .blog_inner_pannel .two_img {
  margin-bottom: 70px;
}

.blog_detail_section .blog_inner_pannel .quote_block {
  background-color: var(--more-dark-black);
  border-radius: 12px;
  padding: 55px 35px 30px 45px;
  position: relative;
  margin: 35px 80px 35px 80px;
  border: solid 4px;
  border-color: var(--border-grey);
}

.blog_detail_section .blog_inner_pannel .quote_block h3 {
  color: var(--text-white);
  margin: 15px 0;
  line-height: 33px;
  letter-spacing: 1px;
  font-weight: 500;
}

.blog_detail_section .blog_inner_pannel .quote_block .q_icon {
  font-size: 80px;
  color: var(--text-white);
  font-family: 'Playfair Display', serif;
  line-height: 0.2;
  display: block;
}

.blog_detail_section .blog_inner_pannel .quote_block .q_icon:last-child {
  text-align: right;
  line-height: 0.5;
}

.blog_detail_section .blog_inner_pannel .blog_authore {
  padding: 0 80px;
  margin: 35px 0;
}

.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul {
  display: flex;
}

/* Social Media link list */
.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a {
  display: block;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 34px;
  font-size: 15px;
  border: 1px solid #CCC9D7;
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.4s all;
}

.blog_detail_section .social_media ul li a:hover {
  color: var(--text-white);
}

.blog_detail_section .social_media ul li:nth-child(1) a:hover {
  background-color: #3B5998;
  border-color: #3b5998;
}

.blog_detail_section .social_media ul li:nth-child(2) a:hover {
  background-color: #00acee;
  border-color: #00acee;
}

.blog_detail_section .social_media ul li:nth-child(3) a:hover {
  background-color: #d62976;
  border-color: #d62976;
}

.blog_detail_section .social_media ul li:nth-child(4) a:hover {
  background-color: #c8232c;
  border-color: #c8232c;
}


/* comment section Css Start */
.comment_section .container {
  max-width: 1010px;
}

.comment_section .blog_cooment_block {
  /*background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 0 8px #e1dcf9;
  padding: 40px 50px;*/
}

.comment_section .blog_cooment_block .posted_cooment {
  margin-bottom: 60px;
}

.comment_section .blog_cooment_block .posted_cooment .section_title {
  text-align: left;
}

.comment_section ul {
  margin-top: 30px;
}

.comment_section ul li {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #555459;
}

.comment_section ul li:last-child {
  border-bottom: 1px solid #555459;
}

.comment_section ul li.replay_comment {
  margin-left: 110px;
}

.comment_section ul li .authore_info {
  display: flex;
  align-items: center;
  width: 260px;
}

.comment_section ul li .authore_info .avtar {
  width: 88px;
  margin-right: 20px;
}

.comment_section ul li .authore_info .avtar img {
  border-radius: 100px;
  border: solid 2px;
  border-color: var(--border-grey);
}

.comment_section ul li .authore_info .text {
  width: calc(100% - 108px);
}

.comment_section ul li .authore_info .text h4 {
  font-size: 18px;
  font-weight: normal;

}

.comment_section ul li .authore_info .text span {
  font-size: 14px;
  color: var(--text-grey);
}

.comment_section ul li .comment {
  width: calc(100% - 310px);
  margin-left: 50px;
}

.comment_section ul li .comment p {
  margin-bottom: 0;
}

/* comment-form-section */

.comment_form_section .section_title {
  text-align: left;
}

.comment_form_section form {
  margin-top: 30px;
}

.comment_form_section form .form-group .form-control {
  background-color: var(--black);
  border-radius: 12px;
  height: 60px;
  margin-bottom: 30px;
  color: var(--body-text-purple);
  padding: 15px;
  border: 2px solid #696969;
}

.comment_form_section form .form-group .form-control::placeholder {
  color: var(--body-text-purple);
}

.comment_form_section form .form-group textarea.form-control {
  height: 140px;
  padding-top: 15px;
  resize: none;
}

/* blog pages css end */

/* -----------New Home Page Css Start-------------- */
.second_banner {
  padding-top: 130px;
  margin-bottom: 50px;
}

.banner_slider {
  margin: 0 auto;
  width: calc(100% - 200px);
}

.banner_slider .slider_block {
  position: relative;
  height: 760px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
}

.banner_slider .slider_block .ban_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.banner_slider .slider_block .ban_text .sub_text {
  font-size: 40px;
  font-family: var(--font-playball);
}

.banner_slider .slider_block .ban_text h1 {
  font-size: 100px;
  line-height: 1;
}

.banner_slider .slider_block .ban_text .btn {
  margin-top: 10px;
}

.banner_slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.banner_slider .owl-nav button {
  position: absolute;
  left: 20px;
  border: 1px solid var(--text-white) !important;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  opacity: 0.8;
  transition: .4s all;
}

.banner_slider .owl-nav .owl-next {
  left: auto;
  right: 20px;
}

.banner_slider .owl-nav button span {
  font-size: 35px !important;
  display: block;
  line-height: 1;
  margin: -5px 0 0 -2px;
}

.banner_slider .owl-nav .owl-next span {
  margin: -5px -2px 0 0;
}

.banner_slider .owl-nav button:hover {
  opacity: 1;
}

/* Video Section Css Start */
.home_video_section {
  margin-top: -15px;
  position: relative;
}

.home_video_section .video_wraper {
  height: 590px;
  max-width: 1300px;
  padding: 0 0 40px 0;
  margin: 0 auto;
  background-image: url(../dosa_img/truck.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}

.home_video_section .video_wraper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: #000000; */
  background-image: none;
  border-radius: 20px;
  opacity: 0.7;
}

.home_video_section .video_wraper .play_vtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home_video_section .side_shape img {
  position: absolute;
}

.home_video_section .side_shape .right_shape {
  right: 0;
  top: 0;
}

.home_video_section .side_shape .left_shape {
  left: 0;
  bottom: 0;
}

.home_video_section .video_wraper .bottom_text {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  position: relative;
  z-index: 3;
}

.home_video_section .video_wraper .bottom_text li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.home_video_section .video_wraper .bottom_text li p,
.home_video_section .video_wraper .bottom_text li p a {
  color: var(--text-grey);
  margin-bottom: 0;
}

.home_video_section .video_wraper .bottom_text li h3 {
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.home_video_section .video_wraper .bottom_text li .icon {
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: var(--text-white);
  border: 1px solid var(--text-white);
  border-radius: 100px;
  text-align: center;
  line-height: 48px;
}

.home_video_section .count_block {
  display: flex;
  text-align: center;
  justify-content: center;
  padding-top: 80px;
}

.home_video_section .count_block li {
  padding: 0 80px;
  position: relative;
}

.home_video_section .count_block li:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -5px;
  height: 100px;
  width: 10px;
  background-image: url(../images/count_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
}

.home_video_section .count_block li .icon {
  height: 75px;
  margin-bottom: 20px;
}

.home_video_section .count_block li .icon img {
  height: 65px;
}

.home_video_section .count_block li p span {
  font-size: 50px;
  color: var(--primary-red);
  font-family: var(--font-bebas);
  line-height: 1.2;
}

.home_video_section .count_block li p {
  line-height: 1;
  font-family: var(--font-bebas);
  color: var(--black);
  font-size: 20px;
}

.home_video_section .count_block li .count_text {
  margin-bottom: 0;
}

/* ------Our Menu Section Css Start------ */
.our_menu_section {
  position: relative;
  margin-top: -12px;
}

.our_menu_section .right_side {
  position: absolute;
  top: -150px;
  right: -30px;
}

.our_menu_section .nav-tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0 30px 0;
  padding: 0;
  border: none;
}

.our_menu_section .nav-tabs .nav-item {
  margin: 0 40px;
}

.our_menu_section .nav-tabs .nav-link {
  background-color: transparent;
  font-size: 30px;
  color: #ececec;
  font-family: var(--font-bebas);
  border: transparent;
  position: relative;
  padding: 5px 0;
}

.our_menu_section .nav-tabs .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: var(--primary-red);
  opacity: 0;
  transition: .4s all;
}

.our_menu_section .nav-tabs .nav-link:hover:before,
.our_menu_section .nav-tabs .nav-link.active:before {
  opacity: 1;
  bottom: 10px;
}

.our_menu_section .nav-tabs .nav-link:hover, .our_menu_section .nav-tabs .nav-link.active {
  color: #fff;
  /* background: linear-gradient(45deg, #e13e54, #6f2f86);
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}
.our_menu_section .dish_box {
  background-color: white;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  border-radius: 20px;
}

.our_menu_section .dish_box .new {
  font-size: 14px;
  text-transform: uppercase;
  background-color: var(--primary-red);
  color: var(--text-white);
  line-height: 1;
  padding: 2px 5px;
  border-radius: 2px;
  position: absolute;
  top: -8px;
  left: 30px;
}

.our_menu_section .dish_box .dish_info {
  display: flex;
  justify-content: space-between;
}

.our_menu_section .dish_box .dish_info .dish_img {
  width: 170px;
  height: 170px;
  border-radius: 10px;
}

.our_menu_section .dish_box .dish_info .dish_img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.our_menu_section .dish_box .dish_info .dish_text {
  width: calc(100% - 200px);
}

.our_menu_section .dish_box .dish_info .dish_text h3 {
  font-size: 28px;
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
  background: linear-gradient(45deg, #e13e54, #6f2f86);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our_menu_section .dish_box .dish_info .dish_text p {
  color: var(--text-grey);
}

.our_menu_section .dish_box .dish_info .dish_text .price {
  font-size: 28px;
  color: var(--primary-red);
  font-family: var(--font-bebas);
  background: linear-gradient(45deg, #e13e54, #6f2f86);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------Discount Section Css Start-------- */
.discount_section .dish_slides {
  position: relative;
}

.discount_section .section_title {
  top: 0px;
}

.discount_section .dishMain {
  position: relative;
}

.discount_section .dishMain:first-child:before {
  content: "";
  background-image: url(../images/dicount_icon.png);
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: -90px;
}

.discount_section .dish_block {
  top: 50px;
  display: flex;
  margin: 35px 0 0 0;
  height: 530px;
}

.discount_section .dish_block .dish_text {
  width: 50%;
  background-image: url(../images/disocunt_bg.jpg);
  border-radius: 20px 0 0 20px;
  padding: 40px;
  height: 100%;
}

.discount_section .dish_block .dish_text .text {
  width: 100%;
  height: 100%;
  border: 1px solid var(--bg-white);
  padding: 15px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
}

.discount_section .dish_block .dish_text .text p,
.discount_section .dish_block .dish_text .text span {
  color: var(--text-white);
}

.discount_section .dish_block .dish_text .text .off {
  font-size: 50px;
  font-family: var(--font-bebas);
  color: var(--primary-red);
  text-decoration: underline;
}

.discount_section .dish_block .dish_text .text h3 {
  font-size: 28px;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.discount_section .dish_block .dish_text .text p {
  color: var(--text-grey);
}

.discount_section .dish_block .dish_text .text .price {
  font-size: 28px;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  font-weight: 400;
}

.discount_section .dish_block .dish_text .text .price .new_price {
  color: var(--primary-red);
}

.discount_section .dish_block .dish_text .text .price .old_price {
  color: var(--text-grey);
  text-decoration: line-through;
  margin-left: 5px;
}

.discount_section .dish_block .dish_img {
  width: 50%;
  border-radius: 0 20px 20px 0;
}

.discount_section .dish_block .dish_img img {
  max-width: 100%;
  border-radius: 0 20px 20px 0;
  height: 100%;
  object-fit: cover;
}

/* ------Popular-dish-section--------- */
.popular_dish_section {
  position: relative;
  padding: 60px 0;

  /*background: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/formBg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
}


.popular_dish_section .side_shape {
	/*display: none;*/
}

.popular_dish_section .side_shape .right_side {
  position: absolute;
  right: 0;
}

.popular_dish_section .side_shape .left_side {
  position: absolute;
  left: 0;
}

.popular_dish_section .dishList_slider {
  width: calc(100% - 70px);
  margin: 30px auto 0 auto;
  position: relative;
}

.popular_dish_section .dishList_slider::before {
  content: "";
  background-image: url(../images/ban_02_shape.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -10px;
  left: -100px;
}

.popular_dish_section .dishList_slider::after {
  content: "";
  background-image: url(../images/wing_small.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 50px;
  right: -60px;
}

.popular_dish_section .dish_card {
  background-color: #444444;
  padding: 5px 5px 0 5px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 0px;
  background: linear-gradient(45deg, #fdc503, #f9a918);
}

.popular_dish_section h1 {
  font-size: 100px;
  font-family: var(--font-bebas);
  line-height: 1;
}

.popular_dish_section .dish_card h3 {
  font-size: 20px;
  margin: 0;
  padding: 10px 0;
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1.5px;
  color: white;
}

.popular_dish_section .sub_text {
  font-size: 41px;
  line-height: 1;
}

.popular_dish_section .dish_card .img {
  width: 100%;
  height: 260px;
}

.popular_dish_section .dish_card .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

#popular_dish .owl-stage {
  padding: 35px 0 0 0;
}

#popular_dish .owl-stage .owl-item:nth-child(even) .item {
  rotate: 3deg;
  margin: 10px;
}

#popular_dish .owl-stage .owl-item:nth-child(odd) .item {
  rotate: -3deg;
  margin: 10px;
}

#popular_dish .owl-stage .owl-item:nth-child(4n + 2) .item {
  transform: translateY(-30px);
}

.popular_dish_section .owl-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 100%;
}

.popular_dish_section .owl-nav button {
  position: absolute;
  left: -50px;
  border: 1px solid var(--text-white) !important;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  opacity: 0.8;
  transition: .4s all;
}

.popular_dish_section .owl-nav .owl-next {
  left: auto;
  right: -50px;
}

.popular_dish_section .owl-nav button span {
  font-size: 35px !important;
  display: block;
  line-height: 1;
  margin: -5px 0 0 -2px;
}

.popular_dish_section .owl-nav .owl-next span {
  margin: -5px -2px 0 0;
}

.popular_dish_section .owl-nav button:hover {
  opacity: 1;
}

/* Who Version  2 Css Start*/
.who_version_two {
  margin-top: 0;
}

.who_version_two .section_title {
  padding-top: 0;
}

.who_version_two .gallery_slider {
  margin: 40px 0;
}

.who_version_two .gallery_slider img {
  border: var(--img-border);
}

/* ------Testimonial Section Start--------- */
.testimonial_section .testimonial_wraper {
  margin: 50px auto 0px auto;
  max-width: 1300px;
  background-image: url(../images/who_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 50px;
  border-radius: 20px;
  position: relative;
}

.testimonial_section .testimonial_wraper::before {
  content: "";
  background-image: url(../images/testi_smiley.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 200px;
  height: 100px;
  position: absolute;
  top: -110px;
  left: 0;
}

.testimonial_section .testimonial_wraper::after {
  content: "";
  background-image: url(../images/tasty_mouth.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 80px;
  position: absolute;
  bottom: -10px;
  right: -120px;
}

.testimonial_section .testimonial_wraper .testimonial_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.testimonial_section .testimonial_wraper .testimonial_inner .img {
  width: 440px;
  height: 280px;
  rotate: -3deg;
  margin-top: 30px;
}

.testimonial_section .testimonial_wraper .testimonial_inner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: var(--img-border);
  border-radius: 20px;
}

.testimonial_section .testimonial_wraper .testimonial_inner .text {
  width: calc(100% - 480px);
}

.testimonial_section .testimonial_wraper .testimonial_inner .quote {
  color: var(--text-white);
  font-size: 100px;
  line-height: 1;
  height: 40px;
  display: block;
  font-family: var(--font-bebas);
}

.testimonial_section .testimonial_wraper .testimonial_inner .star {
  margin: 15px 0;
  letter-spacing: -2px;
  display: flex;
}

.testimonial_section .testimonial_wraper .testimonial_inner .star span {
  color: #f78e11;
  letter-spacing: -2px;
}

.testimonial_section .testimonial_wraper .testimonial_inner h2 {
  font-size: 28px;
  color: var(--text-white);
  font-weight: 400;
  margin-bottom: 20px;
}

.testimonial_section .testimonial_wraper .testimonial_inner h3 {
  font-family: var(--font-bebas);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color:#fff;
}

.testimonial_section .testimonial_wraper .testimonial_inner h3 span {
  color: var(--text-grey);
}

#testimonial_slider .item {
  padding: 10px;
}

.testimonial_wraper .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.testimonial_wraper .owl-nav button {
  position: absolute;
  left: -60px;
  border: 1px solid var(--text-white) !important;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  opacity: 0.8;
  transition: .4s all;
}

.testimonial_wraper .owl-nav .owl-next {
  left: auto;
  right: -60px;
}

.testimonial_wraper .owl-nav button span {
  font-size: 35px !important;
  display: block;
  line-height: 1;
  margin: -5px 0 0 -2px;
  color: var(--text-white);
}

.testimonial_wraper .owl-nav .owl-next span {
  margin: -5px -2px 0 0;
}

.testimonial_wraper .owl-nav button:hover {
  opacity: 1;
}

/* ---------Out Team Section Css Start----------- */
.our_team_section {
  position: relative;
}

.our_team_section .side_shape img {
  position: absolute;
  right: 0;
  top: 0;
}

.our_team_section .section_title {
  margin-bottom: 40px;
}

.our_team_section .team_card .img {
  width: 100%;
  height: 490px;
}

.our_team_section .team_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  border: var(--img-border);
}

.our_team_section .team_card .info {
  text-align: center;
  margin-top: 30px;
}

.our_team_section .team_card .info h3 {
  font-size: 25px;
  font-family: var(--font-bebas);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.our_team_section .team_card .info .position {
  color: var(--text-grey);
}

.our_team_section .owl-nav {
  position: absolute;
  top: calc(50% - 65px);
  transform: translateY(-50%);
  width: 100%;
}

.our_team_section .owl-nav button {
  position: absolute;
  left: -60px;
  border: 1px solid var(--text-white) !important;
  width: 35px;
  height: 35px;
  border-radius: 100px;
  opacity: 0.8;
  transition: .4s all;
}

.our_team_section .owl-nav .owl-next {
  left: auto;
  right: -60px;
}

.our_team_section .owl-nav button span {
  font-size: 35px !important;
  display: block;
  line-height: 1;
  margin: -5px 0 0 -2px;
  color: var(--text-white);
}

.our_team_section .owl-nav .owl-next span {
  margin: -5px -2px 0 0;
}

.our_team_section .owl-nav button:hover {
  opacity: 1;
}

/* ------Blog Section Css Start------ */
.blog_card_section {
  position: relative;
}

.blog_card_section .section_title {
  margin-bottom: 40px;
}

.blog_card_section .blog_card {
  background-color: var(--blog-bg);
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.blog_card_section .blog_card .img {
  width: 100%;
  height: 220px;
  display: block;
  margin-bottom: 30px;
}

.blog_card_section .blog_card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog_card_section .blog_card .info {
  padding: 0 25px 20px 25px;
}

.blog_card_section .blog_card .date {
  color: var(--text-grey);
}

.blog_card_section .blog_card h3 {
  font-size: 28px;
  font-family: var(--font-bebas);
  letter-spacing: 1px;
  font-weight: 400;
}

.blog_card_section .blog_card a {
  color: var(--text-white);
}

.blog_card_section .blog_card a:hover {
  color: var(--primary-red);
}


.banner_slider .owl-item.active .inner_text {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}
#cog-overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.is-hide {
  display: none;
}
.cog-section {
  padding: 50px 0;
}
.cog-term-head h4 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* -----------------------------------faq-------------------------------- */


.cog-faq .accordion-button:not(.collapsed) {
  color: #167dbe;
  background-color: #e5f6ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.cog-faq .accordion-button:focus {
  box-shadow: none;
}
.cog-faq .accordion-item {
  background-color: #fff;
  border: none;
  margin-bottom: 13px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 8%) !important;
}
.cog-faq .accordion-button:not(.collapsed) {
  color: #167dbe;
  background-color: #e5f6ff;
  box-shadow: none;
  font-weight: 500;
  border: none;
}
.accordion-collapse {
border: solid rgba(0,0,0,0.125);
border-width: 0 1px;
border: none;
}
.accordion-button.collapsed {
  border: none;

}
/* ---------------------------------blog detail-------------------------------- */
.cog-blog-detail{
    /* box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important; */
    /* padding: 30px; */

}

.cog-blog-detail img{
    width: 100%;
    margin-bottom: 20px;

}


/* ------------------------------------error----------------------------------------- */
.cog-error{
    text-align: center;
    margin: 10% 0;
}
.cog-error h4{
    font-size: 40px;
    margin: 20px 0;
    color: white;
}
.cog-error .btn-cog {
    color: #fff;
    background-color: #167dbe;
    border-color: #167dbe;
    font-weight: 500;
    padding: 5px 20px;
}
.cog-error p {
  font-size: 18px;
  color: white;
  margin-bottom: 0px;
}
.food-partner{
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 10000000;
}
.food-partner img {
  width: 56px;
  border-radius: 8px;
  border: 2px solid white;
}
.food-partner ul li {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;

  border-radius: 10px;
}
.navbar-brand {
  margin-left: 0.5rem;
}
.bredcrumb_section .sub_text{
  font-family: var(--font-playball) ;
  font-size: 50px;
  color: white;
}
.fixed-bottom-outer {
  position: fixed;
  bottom: 0;
  z-index: 199;
  width: 100%;
  background-image: url(../dosa_img/bg3.jpg);
  background-size: cover;
  background-position-y: center;
}
.fixed-bootom {
  justify-content: space-around;
  padding: 10px;
  background: linear-gradient(45deg, #dd3d55ba, #7d3180f0);
  /* position: fixed; */
  bottom: 0;
  z-index: 199;
  width: 100%;
  color: white;
}
.fixed-bootom li {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fixed-bootom li .icon-bx {
  margin-right: 15px;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-bootom li .info-content span {
  font-size: 18px;
  font-family: var(--font-bebas);
  letter-spacing: 0.5px;
  color: white;
}
.fixed-bootom li .info-content p{
  margin: 0;
  line-height: 18px;
  font-size: 14px;
  color: white;
}

.jumbotron {
  background: #6b7381;
  color: #bdc1c8;
  border-radius: 0;
  padding: 2rem;
}
.jumbotron h1 {
  color: #fff;
}
.switch > .row {
  padding-bottom: 2rem;
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid rgba(189, 193, 200, 0.5);
}

.switch h3 {
  font-weight: 400;
}
.switch h3 > small {
  font-weight: 200;
  font-size: 0.75em;
  color: #939aa5;
}
.switch h6 {
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 3.32px;
  text-transform: uppercase;
  color: #bdc1c8;
  margin: 0;
  line-height: 5rem;
}
/* .switch .btn-toggle {
  top: 50%;
  transform: translateY(-50%);
} */
.btn-toggle {
  margin: 0 4rem;
  padding: 0;
  position: relative;
  border: none;
  height: 1.5rem;
  width: 3rem;
  border-radius: 1.5rem;
  color: #6b7381;
  background: #4caf50;
}
.btn-toggle:focus,
.btn-toggle.focus,
.btn-toggle:focus.active,
.btn-toggle.focus.active {
  outline: none;
}
.btn-toggle:before,
.btn-toggle:after {
  line-height: 1.5rem;
  width: 4rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
.btn-toggle:before {
  content: 'Veg';
  left: -4rem;
}
.btn-toggle:after {
  content: 'Non-Veg';
  right: -4rem;
  opacity: 0.5;
}
.btn-toggle > .handle {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left 0.25s;
}
.btn-toggle.active {
  transition: background-color 0.25s;
}
.btn-toggle.active > .handle {
  left: 1.6875rem;
  transition: left 0.25s;
}
.btn-toggle.active:before {
  opacity: 0.5;
}
.btn-toggle.active:after {
  opacity: 1;
}
.btn-toggle.btn-sm:before,
.btn-toggle.btn-sm:after {
  line-height: -0.5rem;
  color: #fff;
  letter-spacing: 0.75px;
  left: 0.4125rem;
  width: 2.325rem;
}
.btn-toggle.btn-sm:before {
  text-align: right;
}
.btn-toggle.btn-sm:after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-sm.active:before {
  opacity: 0;
}
.btn-toggle.btn-sm.active:after {
  opacity: 1;
}
.btn-toggle.btn-xs:before,
.btn-toggle.btn-xs:after {
  display: none;
}
.btn-toggle:before {
  color: #4CAF50;
}
.btn-toggle:after {
  color: red;
}
.btn-toggle.active {
  background-color: #ff0000;
}
.btn-toggle.btn-lg {
  margin: 0 5rem;
  padding: 0;
  position: relative;
  border: none;
  height: 2.5rem;
  width: 5rem;
  border-radius: 2.5rem;
}
.btn-toggle.btn-lg:focus,
.btn-toggle.btn-lg.focus,
.btn-toggle.btn-lg:focus.active,
.btn-toggle.btn-lg.focus.active {
  outline: none;
}
.btn-toggle.btn-lg:before,
.btn-toggle.btn-lg:after {
  line-height: 2.5rem;
  width: 6rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
.btn-toggle.btn-lg:before {
  content: 'Veg';
  left: -5rem;
}
.btn-toggle.btn-lg:after {
  content: 'Non-veg';
  right: -6.5rem;
  opacity: 1;
}
.btn-toggle.btn-lg > .handle {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  background: #fff;
  transition: left 0.25s;
}
.btn-toggle.btn-lg.active {
  transition: background-color 0.25s;
}
.btn-toggle.btn-lg.active > .handle {
  left: 2.8125rem;
  transition: left 0.25s;
}
.btn-toggle.btn-lg.active:before {
  opacity: 1;
}
.btn-toggle.btn-lg.active:after {
  opacity: 1;
}
.btn-toggle.btn-lg.btn-sm:before,
.btn-toggle.btn-lg.btn-sm:after {
  line-height: 0.5rem;
  color: #fff;
  letter-spacing: 0.75px;
  left: 0.6875rem;
  width: 3.875rem;
}
.btn-toggle.btn-lg.btn-sm:before {
  text-align: right;
}
.btn-toggle.btn-lg.btn-sm:after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-lg.btn-sm.active:before {
  opacity: 0;
}
.btn-toggle.btn-lg.btn-sm.active:after {
  opacity: 1;
}
.btn-toggle.btn-lg.btn-xs:before,
.btn-toggle.btn-lg.btn-xs:after {
  display: none;
}
.btn-toggle.btn-sm {
  margin: 0 0.5rem;
  padding: 0;
  position: relative;
  border: none;
  height: 2rem;
  width: 6rem;
  border-radius: 1.5rem;
}
.btn-toggle.btn-sm:focus,
.btn-toggle.btn-sm.focus,
.btn-toggle.btn-sm:focus.active,
.btn-toggle.btn-sm.focus.active {
  outline: none;
}
.btn-toggle.btn-sm:before,
.btn-toggle.btn-sm:after {
  line-height: 1.5rem;
  width: 0.5rem;
  text-align: center;
  font-weight: 600;
  font-size: ;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
.btn-toggle.btn-sm:before {
  content: 'Veg';
  left: -0.5rem;
}
.btn-toggle.btn-sm:after {
  content: 'Non-Veg';
  right: -0.5rem;
  opacity: 0.5;
}
.btn-toggle.btn-sm > .handle {
  position: absolute;
  top: 0.2rem;
  left: 0.3rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1.125rem;
  background: #fff;
  transition: left 0.25s;
}
.btn-toggle.btn-sm.active {
  transition: background-color 0.25s;
}
.btn-toggle.btn-sm.active > .handle {
  left: 4.2rem;
  transition: left 0.25s;
}
.btn-toggle.btn-sm.active:before {
  opacity: 0.5;
}
.btn-toggle.btn-sm.active:after {
  opacity: 1;
}
.btn-toggle.btn-sm.btn-sm:before, .btn-toggle.btn-sm.btn-sm:after {
  line-height: 34px;
  color: #fff;
  letter-spacing: 0.75px;
  left: 6px;
  width: 4rem;
  font-size: 12px;
}
.btn-toggle.btn-sm.btn-sm:before {
  text-align: right;
}
.btn-toggle.btn-sm.btn-sm:after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-sm.btn-sm.active:before {
  opacity: 0;
}
.btn-toggle.btn-sm.btn-sm.active:after {
  opacity: 1;
}
.btn-toggle.btn-sm.btn-xs:before,
.btn-toggle.btn-sm.btn-xs:after {
  display: none;
}
.btn-toggle.btn-xs {
  margin: 0 0;
  padding: 0;
  position: relative;
  border: none;
  height: 1rem;
  width: 2rem;
  border-radius: 1rem;
}
.btn-toggle.btn-xs:focus,
.btn-toggle.btn-xs.focus,
.btn-toggle.btn-xs:focus.active,
.btn-toggle.btn-xs.focus.active {
  outline: none;
}
.btn-toggle.btn-xs:before,
.btn-toggle.btn-xs:after {
  line-height: 1rem;
  width: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: absolute;
  bottom: 0;
  transition: opacity 0.25s;
}
.btn-toggle.btn-xs:before {
  content: 'Veg';
  left: 0;
}
.btn-toggle.btn-xs:after {
  content: 'Non-Veg';
  right: 0;
  opacity: 0.5;
}
.btn-toggle.btn-xs > .handle {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  transition: left 0.25s;
}
.btn-toggle.btn-xs.active {
  transition: background-color 0.25s;
}
.btn-toggle.btn-xs.active > .handle {
  left: 1.125rem;
  transition: left 0.25s;
}
.btn-toggle.btn-xs.active:before {
  opacity: 0.5;
}
.btn-toggle.btn-xs.active:after {
  opacity: 1;
}
.btn-toggle.btn-xs.btn-sm:before,
.btn-toggle.btn-xs.btn-sm:after {
  line-height: -1rem;
  color: #fff;
  letter-spacing: 0.75px;
  left: 0.275rem;
  width: 1.55rem;
}
.btn-toggle.btn-xs.btn-sm:before {
  text-align: right;
}
.btn-toggle.btn-xs.btn-sm:after {
  text-align: left;
  opacity: 0;
}
.btn-toggle.btn-xs.btn-sm.active:before {
  opacity: 0;
}
.btn-toggle.btn-xs.btn-sm.active:after {
  opacity: 1;
}
.btn-toggle.btn-xs.btn-xs:before,
.btn-toggle.btn-xs.btn-xs:after {
  display: none;
}
.btn-toggle.btn-secondary {
  color: #6b7381;
  background: #bdc1c8;
}
.btn-toggle.btn-secondary:before,
.btn-toggle.btn-secondary:after {
  color: #6b7381;
}
.btn-toggle.btn-secondary.active {
  background-color: #ff8300;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #ffe05c;
  background-color: transparent;
  border-color: #ffe05c;
  border: 1px solid;
  font-size: 25px;
}
.nav-pills  {
  color: #ffe05c;
}
.nav-link {
  display: block;
  padding: .5rem 2rem;
  font-size: 18px;
}
.navbar .action_bar .bar i {
  color: white;
  font-size: 25px;
}
.btn-group-sm>.btn, .btn-sm {
  padding: .5rem .75rem;
  font-size: 1rem;
  border-radius: .2rem;
}
.cart_count {
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -11px;
  line-height: 20px;
  text-align: center;
  color: black;
}
:root {
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --dark-black: #323232;
    --primary-red: #c83f46;
    --text-grey: #9a9a9a;
    --black: #000000;
    --border-grey: #696969;
    --blog-bg: #222222;
    --img-border: 5px solid #696969;
    --font-bebas: 'Bebas Neue', sans-serif;
    --font-playball: 'Playball', cursive;
}

/* ------Media-Query-Start--------- */
@media screen and (max-width:1600px) {

    .navbar {
        padding: 0 30px;
    }

    .navbar-expand-lg .navbar-nav .nav-item {
        margin: 0 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 31px 0 25px 0;
        font-size: 18px;
    }

    .navbar .action_bar .btn_primary {
        padding: 14px 30px;
    }

    .navbar-expand-lg .navbar-nav .contact_number {
        padding-left: 20px;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li {
        margin: 5px 0;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
        font-size: 18px;
    }

    .youtube-video .modal-dialog {
        max-width: 1040px !important;
    }

    .dishList_block .dish_left {
        margin-left: -100px;
        text-align: left;
    }

    .dishList_block .dish_right {
        margin-right: -100px;
        text-align: right;
    }

    .blog_detail_section .blog_inner_pannel {
        margin-top: -230px;
    }

    .our_menu_section .right_side {
        scale: 0.8;
        right: -70px;
    }

    .popular_dish_section .side_shape .left_side {
        left: -225px;
        scale: 0.7;
        bottom: -20px;
        width: 600px;
    }

    .popular_dish_section .side_shape .right_side {
        right: -260px;
        scale: 0.9;
        width: 600px;
    }

    .testimonial_section .testimonial_wraper::after {
        bottom: -110px;
        right: 0;
    }

    .discount_section .dishMain:first-child:before {
        width: 80px;
        left: -50px;
    }

    .bredcrumb_section {
        margin-top: 80px;
    }
}

@media screen and (max-width: 1400px) {

    .banner_section .banner_images .img:nth-child(2) .radius_img {
        margin: 0 50px;
        width: 400px;
        height: 550px;
    }

    .banner_badge {
        right: 20px;
    }

    .banner_section .banner_images .img .side_shape {
        left: 20px;
    }

    .banner_section .banner_images .img:nth-child(1) {
        margin-top: -50px;
    }

    .banner_side_shape img {
        max-width: 80%;
    }

    .dishList_block .dish_left {
        margin-left: 0;
    }

    .dishList_block .dish_right {
        margin-right: 0;
    }

    .blog_detail_section .blog_info h1 {
        font-size: 40px;
    }

    .popular_dish_section h1 {
        font-size: 60px;
    }

    .banner_slider .slider_block .ban_text h1 {
        font-size: 60px;
    }

    .banner_slider .slider_block {
        height: 550px;
    }

    .popular_dish_section .side_shape {
        opacity: 0.4;
    }

    .popular_dish_section .dishList_slider::before {
        width: 70px;
        height: 70px;
        top: -20px;
        left: -50px;
    }
}

@media screen and (max-width:1200px) {

    .row_am {
        padding: 50px 0;
    }

    .section_title h2 {
        font-size: 40px;
    }

    /* navigation bar section */
    .navbar {
        padding: 0 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 25px 5px;
        font-size: 16px;
    }

    .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
        padding: 9px 30px;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
        right: 5px;
        top: 0;
    }

    .navbar .action_bar .btn_primary {
        padding: 12px 25px;
    }

    .contact_number {
        display: none;
    }

    .banner_section {
        padding-top: 130px;
    }

    .banner_section .banner_images {
        flex-wrap: wrap;
        align-items: center;
        margin-top: 50px;
    }

    .banner_section .banner_images .img:nth-child(2) {
        order: -1;
        width: 62%;
        margin-bottom: 50px;
    }

    .banner_section .banner_images .img:nth-child(1),
    .banner_section .banner_images .img:nth-child(3) {
        width: 42%;
    }

    .banner_section .banner_images .img .badge_shape {
        right: 20px;
    }

    .video_wraper::before {
        height: 60%;
    }

    .who_we_section .radius_img,
    .privet_event_section .privet_info .radius_img {
        height: 560px;
    }

    .who_we_section .who_We_text .chef_block {
        margin: 30px 0;
    }

    .who_we_section .who_We_text {
        padding-left: 10px;
    }

    .review_section .review_text {
        font-size: 150px;
    }

    .privet_event_section .privet_text img {
        margin: 30px 0 0 auto;
    }

    .privet_event_section .privet_text {
        padding-right: 50px;
    }

    .blog_post {
        max-width: 90%;
    }

    .youtube-video .modal-dialog {
        max-width: 940px !important;
    }

    .chef_section.row_am {
        padding-bottom: 150px;
    }

    .abt_banner,
    .offer_menu,
    .contact_us_section {
        padding-top: 130px;
    }

    .bredcrumb_section {
        padding: 100px 0;
        margin-top: 74px;
    }

    .resarvation_form .form_inner .contact_block h2 {
        font-size: 40px;
    }

    .resarvation_form .form_inner .contact_block .booking a {
        font-size: 20px;
    }

    .menuList_page .text_block span {
        font-size: 100px;
    }

    .menuList_page .text_block .mark_star {
        font-size: 75px;
    }

    .menuList_page .owl-stage-outer,
    .menuList_page .owl-stage {
        height: 95px;
    }

    .menulist_wraper ul li .mainCource .doted,
    .dishList_block .dish_list ul li .mainCource .doted {
        display: none;
    }

    .dishList_block .dish_list ul li .mainCource,
    .menulist_wraper ul li .mainCource {
        white-space: normal;
    }

    .dishList_block .dish_list ul li .mainCource .dishName h4,
    .dishList_block .dish_list ul li .mainCource .price {
        font-size: 20px;
        word-break: break-all;
    }

    .dishList_block .dish_list ul li .mainCource .dishName {
        align-items: flex-start;
    }

    .dishList_block .dish_list ul li .description {
        padding-right: 10px;
    }

    .dishList_block .dish_list ul li .mainCource .new {
        margin-top: 2px;
    }

    .blog_detail_section .blog_inner_pannel {
        margin-top: -120px;
    }

    .home_video_section .side_shape {
        opacity: 0.5;
    }

    .home_video_section .count_block li {
        padding: 0 50px;
    }

    .gallery_slider .item img {
        height: 285px;
    }

    .our_menu_section .dish_box .dish_info .dish_text h3 {
        font-size: 22px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .img {
        width: 340px;
        height: 230px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .text {
        width: calc(100% - 380px);
    }

    .testimonial_section .testimonial_wraper .testimonial_inner h2 {
        font-size: 26px;
    }

    .testimonial_section .testimonial_wraper::before {
        scale: 0.7;
    }

    .our_team_section .owl-nav .owl-next {
        right: -40px;
    }

    .our_team_section .owl-nav .owl-prev {
        left: -40px;
    }

    .our_menu_section .right_side {
        scale: 0.5;
        right: -100px;
    }

    .our_team_section .team_card .img {
        height: 300px;
    }

    .blog_card_section .blog_card h3 {
        font-size: 22px;
    }

}

@media screen and (max-width:992px) {
    .description .btn_primary {
        padding: 6px 10px;
        font-size: 16px;
    }
    .menulist_wraper ul li .mainCource .dishName{
        max-width: 100%;
    }
    .menulist_wraper ul li .mainCource .price{
        padding-left: 0;
    }
    .menulist_wraper ul li .content{
        width: 100%;
    }
    .menulist_wraper ul li .img img {
        width: 140px;
        height: 114px;
        object-fit: cover;
    }
    .menulist_wraper ul li .img  {
        width: auto;
        height: auto;
    }
    .menulist_wraper ul li .description, .dishList_block .dish_list ul li .description{
        text-align: left;
    }
    
    .menulist_wraper ul li .mainCource {
        display: block;
        justify-content: space-between;
        /* width: 100%; */
        text-align: left;
    }
    .btn_primary {
        padding: 12px 15px;
        font-size: 18px;
    }

    /* --- Navbar Css Start --- */
    .navbar {
        padding: 15px 40px;
    }

    body.modal-open .navbar {
        width: 100%;
    }

    header .container-fluid {
        max-width: 100%;
        padding: 0;
    }

    header .navbar-collapse {
        width: 100%;
        top: 100%;
        position: absolute;
        left: 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 8px 10px;
        font-size: 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link:hover:hover {
        color: var(--primary-red);
    }

    .navbar-brand img {
        width: 80px;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown:hover>a,
    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover,
    .navbar-expand-lg .navbar-nav .has_dropdown:hover>.drp_btn {
        color: var(--primary-red);
    }

    .navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
        color: var(--text-white);
    }

    .navbar-expand-lg .navbar-nav li .btn_primary {
        margin: 15px 0 0 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-item {
        margin: 0;
    }

    /* navigation section */
    .navbar-toggler-icon {
        display: flex;
        align-items: center;
        color: var(--bg-white);
        justify-content: flex-end;
    }

    /* navigation section */
    .navbar-expand-lg .navbar-nav {
        align-items: flex-start;
        height: 100vh;
        overflow-y: auto;
    }

    .navbar-toggler {
        padding-right: 20px;
        line-height: 1.7;
    }

    .navbar-expand-lg .navbar-nav {
        padding: 20px 15px 150px 15px;
        background-image: url(../images/dark_bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        border-radius: 0;
    }

    .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
        margin: 15px 0 0 10px;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        box-shadow: none;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown:hover {
        box-shadow: none;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
        position: absolute;
        right: 0;
        padding: 0 10px;
        cursor: pointer;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
        position: relative;
        opacity: 1;
        pointer-events: all;
        top: auto;
        background-color: transparent;
        width: 100%;
        border-radius: 0;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin-left: 20px;
        display: none;
        box-shadow: none;
        margin-top: 0;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
        padding: 0;
        margin-top: 0;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
        padding: 5px 10px;
        display: block;
        padding-left: 0;
        line-height: 1.5;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu::before,
    .navbar-expand-lg .navbar-nav .nav-item .nav-link:not(.contact_number .nav-link):before {
        display: none;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
        margin-top: 0;
    }

    .navbar .action_bar .bar {
        display: block;
    }

    .navbar .action_bar {
        display: block;
        margin-right: 20px;
    }

    .banner_section h1 {
        font-size: 40px;
    }

    .banner_section .banner_images .img:nth-child(2) {
        width: auto;
    }

    .banner_side_shape img {
        max-width: 60%;
    }

    .menu_listing .menu_name h3 {
        font-size: 60px;
    }

    .menu_listing .hover_state .menu_img img {
        width: 250px;
        height: 120px;
    }

    .menu_listing .menu_name {
        width: 175px;
    }

    .menu_listing .list_running {
        width: calc(100% - 275px);
    }

    .menu_listing .direction_pointer {
        width: 100px;
    }

    .who_we_section .radius_img {
        height: 650px;
        border-radius: 500px 500px 0 0;
    }

    .who_we_section .who_We_text .chef_block {
        margin: 30px 0;
    }

    .who_we_section .who_We_text .action_block {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .who_we_section .who_We_text {
        padding: 0;
    }

    .review_section.row_am {
        padding-bottom: 50px;
    }

    .review_section .review_text {
        font-size: 100px;
    }

    .privet_event_section .privet_text {
        padding-right: 0;
    }

    .privet_event_section .privet_text img {
        width: 100%;
    }

    .privet_event_section .privet_info .radius_img {
        height: 420px;
    }

    .blog_post {
        max-width: 100%;
    }

    .blog_post .img img {
        height: 275px;
    }

    footer .direction_block p {
        font-size: 30px;
    }

    footer .offer_block h2 {
        font-size: 40px;
    }

    .abt_banner .section_title {
        padding: 0 15px;
    }

    .abt_banner .abt_img {
        gap: 15px;
    }


    .abt_banner .abt_img .img:first-child,
    .abt_banner .abt_img .img:last-child {
        display: none;
    }

    .abt_banner .abt_img .img:nth-child(2) img {
        border-left: none;
        border-radius: 0 10px 10px 0;
    }

    .abt_banner .abt_img .img:nth-child(4) img {
        border-right: none;
        border-radius: 10px 0 0 10px;
    }

    .chef_section .abt_chef {
        padding: 0;
    }

    .chef_section .side_shape {
        opacity: 0.5;
    }

    .video_section .chef_img {
        right: 18%;
    }

    .video_section .chef_img img {
        width: 200px;
        height: 260px;
    }

    .our_journey .joueney_box {
        padding-right: 0;
    }

    .coustomer_review_section .review_box {
        padding: 15px;
    }

    .menulist_wraper .menulist.left_side .menulist_box {
        padding-right: 40px;
    }

    .menulist_wraper .menulist.right_side .menulist_box {
        padding-left: 40px;
    }

    .menulist_wraper ul li .mainCource .dishName h4 {
        font-size: 20px;
    }

    .menulist_wraper ul li .description p {
        font-size: 14px;
    }

    .menulist_wraper .menusub_text {
        font-size: 28px;
    }

    .resarvation_form .form_inner {
        padding: 30px;
    }

    .resarvation_form .form_inner .contact_block h2 {
        font-size: 30px;
    }

    .reservationpage_1_bg .side_shape {
        opacity: 0.3;
    }

    .dishList_block .dish_list {
        margin-top: 30px;
    }

    .resarvation_form .form_inner .contact_block {
        padding: 20px;
        width: 35%;
    }

    .resarvation_form .form_inner .formBlock p {
        font-size: 14px;
    }

    .contact_us_section .contact_box {
        padding-left: 0;
    }

    .gallery_section .img img {
        height: 200px;
    }

    /* Blog List Section */
    .blog_list_section {
        margin-bottom: 30px;
    }

    .blog_detail_section .blog_inner_pannel {
        margin-top: -100px;
        padding: 30px;
    }

    .blog_detail_section .blog_info h1 {
        font-size: 30px;
    }

    .blog_detail_section .blog_inner_pannel .info h2 {
        font-size: 20px;
    }

    .blog_detail_section .blog_inner_pannel .info ul li p {
        font-size: 16px;
    }

    .blog_detail_section .blog_inner_pannel .main_img iframe {
        height: 380px;
    }

    .comment_section ul li .comment {
        width: calc(100% - 280px);
        margin-left: 20px;
    }

    .blog_detail_section .blog_inner_pannel .quote_block {
        padding: 55px 30px 35px 30px;
    }

    .popular_dish_section .sub_text {
         font-size: 30px;
    }

    .popular_dish_section h1 {
        font-size: 40px;
    }

    .banner_slider .slider_block {
        height: 450px;
    }

    .banner_slider .slider_block .ban_text h1 {
        font-size: 40px;
        padding-top: 12px;
    }

    .banner_slider .slider_block .ban_text .sub_text {
        font-size: 30px;
        line-height: .5;
        margin-bottom: 20px;
    }

    .second_banner .side_fixer {
        top: 60%;
    }

    .home_video_section .video_wraper .bottom_text {
        flex-wrap: wrap;
        gap: 20px;
    }

    .home_video_section .count_block li {
        padding: 0 40px;
    }

    .home_video_section .count_block li p span {
        font-size: 36px;
    }

    .home_video_section .count_block li p {
        font-size: 16px;
    }

    .discount_section .dish_block .dish_text {
        padding: 20px;
    }

    .popular_dish_section .side_shape,
    .our_team_section .side_shape img {
        opacity: 0.2;
    }

    .testimonial_section .testimonial_wraper {
        padding: 40px 80px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner {
        flex-direction: column;
        align-items: center;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .img {
        width: 400px;
        margin: 0 0 0 40px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .text {
        width: 100%;
        margin-top: -30px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .star {
        margin: 5px 0;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .quote {
        font-size: 80px;
        height: 30px;
    }

    .our_team_section .owl-nav .owl-next {
        right: -15px;
    }

    .our_team_section .owl-nav .owl-prev {
        left: -15px;
    }

    .blog_card_section .blog_card .img {
        height: 240px;
    }

    .blog_card_section .blog_card .info {
        padding: 0 15px 10px 15px;
    }
}

@media screen and (max-width:767px) {
    .hide-mobile{
        display: none !important;
    }
    .bredcrumb_section .sub_text {
        font-size: 40px;
    }
    .our_menu_section .dish_box .dish_info .dish_img {
        height: 240px;
    }
    .menu_list_section {
        padding: 14px 0;
    }
    .popular_dish_section .dishList_slider {
        width: calc(100% - 20px);
    }
    .popular_dish_section .dish_card .img {
        width: 100%;
        height: 120px;
    }
    .banner_section .banner_inner {
        padding-bottom: 80px;
        padding-top: 150px;
    }
    .section_title img{
        width: 200px;
    }
    .food-partner {
        position: fixed;
        right: 0;
        top: auto;
        z-index: 10000000;
        bottom: 0;
    }
    :root {
        --img-border: 3px solid #696969;
    }


    /* Slider Hero */

    .banner_slider .slider_block .ban_text .sub_text {
        font-size: 20px;
        line-height: .5;
    }

    .banner_slider .slider_block .ban_text h1 {
        font-size: 30px;
        padding-top: 10px;
    }

    /* This Only Apply on Index-v2 Or Home Page */
    .index_wraper {
        width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
        text-align: center;
    }

    .row_am {
        padding: 30px 0;
    }

    .section_title h2 {
        font-size: 30px;
    }

    .section_title h2 br {
        display: none;
    }

    .py_50 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* navbar section */
    .navbar {
        padding: 0px;
    }

    .navbar-toggler-icon {
        margin-right: -15px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 5px 10px;
    }

    .navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
        text-align: left;
        line-height: 1.5;
        font-size: 15px;
    }

    .side_fixer {
        display: none;
    }

    .banner_section h1 {
        font-size: 32px;
    }

    p.lead {
        font-size: 16px;
    }

    .banner_section .banner_images {
        justify-content: space-between;
    }

    .banner_section .banner_images .img .radius_img {
        width: 225px;
    }

    .banner_section .banner_images .img .badge_shape {
        right: -40px;
    }

    .menu_listing .diplay_state {
        display: none;
    }

    .menu_listing .hover_state {
        opacity: 1;
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: none;
    }

    .menu_listing .hover_state .menu_img,
    .menu_listing .hover_state .btn {
        margin: 0;
    }

    .menu_listing .hover_state .menu_name {
        margin: 30px 0 10px 0;
    }

    .menu_listing .menuMobileLIst {
        margin-bottom: 30px;
        display: block;
    }

    .video_wraper {
        height: auto;
        padding-bottom: 0;
        margin-top: 30px;
    }

    .video_wraper .action_box {
        clip-path: inset(0 0) !important;
    }

    .who_we_section.row_am {
        margin-top: 0;
    }

    .who_we_section .radius_img {
        height: auto;
        margin-bottom: 30px;
    }

    .who_we_section .section_title {
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }

    .who_we_section .section_title .icon {
        margin: 0 auto;
    }

    .who_we_section .who_We_text .chef_block {
        margin: 30px auto;
    }

    .who_we_section .who_We_text .action_block {
        align-items: center;
    }

    .gallery_slider .item img {
        height: 250px;
    }

    .review_section.row_am {
        padding: 40px 0;
    }

    .review_section .review_list .review_box {
        margin: 20px 0;
    }

    .review_section .review_text {
        font-size: 70px;
    }

    .review_section .review_list .with_text,
    .review_section .review_list .with_video {
        width: 100%;
    }

    .review_section .review_list .with_text {
        flex-direction: column;
        padding: 20px;
    }

    .review_section .review_list .review_box .review {
        width: 100%;
        margin-top: 20px;
    }

    .review_section .review_list .review_box .review .name {
        margin: 0;
    }

    .privet_event_section.row_am,
    .blog_section.row_am {
        padding: 10px 0;
    }

    .privet_event_section .privet_text img {
        margin: 30px 0;
    }

    .privet_event_section .sider_shape img {
        opacity: 0.5;
    }

    .privet_event_section .privet_info .radius_img,
    .privet_event_section .privet_text img {
        height: auto;
    }

    .privet_event_section .privet_info .side_icon {
        left: 0;
        top: 0;
    }

    .blog_post {
        width: 300px;
        margin: 15px auto;
    }

    .blog_post .img img {
        height: 350px;
    }

    .blog_post .info .btn {
        opacity: 1;
        transform: translateY(0);
    }

    footer {
        padding-top: 10px;
        padding-bottom: 0px;
    }

    footer .direction_block p {
        font-size: 20px;
    }

    footer .direction_block {
        margin-bottom: 20px;
    }

    footer .offer_block .form-group {
        max-width: 100%;
    }

    footer .social_media {
        display: flex;
        justify-content: space-between;
    }

    footer .social_media li {
        text-align: center;
    }

    footer .offer_block h2 {
        font-size: 30px;
    }

    footer .links {
        flex-wrap: wrap;
    }

    footer .offer_block .form-group .btn {
        font-size: 18px;
        width: 130px;
    }

    footer .offer_block .form-group .form-control {
        padding-right: 125px;
    }

    footer .offer_block .form-group .icon {
        top: 50%;
    }

    footer .copy_right p {
        padding: 30px 0 40px 0;
    }

    /* Booking Model Css Start */

    .booking_model .modal-header h2 {
        font-size: 30px;
    }

    .booking_model .modal-dialog .modal-content {
        padding: 30px 20px;
    }

    .booking_model .modal-header .close {
        top: 5px;
        right: 5px;
        font-size: 30px;
    }

    .booking_model .booking_form form .form-control {
        height: 45px;
        font-size: 14px;
    }


    .reservationpage_bg .booking_model .modal-header h2 {
        font-size: 25px;
    }

    .resarvation_form.reservationpage_1_bg .form_inner .formBlock h2 {
        font-size: 25px;
    }

    .resarvation_form.reservationpage_1_bg .form_inner .contact_block h2 {
        font-size: 25px;
    }

    .abt_banner .right_shape {
        opacity: 0.5;
    }

    .abt_banner .abt_img {
        flex-direction: column;
        padding: 0 15px;
    }

    .abt_banner .abt_img .img,
    .abt_banner .abt_img .img img {
        width: 100%;
    }

    .abt_banner .abt_img .img:nth-child(2) img {
        border-left: var(--img-border);
        border-radius: 10px;
    }

    .abt_banner .abt_img .img:nth-child(4) img {
        border-right: var(--img-border);
        border-radius: 10px;
    }

    .text_block span {
        font-size: 26px;
    }

    .textFlow_list .owl-stage-outer,
    .menu_list_section .owl-stage,
    .menu_list_section .owl-stage-outer {
        height: 30px;
    }

    .chef_section .row {
        flex-direction: column-reverse;
    }

    .chef_section .abt_chef .banner_badge {
        margin: 20px auto;
    }

    .chef_section .chef_name {
        margin-bottom: 40px;
    }

    .chef_section.row_am {
        padding-bottom: 100px;
    }

    .video_section .chef_img {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        top: -100px;
    }

    .video_section .chef_img img {
        width: 125px;
        height: 175px;
    }

    .our_journey.row_am {
        padding: 10px 0;
    }

    .our_journey .row {
        width: 100%;
        margin: 0 auto;
    }

    .our_journey .joueney_box h3 {
        margin: 25px 0 10px 0;
    }

    .our_journey .side_shape {
        top: -75px;
        text-align: right;
    }

    .our_journey .side_shape img {
        display: none;
    }

    .coustomer_review_section .coustomer_inner {
        flex-direction: column;
        margin-top: 25px;
    }

    .coustomer_review_section .review_box {
        margin: 20px 0;
    }

    .coustomer_review_section .review_text {
        font-size: 70px;
    }

    .coustomer_review_section .with_text,
    .coustomer_review_section .with_video {
        width: 100%;
    }

    .coustomer_review_section .with_text {
        flex-direction: column;
        padding: 20px;
        width: 100%;
    }

    .coustomer_review_section .review_box .review {
        width: 100%;
    }

    .menulist_wraper {
        flex-direction: column;
    }

    .menulist_wraper .menulist {
        width: 100%;
        text-align: left;
    }

    .menulist_wraper .menulist.left_side .menulist_box,
    .menulist_wraper .menulist.right_side .menulist_box {
        padding: 0;
    }

    .offer_menu_section .section_title {
        margin-top: 10px;
    }

    .offer_menu_section .nav-tabs .nav-item {
        margin: 0 8px;
    }

    .menulist_wraper .menulist.right_side {
        border: none;
        padding-top: 30px;
    }

    .menulist_wraper ul li {
        margin-bottom: 30px;
    }

    .menu_listing .hover_state .menu_name h3,
    .menu_listing .hover_state .menu_name h3 a {
        color: var(--text-white);
    }

    .bredcrumb_section {
        padding: 100px 0 70px 0!important;
    }
    .menuList_page .text_block span {
        font-size: 40px;
    }

    .menuList_page .text_block .mark_star {
        font-size: 35px;
    }

    .text_block .mark_star {
        margin: 0 25px;
    }

    .dishList_block .dish_list ul li .img {
        width: 75px;
    }

    .dishList_block .dish_list {
        text-align: left;
        padding-left: 0;
    }

    .dishList_block .dish_list .btn {
        margin-top: 0;
    }

    .dishList_block .dish_list ul li .info {
        width: calc(100% - 80px);
        padding-left: 10px;
        text-align: left;
    }

    .dishList_block .dish_list ul li .mainCource .dishName {
        width: calc(100% - 60px);
        flex-direction: column;
        margin-bottom: 5px;
    }

    .dishList_block .dish_list ul li .mainCource .dishName h4 {
        font-size: 20px;
    }

    .dishList_block .dish_list ul li .mainCource .new {
        font-size: 10px;
        margin-left: 0;
        padding: 0 4px 1px 4px;
    }

    .dishList_block .dish_list ul li .mainCource .price {
        font-size: 20px;
        width: 60px;
    }

    .dishList_block .dish_list ul li .description p {
        font-size: 12px;
    }

    .dishList_block .dish_list ul li .mainCource .dishName h4,
    .dishList_block .dish_list ul li .mainCource .price {
        word-break: keep-all;
    }

    .resarvation_form .form_inner .formBlock h2 {
        font-size: 24px;
    }

    .resarvation_form .form_inner form {
        margin-top: 20px;
    }

    .resarvation_form .form_inner {
        flex-direction: column;
        padding: 40px;
    }

    .resarvation_form .form_inner .formBlock {
        width: 100%;
    }

    .resarvation_form .form_inner .contact_block {
        width: 100%;
        margin-top: 30px;
    }

    .contact_us_section .section_title {
        margin-bottom: 50px;
    }

    .contact_us_section .img .radius_img {
        height: auto;
    }

    .contact_us_section .contact_box {
        margin-top: 30px;
    }

    .contact_us_section .map {
        margin: 50px 0;
    }

    .contact_us_section .right_shape,
    .contact_us_section .left_shape {
        opacity: 0.5;
    }

    .gallery_section .img img {
        height: auto;
    }

    .gallery_section {
        margin-bottom: 10px;
    }

    .chef_section .abt_chef {
        padding-bottom: 20px;
    }

    .menulist_wraper ul li .description,
    .dishList_block .dish_list ul li .description {
        padding-right: 30px;
    }

    .pdf_btn {
        margin: 40px 0 10px 0 !important;
    }

    .menulist_wraper ul li .mainCource .dishName {
        align-items: flex-start;
    }

    .menulist_wraper ul li .mainCource {
        margin-bottom: 10px;
    }

    .menulist_wraper ul li .mainCource .new {
        margin: 2px 0 0 10px;
    }

    .menulist_wraper ul li .mainCource .price {
        line-height: 1;
    }

    .booking_model .booking_form form input[type="date"],
    .resarvation_form .form_inner form input[type="date"] {
        text-transform: uppercase;
        padding-left: 30px;
        padding-top: 10px;
    }

    .booking_model .booking_form form input[type="time"],
    .resarvation_form .form_inner form input[type="time"] {
        padding-left: 30px !important;
        padding-top: 10px;
    }

    /* Blog List Section */
    .blog_list_section {
        margin: 30px 0;
        text-align: left;
    }

    .blog_list_section .blog_left_side .blog_panel {
        margin-bottom: 30px;
    }

    .blog_list_section .blog_left_side .blog_panel .blog_info h2 a {
        font-size: 22px;
        line-height: 1.3;
    }

    .blog_list_section .blog_left_side .blog_panel .blog_info {
        padding: 20px;
    }

    .blog_list_section .blog_left_side .blog_panel .blog_info span {
        font-size: 13px;
    }

    .blog_list_section .blog_info .authore_block .text h4,
    .blog_list_section .blog_info .authore_block .text span {
        font-size: 15px;
        line-height: 1;
    }

    .blog_list_section .blog_info .authore_block .authore .img {
        margin-right: 10px;
    }

    .blog_list_section .blog_info .authore_block .blog_tag span {
        font-size: 12px;
    }

    .bg_box {
        margin-bottom: 20px;
        padding: 20px;
    }

    .blog_list_section .blog_right_side .blog_search_block form .form-group {
        margin-bottom: 0;
    }

    .blog_list_section .blog_right_side .blog_search_block form .form_inner {
        height: 50px;
    }


    .blog_list_main .blog_text .section_title,
    .blog_list_story .story_box {
        text-align: center;
    }

    .pagination_block ul li a {
        width: 24px;
        height: 24px;
        line-height: 24px;
        margin: 0 3px;
        font-size: 12px;
    }

    .blog_detail_bredcrumb.bread_crumb .bred_text {
        margin-top: -50px;
    }

    .blog_detail_section {
        text-align: left;
    }

    .blog_detail_section .blog_inner_pannel {
        margin-top: -50px;
        padding: 25px 20px;
    }

    .blog_detail_section .blog_info,
    .blog_detail_section .blog_inner_pannel .info {
        padding: 0;
    }

    .blog_detail_section .blog_inner_pannel .quote_block {
        margin: 30px 0;
    }

    .blog_detail_section .blog_info h1 {
        font-size: 35px;
    }

    .blog_detail_section .blog_inner_pannel .info h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .blog_detail_section .blog_inner_pannel .section_title {
        margin-bottom: 20px;
    }

    .blog_detail_section .blog_inner_pannel .section_title h2 {
        font-size: 22px;
    }

    .blog_detail_section .blog_inner_pannel .info h3 {
        font-size: 25px;
    }

    .blog_detail_section .blog_inner_pannel .info ul {
        text-align: left;
        padding-left: 0;
    }

    .blog_detail_section .blog_inner_pannel .quote_block {
        padding: 45px 30px 10px 30px;
    }

    .blog_detail_section .blog_inner_pannel .quote_block .q_icon {
        text-align: left;
    }

    .blog_detail_section .blog_inner_pannel .main_img iframe {
        height: 320px;
    }

    .comment_section .blog_cooment_block .posted_cooment {
        margin-bottom: 30px;
    }

    .comment_section .blog_cooment_block {
        padding: 20px;
    }

    .comment_section ul {
        margin-top: 20px;
    }

    .comment_section ul li:last-child {
        padding-bottom: 40px;
    }

    .blog_detail_section .blog_inner_pannel .blog_authore {
        padding: 0;
    }

    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info {
        margin-bottom: 30px;
    }

    .blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 {
        font-size: 18px;
    }

    .comment_section ul li .authore_info .text h4 {
        font-size: 18px;
    }

    .comment_section ul li {
        flex-direction: column;
        padding: 20px 0;
        text-align: left;
    }

    .comment_section ul li .comment {
        width: 100%;
        margin-left: 0;
    }

    .comment_section ul li .authore_info {
        width: 100%;
        margin-bottom: 15px;
    }

    .comment_section ul li.replay_comment {
        margin-left: 30px;
    }

    .comment_section ul li .authore_info .text {
        width: auto;
    }

    .comment_form_section form .form-group .form-control {
        height: 45px;
        font-size: 15px;
        margin-bottom: 15px;
    }


    .banner_slider {
        width: calc(100% - 40px);
    }

    .banner_slider .owl-nav .owl-prev {
        left: -15px;
    }

    .banner_slider .owl-nav .owl-next {
        right: -15px;
    }

    .banner_section {
        padding-top: 110px;
        margin-bottom: 0px;
    }

    .home_video_section .video_wraper {
        height: 400px;
    }

    .home_video_section .video_wraper::before {
        opacity: 0.2;
    }

    .home_video_section .video_wraper .bottom_text {
        display: none;
    }

    .home_video_section .count_block {
        flex-wrap: wrap;
        justify-content: space-between;
        padding-top: 40px;
    }

    .home_video_section .count_block li {
        padding: 15px 0;
        width: 48%;
    }

    .home_video_section .count_block li:nth-child(2n + 2)::before {
        display: none;
    }

    .home_video_section .count_block li:not(:last-child)::before {
        right: -12px;
    }

    .our_menu_section .nav-tabs .nav-link {
        font-size: 22px;
    }

    .our_menu_section .nav-tabs .nav-item {
        margin: 0 10px;
    }

    .our_menu_section .dish_box {
        padding: 20px 15px;
    }

    .our_menu_section .dish_box .dish_info {
        flex-direction: column;
    }

    .our_menu_section .dish_box .dish_info .dish_text {
        width: 100%;
    }

    .our_menu_section .dish_box .dish_info .dish_img {
        width: 100%;
        margin-bottom: 15px;
    }

    .discount_section .section_title {
        top: auto;
    }

    .discount_section .dish_block {
        height: auto;
        flex-direction: column-reverse;
    }

    .discount_section .dish_block .dish_text,
    .discount_section .dish_block .dish_img {
        width: 100%;
    }

    .discount_section .dish_block .dish_img img {
        border-radius: 20px 20px 0 0;
    }

    .discount_section .dish_block .dish_text {
        border-radius: 0 0 20px 20px;
    }

    .discount_section .dishMain:first-child:before {
        width: 60px;
        left: -10px;
    }

    .popular_dish_section .owl-nav .owl-next {
        right: -30px;
    }

    .popular_dish_section .owl-nav .owl-prev {
        left: -30px;
    }

    .popular_dish_section .dishList_slider::after {
        width: 40px;
        height: 40px;
        right: -40px;
    }

    .popular_dish_section .owl-nav button span {
        line-height: 1;
    }

    .section_title h2 .heading_img img {
        height: 22px;
    }

    .who_version_two .section_title h2 {
        line-height: 1.1;
    }

    .testimonial_section .testimonial_wraper::before {
        width: 100px;
        top: -60px;
        left: -15px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .img {
        width: 100%;
        margin: 0;
        height: 250px;
    }

    .testimonial_section .testimonial_wraper {
        padding: 40px 50px;
        margin: 30px 0;
    }

    .testimonial_section .testimonial_wraper::after {
        width: 70px;
    }

    .testimonial_wraper .owl-nav .owl-next {
        right: -40px;
    }

    .testimonial_wraper .owl-nav .owl-prev {
        left: -40px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .text {
        margin-top: 20px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .star {
        justify-content: center;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner h2 {
        font-size: 18px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner h3 {
        font-size: 16px;
    }

    .testimonial_section .testimonial_wraper .testimonial_inner .quote.text-right {
        text-align: center !important;
    }

    .team_slider_wraper {
        padding: 0 15px;
    }

    .blog_card_section .blog_card h3 {
        margin-bottom: 10px;
    }

    .our_menu_section .right_side {
        scale: 0.3;
        right: -120px;
        top: -160px;
    }

    .our_menu_section .dish_box .dish_info .dish_text p {
        margin-bottom: 0;
    }

    .our_menu_section .dish_box .dish_info .dish_text {
        margin-top: 20px;
    }

    .popular_dish_section .dishList_slider::before {
        left: -40px;
    }

    #popular_dish .owl-stage .owl-item .item {
        rotate: 0deg !important;
    }

    #popular_dish .owl-stage .owl-item:nth-child(4n + 2) .item {
        transform: none;
    }

    .who_version_two .gallery_slider {
        margin: 20px 0;
    }

    .row_inner_am {
        padding: 40px 0 50px 0;
    }

    .resarvation_form {
        padding: 0 0 60px 0;
    }

    /* Dish list HERO */

    .popular_dish_section {
        padding: 50px 0;
        overflow: hidden;
    }


    /* our Chef Page */

    .abt_banner .right_shape.chef_shape {
        display: none;
    }
}

@media screen and (max-width:576px) {
    .food-partner ul {
        display: flex;
        justify-content: space-around;
    }
    .food-partner ul li{
        /* width: calc(100%/4); */
        margin-top: 10px;
    }
    .food-partner {
        position: fixed;
        right: 0;
        top: auto;
        z-index: 10000000;
        bottom: 0;
        width: 100%;
  background: #ffffff9e;


    }
    .banner_section .banner_images {
        justify-content: center;
    }

    .banner_section .banner_images .img .radius_img {
        width: 255px;
    }

    .banner_section .banner_images .img:nth-child(2) {
        order: initial;
        margin: 50px 0;
    }

    .banner_section .banner_images .img:nth-child(2) .radius_img {
        width: 85%;
        height: 350px;
        margin: 0;
    }

    .banner_section .banner_images .img:nth-child(1),
    .banner_section .banner_images .img:nth-child(3) {
        width: 85%;
    }

    .banner_section .banner_images .img .side_shape {
        width: 70px;
        left: 0;
    }

    .banner_badge {
        right: -5px;
    }

    .banner_section .banner_images .img:nth-child(1) {
        margin-top: 0;
    }

    .banner_section .banner_images .img .badge_shape {
        right: -5px;
        bottom: 0;
    }

    .banner_side_shape img {
        max-width: 40%;
    }

}


@media screen and (max-width:479px) {

    .blog_detail_section .blog_inner_pannel .main_img iframe {
        height: 180px;
    }

    .blog_detail_section .blog_info h1 {
        font-size: 25px;
    }

    .blog_detail_section .blog_inner_pannel .info h2 {
        font-size: 20px;
    }

    .blog_detail_section .blog_inner_pannel .info h3 {
        font-size: 20px;
    }

}
@media screen and (min-width:768px) {
    .hide-desktop{
    display: none !important ;
}
}
.cog-checkout-step .arrows {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
    justify-content: center;
    background: #bce5ff;
}

.cog-checkout-step .arrow {
    width: 33%;
    padding: 23px 10px;
    text-align: center;
    position: relative;
    margin: 5px 0;
}

.cog-checkout-step .arrow:after {
    border-top: 34px solid transparent;
    border-bottom: 34px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: -17px;
    top: 0;
    width: 0;
    z-index: 2;
}

.cog-checkout-step .arrow:last-child:after {
    border: none;
    right: 0;
}

.cog-checkout-step .step1 {
    background-color: transparent;
}

.cog-checkout-step .step2 {
    background-color: transparent;
}

.cog-checkout-step .step3 {
    background-color: transparent;
}

.cog-checkout-step .arrow.step1:after {
    border-left: 17px solid #f3fbff;
}

.cog-checkout-step .arrow.step2:after {
    border-left: 17px solid #bce5ff;
}

.cog-checkout-step .arrow span {
    color: #414141;
    position: relative;
    font-weight: 600;
    font-size: 16px;
}

.cog-checkout {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
}

.cog-checkout .login {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    background: #e3f8fa;
    padding: 15px;
    border-radius: 2px;
    align-items: center;
}

.cog-checkout .login h4 {
    margin: 0;
    font-size: 20px;
    color: #000000;
    text-transform: none;
    font-weight: 600;
}

.cog-checkout .btn-cog {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    font-weight: 500;
    padding: 7px 20px;
    font-size: 1rem;
}

.cog-checkout .cart {
    background: transparent;
    border-radius: 0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.cog-checkout h4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
    padding: 15px;
}

.cog-checkout .cart span {
    font-size: 20px;
}

.cog-checkout .cart a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
}

.cog-checkout .cart ul li .product .image {
    width: 70px;
}

.cog-checkout .cart ul li .product .image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cog-checkout .cart ul li {
    background-color: white;
    margin: 5px 10px;
}

.cog-checkout ul li .product {
    display: flex;
    padding: 10px;
}

.cog-checkout .cart ul li .subtotal {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    border-top: 1px solid #dee2e6;
}

.cog-checkout .cart ul {
    background: transparent;
    list-style: none;
    padding-bottom: 10px;
    /* overflow-y: scroll; */
    /* height: 300px; */
}

.cog-checkout .cart ul li .subtotal span {
    font-size: 14px;
    color: #6c757d;
}

.cog-checkout .cart ul li .subtotal .price {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.cog-checkout ul::-webkit-scrollbar {
    width: 4px;
}

.cog-checkout ul::-webkit-scrollbar-thumb {
    background-color: #73dadf;
}

.cog-checkout .order-summary {
    background: transparent;
    padding: 15px;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.cog-checkout .order-summary h5 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cog-checkout .order-summary ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.cog-checkout .order-summary ul li .subtotal span {
    font-size: 14px;
    color: #6c757d;
}

.cog-checkout .order-summary ul li .subtotal .price {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.cog-checkout .order-summary ul li.total {
    border-top: 1px solid #dee2e6;
    padding: 10px 0;
    margin-top: 10px;
}

.cog-checkout .order-summary ul li.total span {
    font-weight: 500;
    font-size: 15px;
}

.cog-checkout .order-summary ul li.total .price {
    font-weight: 600;
    font-size: 18px;
    color: #212529;
}

.cog-checkout .info-box {
    border: 1px solid #dee2e6 !important;
    padding: 15px;
}

.cog-checkout .info-box img {
    height: 22px;
    object-fit: contain;
}

.cog-checkout .info-box a {
    color: #8c8c8c;
    font-size: 12px;
    font-weight: 500;
}

.cog-checkout .info-box p {
    margin: 0;
}

.cog-checkout h5 {
    font-size: 20px;
    margin-bottom: 30px;
}

.form-label {
    margin-bottom: .3rem;
    font-size: 14px;
}

.form-check label {
    font-size: 15px;
}

.hide {
    display: none;
}

.pointer {
    cursor: pointer;
}

.cog-checkout-login-modal button {
    border-radius: 30px;
    border: 1px solid #000000;
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    width: 100%;
    margin-top: 15px;
}

.cog-checkout-login-modal button:active {
    transform: scale(.95);
}

.cog-checkout-login-modal button:focus {
    outline: none;
}

.cog-checkout-login-modal button.ghost {
    background-color: transparent;
    border-color: #ffffff;
}

.cog-checkout-login-modal .form-body {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
    height: 100%;
    text-align: center;
}

.cog-checkout-login-modal input {
    border-radius: 30px;
    margin: 10px 0;
}

.cog-checkout-login-modal .form-group {
    margin-bottom: 20px;
}

.cog-checkout-login-modal .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

.cog-checkout-login-modal .form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
}

.cog-checkout-login-modal .sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.cog-checkout-login-modal .container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.cog-checkout-login-modal .sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.cog-checkout-login-modal .container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show .6s;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5
    }
}

.cog-checkout-login-modal .overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100;
}

.cog-checkout-login-modal .container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.cog-checkout-login-modal .overlay {
    background: #ff416c;
    background: -webkit-linear-gradient(98deg, color(srgb .17 .59 .65), color(srgb .12 .45 .5));
    background: linear-gradient(98deg, color(srgb .17 .59 .65), color(srgb .12 .45 .5));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #ffffff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform .6s ease-in-out;
}

.cog-checkout-login-modal .overlay-right h1,
.cog-checkout-login-modal .overlay-right p,
.cog-checkout-login-modal .overlay-left h1,
.cog-checkout-login-modal .overlay-left p {
    color: #fff;
}

.cog-checkout-login-modal .container.right-panel-active .overlay {
    transform: translateX(50%);
}

.cog-checkout-login-modal .overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform .6s ease-in-out;
}

.cog-checkout-login-modal .overlay-left {
    transform: translateX(-20%);
}

.cog-checkout-login-modal .container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.cog-checkout-login-modal .overlay-right {
    right: 0;
    transform: translateX(0);
}

.cog-checkout-login-modal .container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

.cog-checkout-login-modal #login-link {
    color: #000000;
    font-weight: 600;
}

.cog-checkout-login-modal .sign-in-container a {
    text-decoration: none;
    color: #212529;
    margin-bottom: 10px;
    text-align: left;
    font-size: 13px;
}

.cog-checkout-login-modal .social-container {
    margin: 20px 0;
}

.cog-checkout-login-modal .social-container a {
    border: 1px solid;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.cog-checkout-login-modal .social-container a.facebook {
    background: #4c7cc5;
}

.cog-checkout-login-modal .social-container a.google {
    background: #df4931;
}

.cog-checkout-login-modal .sign-in-container .facebook i,
.cog-checkout-login-modal .sign-in-container .google i,
.cog-checkout-login-modal .sign-up-container .facebook i,
.cog-checkout-login-modal .sign-up-container .google i {
    padding: 5px 10px 5px 0;
    border-right: 1px solid white;
    width: 25px;
    margin-right: 12px;
}

#checkout-login-modal .modal-dialog {
    max-width: 800px;
}

#checkout-login-modal .modal-content {
    background: transparent;
    border: none;
}

.cog-checkout-login-modal .sign-in-container h3,
.cog-checkout-login-modal .sign-up-container h3 {
    font-weight: 600;
    color: #a5a4a4;
    font-size: 13px;
    width: 34px;
    height: 34px;
    border: 1px solid #bcbcbc;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    margin: auto;
    z-index: 2;
    position: initial;
    background: white;
}

.cog-checkout-login-modal .sign-in-container h3:before,
.cog-checkout-login-modal .sign-up-container h3:before {
    height: 1px;
    display: block;
    width: 100px;
    background: #bcbcbc;
    border-right: 1px white;
    content: "";
    position: absolute;
    top: 48%;
    width: 100%;
    left: 0;
    z-index: -1;
}

.cog-checkout-login-modal .sign-in-container .facebook,
.cog-checkout-login-modal .sign-in-container .google,
.cog-checkout-login-modal .sign-up-container .facebook,
.cog-checkout-login-modal .sign-up-container .google {
    padding: 5px 15px;
    border-radius: 30px;
}

.cog-checkout-login-modal .sign-in-container .or,
.cog-checkout-login-modal .sign-up-container .or {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 20px;
}

.cog-checkout-login-modal .sign-in-container h1,
.cog-checkout-login-modal .sign-up-container h1 {
    text-transform: capitalize;
    margin-bottom: 20px;
    color: #000000;
    font-size: 25px;
    font-weight: 700;
}

.cog-cart-offcanvas {
    background-color: #e3f8fa;
    width: 450px;
    background: url(../images/disocunt_bg.jpg);
}

.cog-cart-offcanvas .offcanvas-header {
    background-color: white;
}

.cog-cart-offcanvas .offcanvas-header h5 {
    font-size: 16px;
    margin: 0;
}

.cog-cart-offcanvas .offcanvas-header h5 a {
    text-decoration: none;
    color: #000000;
}

.cog-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
}

.cog-cart-offcanvas .cart ul li .product .image {
    width: 25%;
}

.cog-cart-offcanvas .cart ul li .product .image img {
    width: 65px;
    height: 80px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 4px;
}

.cog-cart-offcanvas .cart ul li {
    background-color: white;
    margin: 10px 0;
    border-radius: 4px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.cog-cart-offcanvas .cart ul li:first-child {
    margin-top: 0;
}

.cog-cart-offcanvas ul li .product {
    display: flex;
    padding: 10px;
}

.cog-cart-offcanvas .cart ul li .subtotal {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #dee2e6;
}

.cog-cart-offcanvas .cart ul {
    
    list-style: none;
    padding-bottom: 10px;
}

.cog-cart-offcanvas .cart ul li .subtotal span {
    font-size: 14px;
    color: #6c757d;
}

.cog-cart-offcanvas .cart ul li .subtotal .price {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.cog-cart-offcanvas .cart ul li .product .weight {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.cog-cart-offcanvas .cart ul li .product .product-detail {
    width: 75%;
}

.cog-cart-offcanvas .cart ul li .product .weight p,
.cog-cart-offcanvas .cart ul li .product .qty p {
    margin: 0;
    font-size: 13px;
}

.cog-cart-offcanvas .cart ul li .product .weight h5 {
    margin: 0;
    font-size: 15px;
}

.cog-cart-offcanvas .cart ul li .product .qty {
    display: flex;
    justify-content: space-between;
}

.cog-pm-btn {
    border: 1px solid #c9c9c9 !important;
    width: 84px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-radius: 4px;
    align-items: center;
}

.cog-pm-btn .cog-minus-btn {
    width: 24px;
    border-right: 1px solid #c9c9c9;
    cursor: pointer;
    font-size: 18px;
    height: 24px;
    line-height: 23px;
    font-weight: 500;
}

.cog-pm-btn .cog-plus-btn {
    width: 24px;
    border-left: 1px solid #c9c9c9;
    cursor: pointer;
    font-size: 17px;
    height: 24px;
    line-height: 23px;
    font-weight: 500;
}

.cog-pm-btn input {
    width: 36px;
    border: none;
    text-align: center;
    height: 24px;
}

.cog-cart-offcanvas .cart ul li .product .product-detail h6 {
    font-size: 17px;
    margin: 0;
}

.cog-cart-offcanvas .cart ul li .subtotal i {
    font-size: 14px;
    color: gray;
}

.cog-cart-offcanvas .cart ul li .subtotal p {
    font-size: 14px;
    margin: 0;
}

.cog-cart-offcanvas .order-summary {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-radius: 4px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.cog-cart-offcanvas .order-summary h5 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cog-cart-offcanvas .order-summary ul li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.cog-cart-offcanvas .order-summary ul li .subtotal span {
    font-size: 14px;
    color: #6c757d;
}

.cog-cart-offcanvas .order-summary ul li .subtotal .price {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.cog-cart-offcanvas .order-summary ul li.total {
    border-top: 1px solid #dee2e6;
    padding: 10px 0;
    margin-top: 10px;
}

.cog-cart-offcanvas .order-summary ul li.total span {
    font-weight: 500;
    font-size: 15px;
}

.cog-cart-offcanvas .order-summary ul li.total .price {
    font-weight: 600;
    font-size: 18px;
    color: #212529;
}

.cog-cart-offcanvas .info-box {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    margin-bottom: 20px;
}

.cog-cart-offcanvas .info-box img {
    height: 22px;
    object-fit: contain;
}

.cog-cart-offcanvas .info-box a {
    color: #8c8c8c;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.cog-cart-offcanvas .info-box p {
    margin: 0;
}
.cog-cart-offcanvas .offcanvas-footer {
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    padding: 15px;
    align-items: center;
    color: white;
    background: linear-gradient(to left, rgb(217 60 86), rgb(122 49 130));
}

.cog-cart-offcanvas .offcanvas-footer .btn-cog {
    color: #000000;
    background-color: #fff;
    border-color: #fff;
    font-weight: 500;
    padding: 8px 25px;
    font-size: 16px;
}

.cog-cart-offcanvas .offcanvas-footer span {
    font-size: 15px;
    font-weight: 500;
}

.cog-cart-offcanvas .offcanvas-footer span.price {
    font-size: 18px;
    font-weight: 700;
}

.cog-cart-offcanvas .offcanvas-footer .btn-cog i {
    padding-left: 10px;
}

.cog-cart-offcanvas .offcanvas-body::-webkit-scrollbar {
    width: 6px;
}

.cog-cart-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.cog-cart-offcanvas .accordion-item {
    background-color: #fff;
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.cog-cart-offcanvas .accordion-button:not(.collapsed) {
    color: #212529;
    background-color: #fff;
    box-shadow: none;
}

.cog-cart-offcanvas .accordion-button {
    padding: 1rem 1.25rem;
    font-size: 17px;
    font-weight: 600;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
}

.cog-cart-offcanvas .accordion-button:focus {
    box-shadow: none;
}

.cog-cart-offcanvas .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.cog-cart-offcanvas .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.cog-cart-offcanvas .accordion-body .btn-apply {
    color: #ffffff;
    border-color: #000000;
    background: #000000;
    min-width: 90px;
}

.cog-cart-offcanvas .accordion-item .accordion-header img {
    margin-right: 10px;
}

.cog-coupon-card {
    background: #c8fcff;
    color: #000;
    text-align: center;
    padding: 10px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .15);
    position: relative;
    margin-bottom: 20px;
}

.cog-coupon-card h3 {
    font-size: 17px;
    font-weight: 400;
}

.cog-coupon-card p {
    font-size: 12px;
    margin: 0;
}

.cog-coupon-card .coupon-row {
    display: flex;
    align-items: center;
    margin: 14px auto 8px 18px;
    width: fit-content;
}

.cog-coupon-card .cpnCode {
    border: 1px dashed #fff;
    padding: 5px 20px;
    border-right: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}

.cog-coupon-card .cpnBtn {
    border: 1px solid #fff;
    background: #fff;
    padding: 5px 20px;
    color: #000000;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
}

.cog-coupon-card .circle1,
.cog-coupon-card .circle2 {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cog-coupon-card .circle1 {
    left: -15px;
}

.cog-coupon-card .circle2 {
    right: -15px;
}

.cog-cart-offcanvas .offer {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-radius: 4px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.cog-cart-offcanvas .offer h5 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cog-cart-offcanvas .offer ul {
    list-style: none;
    margin-left: -15px;
    padding-left: 40px;
}

.cog-cart-offcanvas .offer ul li {
    font-size: 14px;
}

.cog-cart-offcanvas .offer ul li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    float: left;
    margin-left: -1.5em;
    color: #000000;
    margin-top: 3px;
}

.cog-account {
    background-color: #fafdff;
}

.cog-account .left-side {
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
    position: sticky;
    top: 0;
}

.cog-account .left-side h4 {
    font-size: 20px;
    font-weight: 500px;
}

.cog-account .left-side .head {
    text-align: center;
}

.cog-account .left-side .logout-btn {
    color: #565757;
    font-weight: 400;
    padding: 3px 20px;
    font-size: 13px;
    transition: all .2s;
    border-radius: 4px;
}

.cog-account .left-side .logout-btn:hover {
    border-color: #000000;
    transform: scale(1.05);
    box-shadow: none;
}

.cog-account .left-side .logout-btn {
    display: inline-flex;
    border: 1px solid #BFC0C0;
    margin: 10px;
    color: #BFC0C0;
    font-size: 13px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cog-account .left-side .logout-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cog-account .left-side .logout-btn a {
    position: relative;
    transition: all .45s ease-Out;
    text-decoration: none;
    color: #5e5e5e;
    font-weight: 400;
}

.cog-account .left-side .logout-btn #circle {
    width: 0;
    height: 0;
    opacity: 0;
    line-height: 40px;
    border-radius: 50%;
    background: #000000;
    position: absolute;
    transition: all .5s ease-Out;
    top: 20px;
    left: 70px;
    border-color: #000000;
}

.cog-account .left-side .logout-btn:hover #circle {
    width: 200%;
    height: 500%;
    opacity: 1;
    top: -70px;
    left: -70px;
}

.cog-account .left-side .logout-btn:hover a {
    color: #ffff;
}

.cog-account .cog-tabs {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
}

.cog-account .cog-tabs.nav-link {
    width: 12.5rem;
    height: auto;
    margin-bottom: 20px;
}

.cog-account .cog-tabs.nav-link .circle {
    transition: all .45s cubic-bezier(.65, 0, .076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: #e3f8fa;
    border-radius: 1.625rem;
}

.cog-account .cog-tabs.nav-link .circle .icon {
    transition: all .45s cubic-bezier(.65, 0, .076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

.cog-account .cog-tabs.nav-link .circle .icon.arrow {
    transition: all .45s cubic-bezier(.65, 0, .076, 1);
    left: .6rem;
    width: 1.5rem;
    height: .7rem;
    background: none;
    color: #000000;
}

.cog-account .cog-tabs.nav-link .circle .icon.arrow::before {
    position: absolute;
    top: -.25rem;
    right: .0625rem;
}

.cog-account .cog-tabs.nav-link .button-text {
    transition: all .45s cubic-bezier(.65, 0, .076, 1);
    position: absolute;
    top: 0;
    left: 2rem;
    right: 0;
    bottom: 0;
    padding: .70rem 0;
    margin: 0 0 0 1.85rem;
    color: #282936;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
    text-transform: capitalize;
    font-size: 16px;
}

.cog-account .cog-tabs:hover .circle,
.cog-account .nav-pills .nav-link.active .circle {
    width: 100%;
    background: #000000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.cog-account .cog-tabs:hover .circle .icon.arrow,
.cog-account .nav-pills .nav-link.active .circle .icon.arrow {
    transform: translate(.5rem, 0);
    color: #fff;
}

.cog-account .cog-tabs:hover .button-text {
    color: #fff;
}

.cog-account .nav-pills .nav-link.active,
.cog-account .nav-pills .show>.nav-link {
    color: #fff;
    background-color: transparent;
}

.cog-account .left-side .body {
    padding: 30px 0;
}

.cog-account .nav-pills .nav-link.active .button-text {
    color: #fff;
}

.cog-account .right-side {
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
    padding: 30px;
    background-color: #fff;
    border-radius: 4px;
}

.cog-account .count-card {
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cog-account .count-card h2 {
    font-size: 32px;
    font-weight: 700;
}

.cog-account .count-card h4 {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
}

.cog-account .count-card.order {
    border-left: 6px solid #000000;
    align-items: center;
}

.cog-account .count-card i {
    font-size: 35px;
    opacity: .5;
    color: #000000;
}

.cog-account .count-card.received {
    border-left: 6px solid #08a53e;
    align-items: center;
}

.cog-account .count-card.cancel {
    border-left: 6px solid #be1616;
    align-items: center;
}

.cog-account .count-card.returned {
    border-left: 6px solid #e08811;
    align-items: center;
}

.cog-account .dashboard .head {
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cog-account .dashboard .product {
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
    padding: 10;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    -webkit-animation: scale-in-center 2s cubic-bezier(.230, 1.000, .320, 1.000) both;
    animation: scale-in-center 2s cubic-bezier(.230, 1.000, .320, 1.000) both;
    align-items: center;
    margin-bottom: 20px;
}

.cog-account .dashboard .product img {
    width: 80px;
    padding: 5px;
    height: 80px;
    object-fit: contain;
}

.cog-account .dashboard .product .info h4 {
    font-size: 15px;
}

.cog-account .dashboard .product .info {
    width: 100%;
    padding: 10px;
    border-left: 1px solid #d5d3d3;
}

.cog-account .dashboard .product .info .buy-again {
    font-size: 13px;
    text-decoration: none;
    color: #5d5d5d;
}

.cog-account .orders .head,
.cog-account .profile .head,
.cog-account .support .head {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 600;
    border-left: 4px solid #000000;
    padding-left: 10px;
    -webkit-animation: tracking-in-expand .7s cubic-bezier(.215, .610, .355, 1.000) both;
    animation: tracking-in-expand .7s cubic-bezier(.215, .610, .355, 1.000) both;
}

@-webkit-keyframes tracking-in-expand {
    0% {
        letter-spacing: -.5em;
        opacity: 0
    }

    40% {
        opacity: .6
    }

    100% {
        opacity: 1
    }
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -.5em;
        opacity: 0
    }

    40% {
        opacity: .6
    }

    100% {
        opacity: 1
    }
}

.cog-account .orders .table>thead {
    vertical-align: bottom;
    background: #000000;
    color: #ffffff;
    font-weight: 500;
}

.cog-account .orders .table tbody tr td,
.cog-account .orders .table tbody tr th {
    font-size: 15px;
    padding: 18px 10px;
    border-color: #ededed;
}

.cog-account .orders .table>thead tr td {
    border: none;
    font-size: 16px;
}

.cog-account .orders .table tbody tr td .view-btn {
    background: #000000;
    color: #ffffff;
    padding: 4px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all .45s ease-in-out;
}

.cog-account .orders .table tbody tr td .view-btn:hover {
    background: #000000;
    color: #fff;
    box-shadow: 3px 7px 14px #e3f8fa;
    font-weight: 500;
}

.cog-account .orders .table tbody tr td .track-btn {
    background: #e0ffea;
    color: #09a53f;
    padding: 4px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all .45s ease-in-out;
}

.cog-account .orders .table tbody tr td .track-btn:hover {
    background: #09a53f;
    color: #fff;
    box-shadow: 3px 7px 14px #e0ffea;
    font-weight: 500;
}

.cog-account .orders .table tbody tr td .invoice-btn {
    background: #ffebd1;
    color: #d38625;
    padding: 4px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all .45s ease-in-out;
}

.cog-account .orders .table tbody tr td .invoice-btn:hover {
    background: #ffa500;
    color: #fff;
    box-shadow: 3px 7px 14px #e0ffea;
    font-weight: 500;
}

.cog-account .orders .table-hover>tbody>tr:hover {
    --bs-table-accent-bg: rgb(255 255 255);
    color: var(--bs-table-hover-color);
    box-shadow: 0 .5rem 1.5rem .2rem #e8f7ff !important;
    transform: scale(1.01);
}

.cog-account .orders .table-hover>tbody>tr:hover td,
.cog-account .orders .table-hover>tbody>tr:hover th {
    border: none;
}

.cog-account .orders .table-hover>tbody>tr:hover td,
.cog-account .orders .table-hover>tbody>tr:hover th {
    border: none;
}

.cog-modal .close,
.cog-checkout-login-modal .close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    font-size: 26px;
    line-height: 22px;
    border-radius: 50%;
    border: none;
    color: #000000;
    background: #e3f8fa;
    display: block;
    right: -16px;
    top: -16px;
    padding: 4px;
}

.cog-modal .close span,
.cog-checkout-login-modal .close span {
    width: 100%;
    display: block;
    height: 100%;
}

.cog-modal .head {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.cog-modal .cog-btn,
.cog-account .support .cog-btn {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    font-weight: 500;
    padding: 5px 20px;
}

.cog-modal .form-group {
    margin-bottom: 20px;
}

.cog-modal .modal-body {
    padding: 1.5rem 2.5rem;
}

.cog-order-detail-modal {}

.cog-order-detail-modal tr td img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.cog-order-detail-modal .table>thead {
    vertical-align: bottom;
    background: #e3f8fa;
    color: #000000;
    font-weight: 500;
}

.cog-order-detail-modal table tr td {
    vertical-align: middle;
}

.cog-order-detail-modal .table>thead tr th {
    border: none;
    font-size: 16px;
}

.cog-order-detail-modal .modal-body {}

.cog-order-detail-modal table tr td:first-child {
    width: 90px;
}

.cog-order-detail-modal table tr:last-child td {
    border: none;
}

.cog-order-detail-modal table tr td.total {
    font-weight: 600;
    text-align: right;
}

.cog-order-detail-modal table {
    margin-bottom: 0;
}

.cog-track-order-modal .timeline {
    width: 100%;
    margin: auto;
    display: block;
    position: relative;
}

.cog-track-order-modal .timeline ul.tl {
    margin: 40px 0;
    padding: 0;
    display: inline-block;
    margin-left: 0;
}

.cog-track-order-modal .timeline ul.tl li {
    list-style: none;
    margin: auto;
    margin-left: 170px;
    min-height: 50px;
    border-left: 1px dashed #000000;
    padding: 0 0 50px 30px;
    position: relative;
}

.cog-track-order-modal .timeline ul.tl li:last-child {
    border-left: 0;
}

.cog-track-order-modal .timeline ul.tl li::before {
    position: absolute;
    left: -9px;
    top: 3px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, .74);
    border-radius: 500%;
    background: #000000;
    height: 20px;
    width: 20px;
    transition: all 500ms ease-in-out;
}

.cog-track-order-modal .timeline ul.tl li:hover::before {
    border-color: #000000;
    transition: all 1000ms ease-in-out;
}

.timeline ul.tl li .item-title {
    font-size: 14px;
}

.timeline ul.tl li .item-detail {
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
}

.timeline ul.tl li .timestamp {
    color: #8D8D8D;
    position: absolute;
    width: 100px;
    left: -50%;
    text-align: right;
    font-size: 14px;
}

.cog-track-order-modal h4 {
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.cog-account .profile .cog-outline-btn {
    border-color: #000000;
    float: right;
    padding: 5px 25px;
    border-radius: 30px;
}

.cog-account .profile .cog-outline-btn:hover {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
}

.cog-account .profile h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cog-account .profile ul {
    list-style: none;
    padding-left: 0;
    display: grid;
}

.cog-account .profile ul li {
    padding: 10px 0;
    font-size: 15px;
}

.cog-account .profile ul li:first-child {
    border-top: none;
}

.cog-account .profile ul li span.name {
    font-weight: 600;
}

.cog-account .profile .address {
    border-top: 1px solid #e1e1e1;
    padding-top: 30px;
}

.cog-account .profile .change-password {
    color: #000000;
    text-decoration: underline;
    font-size: 16px;
}

.cog-modal .modal-sm {
    max-width: 360px;
    margin: auto;
}

.cog-toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -25px;
    color: #595959;
    font-size: 14px;
}

.cog-modal label {
    font-size: 14px;
}

.cog-account .support .card {
    padding: 30px;
    border: none;
    background: #e3f8fa;
}

.cog-account .support a {
    color: #424242;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 0;
    font-size: 17px;
}

.cog-account .support .form-group {
    margin-bottom: 20px;
}

.cog-account .support .box {
    box-shadow: 0 .5rem 1.5rem .2rem #e9e9e9 !important;
}

.cog-wishlist table tr td img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cog-wishlist table tr td {
    vertical-align: middle;
}

.cog-wishlist .fa-trash-alt {
    color: #ff6c5d;
}

.cog-wishlist .cog-outline-btn {
    float: none;
}

.cog-wishlist .table>tbody>tr {
    --bs-table-accent-bg: rgb(255 255 255);
    color: var(--bs-table-hover-color);
    box-shadow: 0 .5rem 1.5rem .2rem #e8f7ff !important;
    transform: scale(1.01);
    margin-bottom: 20px;
}

.cog-wishlist .table>tbody>tr td {
    border: none;
}

.cog-wishlist .table {
    border-collapse: separate;
    border-spacing: 0 20px;
}

@media(max-width:760px) {
    .col-xs-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .mt-xs-10 {
        margin-top: 10px;
    }

    .cog-checkout .cart ul {
        overflow-y: hidden;
        height: auto
    }

    .cog-checkout h5 {
        margin-bottom: 20px;
        margin-top: 50px
    }

    .cog-checkout-login-modal .sign-in-container {
        left: 0;
        width: 100%;
        z-index: 1;
        height: 100%
    }

    .cog-checkout-login-modal .form-body {
        padding: 30px;
        height: 100%
    }

    .cog-checkout-login-modal .container {
        min-height: 620px
    }

    .cog-checkout-login-modal .sign-up-container {
        width: 100%;
        opacity: 1;
        z-index: 1
    }

    .product .btn {
        opacity: 1
    }

    .cog-checkout-login-modal .social-container a.facebook {
        margin-bottom: 10px;
        width: 70%
    }

    .cog-checkout-login-modal .social-container a.google {
        width: 70%
    }

    .cog-checkout {
        margin-top: 0;
        padding: 20px;
    }

    .cog-checkout .payment-method-img {
        width: 280px !important;
    }
}

.cog-ecom-footer {
    position: fixed;
    bottom: 0;
    background: #068aaa;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .15) !important;
    width: 100%;
    padding: 10px 0;
    display: flex;
    ;
    z-index: 999;
}

.cog-ecom-footer .item {
    text-align: center;
    width: calc(100%/4);
    color: #212529;
    text-decoration: none;
    position: relative;
}

.cog-ecom-footer .item i {
    color: #ffffff;
    font-size: 20px;
}

.cog-ecom-footer .item p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.cog-ecom-footer .item-home {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    line-height: 31px;
    padding: 5px;
    text-align: center;
    font-size: 18px;
    margin: auto;
    position: absolute;
    top: -30px;
    left: 10px;
}

.cog-ecom-footer .item-home i {
    color: #068aaa;
}

.cog-ecom-footer .item-home i {
    font-size: 25px;
    line-height: 55px;
}

#cog-ecom-search-mobile .search-wrap {
    display: inline-block;
    margin-left: 0;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

#cog-ecom-search-mobile .search-wrap .form-control {
    border: 1px solid #e7e7e6;
    border-radius: 2em;
    height: 37px;
    padding: 5px 20px;
}

#cog-ecom-search-mobile .search-wrap button {
    background: #000000;
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 37px;
    width: 68px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 5px;
}

.cog-ecom-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    z-index: 10000;
    right: 20px;
}

.cog-ecom-whatsapp-btn img {
    width: 60px;
}

.pulse {
    animation: pulse .1s infinite ease-in-out alternate;
}

@keyframes pulse {
    from {
        transform: scale(.8)
    }

    to {
        transform: scale(1)
    }
}

.tap-top.top-cls.btn-animation {
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    animation: ring 4s .7s ease-in-out infinite;
    font-size: 20px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #ffffff;
    opacity: 1;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
    margin-right: 10px;
    margin-top: 5px;
    min-width: 14px;
}

.form-check {
    cursor: pointer;
}

.cog-checkout .payment-method-img {
    width: 420px;
}

.cog-no-result {
    background: #f1f2f1e6;
    padding: 25px;
    padding-top: 0;
    margin-bottom: 30px;
}

.cog-no-result h3 {
    font-size: 25px;
    color: black;
    font-weight: 600;
}

.latest-comments ul,
.list-wrap,
.mobile-menu .navigation li ul {
    margin: 0;
    padding: 0 25px;
    border-color: red;
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: none;
}

.disclaimer {
    font-size: 13px;
}

.inner-shop-details-bottom span a.active.out-of-stock {
    color: #fff;
    background: #eee;
    border-color: #068aaa;
}
.cog-offcanvas-header h5{
    margin: 0;
    color: white;
}


@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-direction: row-reverse;
    }
}
#DateTime {
    display: none;
  }
  .navbar-toggler:focus {

    box-shadow:none;
}
.menu-sec:nth-child(even) {
    background-color: #fff8e0; /* Light gray */
  }
  .menu-sec{
    padding: 40px 0;
  }
/*
 * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
 * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
 * make sure you copy the url from the website since the url may change between versions.
 * */
 .toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}}