@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    background-color: #FFFBED;
}

:root {
    --bs-theme-color: #ED1E26;
    --bs-dark-color: #121212;
    --bs-orange-color: #ED1E26;
    --bs-dark-hover: #121212;
    --bs-white-color: #fff;
    --bs-yellow-color: #FFF106;
    --bs-light-gray: #f3f3f3;
    --bg-green-color: #19A74A;
    --large-space: 100px;
    --smallspace: 50px;
    --subheading: 36px;
    --heading: 48px;
}

.fancy-font {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}

.section-topspace {
    padding-top: var(--large-space);
}

.section-smallspace {
    padding-top: var(--smallspace);
}

.section-bottomspace {
    padding-bottom: var(--large-space);
}

.margin-topspace {
    margin-top: var(--large-space);
}

.margin-bottomspace {
    margin-bottom: var(--large-space);
}

* {
    font-family: "Urbanist", sans-serif;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

.text-red {
    color: var(--bs-theme-color)
}

.flatpickr-calendar.open {
    z-index: 5 !important;
}

body.stopScrolling {
    scroll-snap-type: none;
    overflow-y: hidden;
}

/* Global Css Start */
.text-60 {
    font-size: 60px;
}

.text-36 {
    font-size: 36px;
}

.text-22 {
    font-size: 22px;
}

.padding-y {
    padding: 100px 0;
}

.subheading-text {
    font-size: var(--subheading);
}

.heading-text {
    font-size: var(--heading);
}

.padding-t {
    padding-top: 100px;
}

.text-green {
    color: #19A74A;
}

.padding-b {
    padding-bottom: 100px;
}

.text-BK {
    color: #000000 !important;
}

.bg-yellow {
    background-color: var(--bs-yellow-color) !important;
}

.text-WH {
    color: #fff !important;
}

.text-orange {
    color: var(--bs-theme-color);
}

.text-yellow {
    color: var(--bs-yellow-color);
}

.text-theme {
    color: var(--bs-theme-color);
}

.bg-orange {
    background: var(--bs-theme-color);
}

.p-round {
    /* max-width: 1170px; */
    margin: auto;
}

p {
    color: #212121;
    font-weight: 400;
    line-height: 25px;
    font-size: 16px;
}

h1,
h2,
h3,
h4 {}

.sub-title {
    /* font-size: 25px; */
}

h2.h2-heading {
    font-size: 65px;
    font-weight: 600;
    font-family: "Marcellus", serif;
    color: var(--bs-theme-color);
}

.h2-heading span {}

/* Transition  */
.transition {
    transition: all 0.4s ease;
}

/* Form Inputs Css */
/* Chrome,Safari, Edge, Opera ,Firefox*/
input[type="number"] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-control:focus {
    /* box-shadow: none;
    border: none; */
}

/* Form Inputs Css */
/* Blacklayer */
.blacklayer {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000bd;
    backdrop-filter: blur(5px);
    z-index: 991;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

.blacklayer.active {
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Blacklayer */

.img-cover {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center;
    height: 100%;
    width: 100%;
}

.img-fluid {
    width: 100%;
}

.btns {
    margin-top: 20px;
}

.same-btn {
    padding: 10px 30px;
    display: inline-block;
    border: 1px solid var(--bs-theme-color) !important;
}

.same-btn:hover {
    background: var(--bs-white-color);
    border: 1px solid var(--bs-theme-color) !important;
    color: var(--bs-theme-color);
}

.same-btn,
.not_orderable {
    border-radius: 50px;
    background: var(--bs-orange-color);
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--bs-white-color);
    overflow: hidden;
    font-weight: bold;
    position: relative;
    z-index: 0;
}


.primary-btn {
    background: var(--bs-theme-color);
    border-radius: 10px;
    color: var(--bs-white-color);
    padding: 12px 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
}

.primary_outline_btn {
    border-radius: 10px;
    border: 1px solid #FFF;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    padding: 11px 20px;
    color: white;
    text-transform: uppercase;
    display: inline-block;
}

.not_orderable {
    cursor: default !important;
}

.same-btn.btn-outline {
    background: transparent;
    border: 1px solid var(--bs-orange-color);
    color: var(--bs-orange-color);
}

.same-btn.btn-outline:hover {
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    border: 1px solid var(--bs-orange-color);
}

.same-btn.btn-outline-02 {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.same-btn.btn-outline-02:hover {
    border: 1px solid var(--bs-orange-color);
}

.nav-link:focus,
.nav-link:hover {
    color: var(--bs-yellow-color) !important;
}

.sub-banner {
    height: 500px;
    background: var(--bs-theme-color);
    padding: 100px 0 0px;
}

.sub-banner-title {
    font-size: 120px;
    background: -webkit-linear-gradient(0deg,
            var(--bs-theme-color),
            var(--bs-orange-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: -webkit-fill-available;
    font-family: "Marcellus", serif;
    padding: 25px 0;
}

.sub-banner-discription {
    font-size: 18px;
}

/* Global Css End */

/*book table*/
.reservation-page-section {
    margin-top: 30px;
}

.reservation-page-section .bg-contact-box form.form-contact {
    padding: 30px 50px 50px 20px;
}

.reservation-page-section .bg-contact-box>div>div:first-child {
    margin-bottom: 0px;
}

label.condition-text p {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
    text-align: left !important;
}

label.condition-text {
    display: flex;
    align-items: center;
    gap: 9px;
}

.condition-text input {
    width: 34px;
    margin-right: 10px;
    height: 20px;
}

.img-full4 {
    height: 100%;
}

.img-full4 img.img-fluid {
    height: 100%;
    margin: auto;
    text-align: center;
    display: block;
    object-fit: cover;
}

.wh-100 {
    height: 100px !important;
}

.over-lay {
    text-align: left;
}

.card-img {
    position: relative;
}

.over-lay h3 {
    font-size: 21px;
}

.over-lay {
    position: absolute;
    bottom: 0;
    padding: 13px 11px 7px;
    background: linear-gradient(172deg,
            rgb(255 255 255 / 0%) -32%,
            rgb(89 16 16) 66%);
    height: 150px;
}

/* Desk-view-Header start */
header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    padding: 0 15px;
    margin-top: 10px;
}

.navbar-start {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-bg-color {
    background: #000;
}

header.navigation.is-sticky {
    background: var(--bs-dark-color);
    transition: all 0.2s ease;
    animation: sticky-header 0.35s ease-out;
    padding: 10px 15px;
    margin-top: 0;
    z-index: 99999;
}

header.navigation.is-sticky .navbar-start {
    background: transparent;
}

header.navigation.is-sticky .action-bar {
    display: none;
}

header.navigation.is-sticky .web-nav-logo {
    display: none;
    transition: all 0.4s ease;
}

header.navigation.is-sticky .web-nav-sticky-logo {
    display: block;
    transition: all 0.4s ease;
}

header.navigation.is-sticky .cart-div a,
header.navigation.is-sticky .cart-div a i,
header.navigation.is-sticky .cart-div a span {
    border-color: var(--bs-white-color);
    color: var(--bs-white-color);
}

header.navigation.is-sticky .nav-booktable-btn {
    border-color: var(--bs-white-color);
    color: var(--bs-white-color);
}

.web-nav-sticky-logo {
    display: none;
    transition: all 0.4s ease;
}

.web-nav-cover .web-nav-sticky-logo img {
    height: 60px;
    padding: 0px 10px;
    transition: all 0.4s ease;
}

@keyframes sticky-header {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header .navbar .nav-contain {
    height: 100%;
}

.web-nav-links .nav-link {
    font-size: 16px;
    color: #fff;
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.4s ease;
    /* overflow: hidden; */
    position: relative;
    text-transform: uppercase;
}

.web-nav-links .nav-link:hover {
    color: var(--bs-theme-color);
    transition: all 0.4s ease;
}

.web-nav-links .nav-link.active {
    color: var(--bs-yellow-color);
}

.web-nav-links .dropdown-item.active,
.web-nav-links .dropdown-item:active {
    color: var(--bs-orange-color);
    background: var(--bs-theme-color);
}

.navigation.hide {
    top: -80px;
    transition: all 0.4s ease;
}

.social-media-header {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: end;
}

footer .social-media-header a i {
    color: #1f1e1e;
    margin: 0;
    padding: 10px;
    background: var(--bs-orange-color);
    font-size: 20px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

/* .social-media-header a i{display: flex; border-bottom: none !important;} */
.social-media-header a i:hover {
    color: var(--bs-dark-color);
}

.footer-media-icon i:hover {
    color: var(--bs-theme-color);
}

.web-nav-cover {
    position: relative;
}

.web-nav-cover img {
    height: 90px;
    padding: 10px;
}

.cart-div {
    position: relative;
}

li.nav-item.cart-div .nav-link.active span {
    color: var(--bs-dark-color);
}

li.nav-item.cart-div .nav-link span:hover {
    color: var(--bs-dark-color);
}

.cart-div a {
    display: flex;
    gap: 2px;
    align-items: center;
    /* border: 1px solid var(--bs-theme-color); */
    /* border-radius: 30px; */
    width: 60px;
    height: 34px;
    justify-content: center;
    overflow: hidden;
    /* font-family: "Inter" !important; */
    /* background: var(--bs-theme-color); */
}

.cart-div a i {
    padding: 0;
    /* width: 50%; */
    align-items: center;
    justify-content: center;
    color: var(--bs-white-color);
    font-size: 25px;
}

.cart-div span {
    position: absolute;
    /* top: 0; */
    border: 1px solid var(--bs-white-color);
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    right: 15px;
    top: -2px;
    background: var(--bs-theme-color);
    font-size: 12px;
    color: var(--bs-white-color);
}

.nav-booktable-btn {
    position: relative;
    /* border: 1px solid var(--bs-theme-color); */
    background: var(--bs-theme-color);
    border-radius: 10px;
    color: var(--bs-white-color);
    padding: 8px 12px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-booktable-btn:hover {
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    transition: all 0.4s ease;
}

/* Desk-view-Header End */
/* Action Bar Start */
.action-bar {
    width: 100%;
    background: var(--bs-dark-700);
    padding: 10px 0;
}

.action-bar a {
    color: #fff;
    font-size: 14px;
}

.action-bar a:hover {
    color: var(--bs-orange-color);
}

.action-bar i {
    font-size: 18px;
}

/* Action Bar End */
/* Mobile Sidebar Satrt */
.mobileSidebar {
    position: fixed;
    z-index: 9999992;
    top: 0;
    right: -100%;
    max-width: 370px;
    height: 100vh;
    background: var(--bs-white-color);
    transition: all 0.4s ease;
}

a {
    text-decoration: none;
}

.mobile-booktable a {
    border: none;
    padding: 14px 30px;
    color: var(--bs-white-color);
    border-radius: 50px;
    background: var(--bs-orange-color);
}

.mobile-booktable a:hover {
    background: var(--bs-theme-color);
}

.mobileSidebar.mobileSidebarShow {
    right: 0;
    transition: all 0.4s ease;
}

.mobileSidebarClose {
    position: absolute;
    top: 14px;
    right: 10px;
    width: 25px;
    padding: 0;
    animation: crossRotate 8s ease infinite;
}

@keyframes crossRotate {

    /* 0%{transform: rotate(-90deg);} */
    100% {
        transform: rotate(360deg);
    }
}

.mobileSidebar .navbar-links .nav-link:hover {
    color: var(--bs-theme-color);
}

.mobileSidebar .navbar-links .nav-link.active {
    color: var(--bs-theme-color) !important;
    padding: 0px;
}

.mobileSidebar .contact-info {
    margin-top: 6px;
}

.contact-info li {
    padding: 0 20px;
}

.contact-info a {
    color: var(--bs-dark-color);
}

.contact-info a:hover {
    color: var(--bs-theme-color);
}

.contact-info {
    margin-top: 50px;
}

/* Mobile Sidebar End */
/* Footer Start  */
Footer {
    background: #100F00;
    border-radius: 0;
    margin-top: -200px;
}

Footer .container-fluid {
    padding: 250px 0 0px;
}

Footer .web-nav-cover {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 0 0 10px;
}

Footer h5 {
    margin-bottom: 20px;
}

Footer a {
    color: var(--bs-white-color);
    font-size: 16px;
    display: flex;
    margin-bottom: 10px;
    padding: 0;
    text-align: start;
}

Footer p {
    font-size: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.working-hours-div h6 {
    font-size: 14px;
    color: var(--bs-white-color);
}

Footer a:hover {
    color: var(--bs-theme-color);
    /* font-weight: 600; */
}

.custom-form input,
.custom-form textarea {
    padding: 10px;
    margin-bottom: 5px;
    border: 0px solid #000;
    font-size: 12px;
    width: 100%;
    outline: none;
    border-radius: 4px;
}

.custom-form button {
    border: none;
    padding: 0px;
    width: 100%;
    max-width: 150px;
    background: var(--bs-orange-color);
    text-transform: uppercase;
}

.footer-address a {
    color: var(--bs-white-color);
    font-size: 16px;
    word-break: break-all;
    display: flex;
    align-items: center;
}

.footer-address a:hover {
    color: var(--bs-theme-color);
}

footer .social-media-header a:hover {
    color: var(--bs-theme-color);
}

.copy-right-content small {
    text-wrap: nowrap;
    padding: 20px 0;
}

.copy-right-content small a {
    font-size: 14px;
    font-family: "Inter" !important;
    font-weight: 500;
}

/* Footer Start  */
main {
    position: relative;
    overflow: hidden;
}

.map-05 iframe {
    border-radius: 30px !important;
}

/* Hero Section  Start */
.hero-section {
    background-image:
        url(../image/banner.webp);

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    backdrop-filter: blur(1px);
    border-radius: 20px;
}

.banner-text {
    height: 900px;
    align-items: end;
    padding-bottom: 100px;
    padding-left: 1.1%;
}

.hero-section .slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-01 {
    position: relative;
}

.banner-text-cover {
    font-size: 75px;
}

.hero-section .text-36 {
    letter-spacing: 10px;
    margin-top: 30px;
    font-weight: 600;
}

.slick-list.draggable,
.slick-track {
    height: 100%;
}

.slider .slick-slide img {
    object-fit: cover;
}

.food-slider .slick-track {
    display: flex;
}

.all-dots ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 15px;
    background: transparent;
    position: absolute;
    bottom: 20px;
    z-index: 5;
}

.all-dots ul.slick-dots li {
    font-size: 0;
    height: 10px;
    width: 10px;
    border-radius: 30px;
    border: 0px solid #c2c2c2;
    background: rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.all-dots .slick-dots li button:before {
    opacity: 0 !important;
}

.all-dots ul.slick-dots li button {
    font-size: 0;
    height: 100%;
    width: 100%;
    border-radius: 30px;
    border: none;
    background: transparent;
    /* transition: all 0.4s ease; */
}

.all-dots ul.slick-dots li.slick-active {
    border: 0px solid var(--bs-theme-color);
    transition: all 0.4s ease;
    background-color: #000000;
}

.horizontal-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 54%;
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translate(0%, -50%);
    width: 50px;
}

.horizontal-text h6,
.horizontal-text hr {
    display: inline-block;
    transform: rotate(90deg);
    font-weight: 700;
}

.sub-page-banner .horizontal-text hr {
    width: 50px;
    border: 1px solid #ffffff;
    opacity: 1;
}

.sub-page-banner .horizontal-text {
    height: 60%;
}

.horizontal-text hr {
    width: 100px;
    border: 1px solid #ffffff;
    opacity: 1;
}

.horizontal-text ul {
    margin-top: -20px;
}

.horizontal-text ul li {
    cursor: pointer;
}

.horizontal-text ul li a {
    color: var(--bs-white-color);
}

/* Sub Page Banner  */
.sub-page-banner {
    height: 500px;
    padding: 100px 0 0px 0;
    background-image: url(../image/subbaner-image.webp);
}

.sub-page-banner .banner-text-cover {
    font-size: 64px;
}

.sub-page-banner h6.text-36 {
    font-size: 22px;
}

/* book-table-section */
/* AboutUs Section start */

.about-list li {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    gap: 20px;
    align-items: start;
}

.about-list li h6{
    font-size: 20px;
    font-weight: bold;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid rgb(32 1 2 / 40%);
    padding-top: 40px;
    margin-top: 40px;
}

.about-right-section {
    padding-left: 5%;
}

.about-image-top img {
    max-height: 450px;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
}

.about-image-bottom {
    width: 80%;
    margin: 0 auto;
    border: 5px solid white;
    border-radius: 20px;
    margin-top: -100px;
    z-index: 9;
    position: relative;
}

.about_exp h3 {
    font-size: 48px;
    font-weight: bold;
    color: #212121;
    display: inline-block;
    border-right: 2px solid #D7B33D;
    padding-right: 20px;
    margin: 0;
}

.about_exp {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.about_exp h5 {
    font-size: 22px;
    font-weight: 700;
    color: #212121;
    margin: 0;
}

.z-99 {
    z-index: 999;
    position: relative;
}

.about_gradient {
    border-radius: 0 20px 20px 0;
    background: linear-gradient(180deg, rgba(255, 241, 6, 0.17) 0%, rgba(255, 189, 105, 0.05) 100%);
    height: 400px;
    position: absolute;
    right: 0;
    left: 0;
    width: 35%;
    z-index: 9;
    top: 17%;
}

.subheading-title {
    font-size: 26px;
}

.about-image-bottom img {
    border-radius: 20px;
}

.about-list li img {
    width: 50px;
}

.about-section {
    background-image: url(../image/about-cover.png);
}

.about-section ul li {
    font-size: 14px;
}

.about-section-img {
    padding: 15px;
    height: 400px;
}

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

/* Menu Section Start  */
.menu-section {
    padding: 0px 0;
}

.bar-menu-row {
    /* margin-top: 30px; */
}

.bar-menu-row .slick-track {
    gap: 10px;
    display: flex;
}

/* .food-slider .slick-list.draggable, .slick-track,
.bar-menu-row .slick-list.draggable, .slick-track {
  height: 100% !important;
  display: grid;
} */
.bar-menu-row .all-dots .slick-slide {
    padding: 0 10px;
    /* max-height: 260px; */
    height: 100%;
    border-radius: 6px;
}

.all-dots .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.all-dots ul.slick-dots {
    bottom: -29px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    right: 10px;
    gap: 0px;
    z-index: 3;
    position: relative;
    background-color: transparent;
    width: 100px;
    margin: 0 auto;
    border-radius: 20px;
}

.all-dots .slick-dots li.slick-active button:before {
    opacity: 0 !important;
}

.bar-menu-row .slick-track {
    display: flex !important;
}

.food-itme-img-20 {
    height: 200px;
}

.category-box {
    border-radius: 10px;
    height: auto !important;
    padding: 5px;
    /* max-width: 330px; */
    /* min-width: 313px; */
}

.category-box a {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    height: 350px;
    flex-direction: column;
    padding: 0px;
    border: 5px solid var(--bs-orange-color);
    /* max-width: 330px; */
}

.category-box h4 {
    transition: all 0.4s ease;
    position: relative;
    width: 100%;
    margin-top: 15px;
    color: var(--bs-dark-color);
    border-radius: 6px;
    padding: 0 10px;
}

.category-box p {
    padding: 0 10px;
}

.menu-section-items {
    background: var(--bs-light-red-color);
    display: inline-flex;
}

.menu-section-items li:first-child button {
    border: 1px solid #3fb03d !important;
    color: #3fb03d !important;
    background: transparent !important;
}

.menu-section-items li:first-child button:hover {
    background: #3fb03d !important;
    color: #fff !important;
}

.menu-section-items li:first-child button.active {
    background: #3fb03d !important;
    color: #fff !important;
}

.menu-section-items li:first-child button:after {
    background: #3fb03d !important;
}

.menu-section-items li:first-child button:hover::after {
    background: #3fb03d !important;
}

.menu-section-items li:first-child button:active::after {
    background: #3fb03d !important;
}

.menu-section-items button {
    color: var(--bs-theme-color) !important;
    border-color: var(--bs-theme-color) !important;
}

.menu-section-items button:hover {
    color: var(--bs-white-color) !important;
}

.menu-section-items button:hover::after {
    background: var(--bs-theme-color);
}

.menu-section-items button.active:after {
    background: var(--bs-theme-color) !important;
}

.menu-section-items button.active {
    background: var(--bs-theme-color) !important;
    color: var(--bs-white-color) !important;
}

/* Special Offer Section  */
.special-menu-section {
    padding: 150px 0;
}

.shap-cover h2 {
    clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
    background: var(--bs-theme-color);
    padding: 15px 100px;
    display: inline-block;
}

.offer-box {
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-box-img {
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
}

.offer-box-img img {
    object-fit: cover;
}

.offer-box-content {
    padding: 20px 50px;
    text-align: center;
}

.offer-title {
    padding: 40px;
}

.offer-banner {
    background-image: url(../image/location-cover.webp);
    border-radius: 20px;
    overflow: hidden;
}

.offer-banner-img {
    padding: 40px;
}

.offer-banner-img img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 380px;
    border: 2px solid #fff;
}

.offer-title .h2-heading {
    font-size: 50px;
    font-weight: 400;
}

.offer-slider .slick-list.draggable {
    width: 340px;
}

.join-us-section {
    padding: 0 0 150px 0;
}

.join-notice {
    background: var(--bs-theme-color);
}

/* Gallery Section start  */
.gallery-section {
    padding: 200px 0 0px;
}

.galley-section .img-box {
    width: 100%;
    height: 400px;
    /* padding: 5px; */
}

.galley-section .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.galley-section .gallery-row {
    padding: 0 10px;
}

.galley-section .gallery-row>div {
    padding: 0;
}

/* .catering-section */
.catering-section {}

.catering-form-cover {
    background-image: url(../image/location-cover.webp);
    border-radius: 50px;
    padding: 50px;
    background-repeat: repeat !important;
    background-size: auto;
}

.catering-img figure img {
    border-radius: 20px;
}

/* Testimonials Section Start  */
.testimonial-section {
    background-color: #FFF1EE;
}

.testimonial-section ul.slick-dots {
    bottom: -50px !important;
    padding: 5px 0;
}

.google-description-row ul {
    color: #ffc107;
}

.testimonial-section .slick-track {
    display: flex;
    overflow: unset;
    gap: 0px;
}

.testimonial-section .slick-list {
    height: auto;
    overflow: unset;
}

.testimonial-section .slick-slide {
    height: auto;
    overflow: unset;
}

.testimonial-row-01 {
    padding-bottom: 30px;
}

.review-main-box {
    border: 1px solid rgba(25, 167, 74, 0.30);
    border-radius: 20px !important;
    overflow: unset;
    padding: 0px;
    height: 100%;
    transition: all 0.4s ease;
}

.review-main-cover:not(.slick-active) {
    opacity: 0;
    transition: all 0.4s ease;
}

.review-box {
    background-color: white;
    height: 100%;
    margin: 0px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 20px;
    gap: 20px;
}

.review-box p {
    padding-bottom: 10px;
    font-weight: 400;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid #D0D0D0;
    color: #000000;
}

.quote-user-img {
    position: relative;
}

.google-review-row {
    width: 100%;
    height: 100%;
    padding: 20px 0 50px;
}

.review-main-cover {
    padding: 12px;
}

.review-box h4 {
    font-size: 18px;
    font-weight: 400;
}

.review-img-content {
    gap: 20px;
}

.review-box ul {
    color: #FFA606;
    gap: 3px;
    margin-top: 20px;
}

.review-box ul li i {
    font-size: 20px;
}

.testimonial-section.all-dots .slick-slide {
    /* height: 100% !important; */
    max-height: 100% !important;
}

.testimonial-section.all-dots .slick-slide img {
    width: 60px;
    height: 62px;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    /* left: -25px; */
}

.testimonial-section.all-dots button.slick-arrow {
    position: absolute;
    bottom: -40px;
    left: 10px !important;
    border: 2px solid var(--bs-orange-color);
    width: 35px;
    height: 35px;
    color: transparent;
    background: transparent;
    z-index: 10;
}

.testimonial-section.all-dots button.slick-next.slick-arrow {
    left: 50px !important;
}

.testimonial-section.all-dots button.slick-arrow::before {
    position: absolute;
    content: "\F284";
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    font-family: "Bootstrap-icons";
    color: #f2a22c;
    font-weight: bold;
    z-index: -1;
    cursor: pointer;
}

.testimonial-section.all-dots button.slick-next.slick-arrow::before {
    content: "\F285";
}

.quote-img i {
    font-size: 50px;
    color: var(--bs-white-color);
}

.quote-img .review-start i {
    font-size: 16px;
    color: var(--bs-yellow-color);
}

.icon-rotate i {
    transform: rotate(180deg);
}

.contact-details {
    /* background: var(--bs-orange-color); */
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* text-align: center; */
}

.contact-details h4 {
    color: var(--bs-theme-color);
    font-size: 20px;
}

.contact-details li {
    color: var(--bs-theme-color);
    display: flex;
}

.contact-details li a {
    text-decoration: none;
    color: var(--bs-white-color);
    font-size: 14px;
    text-wrap: pretty;
    word-break: break-all;
}

.contact-details li a:hover {
    color: var(--bs-theme-color);
    /* font-weight: 200; */
}

.contact-map-col {
    margin: 100px 0;
    height: 400px;
}

/* Contact Us Section 2 Start  */
.form-0220 {
    background-image: url(../image/location-cover.webp);
    border-radius: 50px;
    padding: 50px;
    background-repeat: repeat !important;
    background-size: auto;
}

.contactus-section {
    padding: 100px 0;
}

.contactus-section .form-contact input,
.contactus-section textarea.form-control {
    /* background: var(--bs-light-orange-color); */
    border: 2px solid var(--bs-light-gray-color);
}

/*About Page Start*/
.container-cover-bg-img-left,
.container-cover-bg-img-right {
    position: relative;
    z-index: 0;
}

.conta-cover-img {
    position: absolute;
    width: 32%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
}

.container-cover-bg-img-right .conta-cover-img {
    left: unset;
    right: 0;
    border-radius: 20px 0 0 20px;
}

.conta-cover-img::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000071;
}

.conta-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-section {
    padding-bottom: 150px;
}

/* .img-hover.d-flex img {
  width: 86px;
  height: 500px;
  object-fit: cover;
  margin: 0 2px;
  transition: 0.8s;
  border-radius: 10px;
} */
.img-hover.d-flex {
    overflow: hidden;
}

img.active {
    width: calc(100% - 185px) !important;
    transition: 0.8s;
}

.number-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.number-text span {
    font-size: 30px;
    font-weight: 700;
    top: -20px;
    position: relative;
    color: var(--bs-theme-color);
}

.about-page-section img {
    border: 2px solid var(--bs-white-color);
}

.about-page-section .about-section-img {
    height: 550px;
}

/*About Page END*/

/* Catering Page Start  */
.catering-form-col {
    padding: 150px 0px 50px;
}

.catering-section-01 .flex-column-reverse {
    flex-direction: row !important;
}

section.event-box {
    margin: 0px 0 100px;
}

.catering-event-cards {
    height: 300px;
}

.catering-event-cards .card-img {
    height: 100%;
}

.catering-event-cards .card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-shaps-cover img {
    border-radius: 20px;
}

.happy-hours {
    padding-bottom: 100px;
}

.services-card-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: #f7f7f7;
    padding: 30px;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 0 10px #cecece;
}

.services-card-img {
    margin-bottom: 20px;
}

/* Catering Page end  */

/*Contact-page*/
.contact-page-form {
    background-image: url(../image/about-cover.png);
}

.contact-page-form .contact-page-form-box {
    background-image: url(../image/location-cover.webp);
    background: fill;
    background-repeat: repeat;
    border-radius: 50px;
    padding: 50px;
}

.contact-page-form .contact-page-form-box .text-22 {
    color: #fff;
}

.contact-page-cta .contact-section {
    background-image: unset !important;
}

.contact-page-cta p,
.contact-page-cta span,
.contact-page-cta li a {
    color: #000 !important;
}

section.contact-form-col {
    padding: 20px 0 0;
}

.bg-contact-box {
    margin-bottom: 100px;
}

.main-contact-page .contactus-section {
    padding: 0;
}

.main-contact-page .contact-details {
    margin-top: 30px;
}

.main-contact-page .contact-details li a {
    color: var(--bs-dark-color);
}

.main-contact-page .contact-left iframe {
    height: 300px;
}

.main-contact-page .contact-details li a:hover {
    color: var(--bs-theme-color);
}

/* .working-hours-div li h6 span:last-child{margin-left: auto;} */
/* .addres1 {
    padding: 17px;
} */

/* Special Offer Page Css Start  */
.daily-info-section {
    padding: 80px 0 30px;
}

.offer-content-box {
    padding: 20px;
    border-top: 2px solid var(--bs-theme-color);
    /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
}

.offer-content-box {
    text-align: center;
}

.daily-img-height {
    height: 245px;
}

.daily-img-height img {
    height: 100%;
    object-fit: cover;
}

.offer-content-container {
    padding: 10px 10px;
}

.offer-content-container-row {
    background: var(--bs-light-orange-color);
}

.daily-container {
    /* background: var(--bs-light-orange-color); */
    /* border-radius: 20px; */
    overflow: auto;
}

.daily-container>div {
    border-bottom: 8px solid var(--bs-white-color);
}

.daily-container>div:last-child {
    border-bottom: 0;
}

/*Prem*/

.title-inner h1 {
    display: inline-block;
    color: var(--bs-black-color);
    border-radius: 100px;
    font-size: 50px;
    font-weight: 600;
}

.bg-contact-box {
    background: var(--bs-light-orange-color);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
        rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.form-control:focus {
    /* color: var(--bs-orange-color); */
    /* background-color: #6c1715; */
    outline: 0;
    /* border-bottom: none !important; */
    /* padding: 16px 11px; */
    /* border: 2px solid #fff; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

::placeholder {
    /* color: var(--bs-black-800-color) !important; */
}

.bg-contact-box form.form-contact {
    padding: 0 20px 40px 0px;
}

form.form-contact {
    /* height: 100%; */
    border-radius: 33px;
    /* padding: 0 20px; */
}

form.form-contact input,
textarea.form-control {
    background-color: #F3F3F5 !important;
    padding: 16px 11px;
    margin: 10px 0;
    border: none;
    border: 1px solid rgb(0 0 0 / 10%) !important;
    border-radius: 0.375rem;
    color: var(--bs-dark-700);
}

.addres1 {
    background: var(--bs-orange-color);
    height: 100%;
}

.addres1 a {
    color: var(--bs-theme-color);
    text-decoration: none;
    font-size: 16px;
    word-wrap: break-word;
}

.contact-img-group {
    position: relative;
    z-index: 0;
    height: 100%;
}

.contact-img-group .f-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 2px solid #fff;
}

.contact-img-group .f-img {
    width: 300px;
    height: 350px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.f1-img {
    left: 26% !important;
    top: 30% !important;
    z-index: -1;
}

.f2-img {
    right: auto;
    top: 40% !important;
    z-index: -2;
    left: 68% !important;
}

.f3-img {
    left: 50px;
    top: 68% !important;
    z-index: -3;
}

.space-p .col-10 {
    padding-left: 0;
}

.conta-mt iframe {
    height: 400px;
    border-radius: 30px;
}

.addres1 h3 {
    font-size: 22px;
    color: var(--bs-theme-color);
    padding-left: 7px;
    padding-top: 15px;
}

.space-p {
    padding: 15px 33px;
}

.addres1 i {
    display: flex;
    text-align: center;
    color: var(--bs-theme-color);
    font-size: 23px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    /* margin: 8px 0; */
}

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

.map-location {
    overflow: hidden;
    border-radius: 20px;
}

.sumit-btn {
    border: 1px solid;
    display: inline-block;
    border-radius: 100px;
    padding: 5px;
}

.sumit-btn button {
    border: none;
    background: var(--bs-theme-color);
    color: var(--bs-orange-color);
    padding: 10px 40px;
    border-radius: 100px;
}

/* .conta-mt .bg-contact-box>div>div:first-child {
  margin-bottom: 20px;
} */

/*our menu page css*/
.menu-item-section {
    padding: 80px 0;
}

.menuCateClose:hover {
    color: var(--bs-dark-color);
}

.side-tabe ul li {
    display: flex !important;
    align-items: center;
    /* margin: 0 2px; */
    padding: 7px 3px;
    width: 100%;
}

.tab-link {
    color: rgba(18, 18, 18, 1);
    background: #EEE;
    text-decoration: none;
    text-align: center;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    /* text-transform: uppercase; */
    text-wrap: nowrap;
    font-weight: 600;
    width: 100%;
    text-wrap: wrap;
    transition: 0.4s;
}

.tab-link:focus-visible {
    outline: none;
}

.tab-link:hover {
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    transition: 0.4s;
}

.right-menu {
    height: 100%;
}

.menu-tabs {
    margin: 0px 0;
}

.item-gap {
    margin: 0 0 8px 0;
    padding: 0px 12px;
}

.side-tabe ul {
    padding: 7px 10px;
    border: none;
    border-radius: 20px;
    /* background-color: var(--bs-light-red-color); */
    display: flex;
    /* height: 100%; */
    flex-direction: row;
    border: 1px solid var(--bs-light-gray);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* li.slick-slide.slick-current.slick-active button {
       background: var(--bs-theme-color);
  color: var(--bs-orange-color);
  transition:0.4s;
} */
li.slick-slide.slick-current.slick-center a {
    background: var(--bs-theme-color);
    color: var(--bs-orange-color);
    transition: 0.4s;
}

.menu-title {
    margin: 36px 0;
    text-align: center;
    color: var(--bs-orange-color);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.nav-tabs .tab-link.active {
    /* font-weight: bold; */
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
}

.menu-item-card {
    padding: 10px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--yellow, #FFF106);
    background: #FFF;
    height: 100%;
    gap: 5px;
}

.cart-items-container .menu-item-card {
    border: 1px solid #FE9A00;
    padding: 15px;
    background-color: #F3F3F5;
}

.cart-items-container {
  overflow-y: auto; 
}

.cart-items-container::-webkit-scrollbar {
  width: 2px; 
}

.cart-items-container::-webkit-scrollbar-track {
  background: #fff;
}

.cart-items-container::-webkit-scrollbar-thumb {
  background-color: #ffff;
  border-radius: 3px;
}

.cart-items-container::-webkit-scrollbar-thumb:hover {
  background-color: #fff;
}

.product-title-01 {
    font-size: 20px;
    color: #520205;
    font-weight: 600;
}

.item-text h5 {
    margin: 4px 0 4px 0;
}

.item-text p {
    font-size: 16px;
    color: #121212 !important;
    font-weight: 500;
    padding-top: 5px;
}

.item-gap {
    margin-bottom: 15px;
}

/* Food Type Icon Css  */
.food-type-icon-00 {
    position: relative;
    display: flex;
    /* width: 20px; */
}

.food-type-icon-00 img {
    width: 16px !important;
    height: 15px;
    object-fit: contain !important;
    margin: 0 auto;
}

.food-type-icon-00 img:not(.active) {
    display: none;
}

.food-type-icon-00 img.active {
    display: block;
}

/* .food-type-icon-00 .food-icons-00{z-index: 0;} */
/* Manu item Button css Start */
.add-item-btn,
.add-item-btn span.ladda-label {
    width: 100%;
    border: none;
    /* height: 28px; */
    color: var(--bs-dark-color);
    border-radius: 50px;
    position: absolute;
    transition: all 0.4s ease;
    display: flex !important;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    /* padding: 0px 5px !important; */
    background: transparent;
}

.add-item-btn:hover {
    /* background: var(--bs-white-hover); */
    color: var(--bs-red-hover);
}

.add-item-btn.hidden {
    position: absolute;
    z-index: -1;
    transition: all 0.4s ease;
}

button.add-item-btn i {
    background: var(--bs-theme-color);
    display: inline-grid;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    padding: 2px 2px 2px 3px;
    -webkit-text-stroke: 0.6px;
    place-content: center;
    place-items: center;
    width: 20px;
    height: 20px;
}

.itme-btn-fuction {
    position: relative;
    overflow: hidden;
    padding: 2px;
    height: 35px;
    background-color: #ED1E26;
    border-radius: 50px;
    border: 0;
    display: flex;
    color: white;
}

.itme-btn-fuction .add-item-btn {
    color: white !important;
}

.qty-btns {
    display: flex;
    flex-wrap: nowrap;
    border-radius: 50px;
    overflow: hidden;
    padding: 3px 5px;
    align-items: center;
    gap: 5px;
}

.qty-btns button {
    background: var(--bs-theme-color);
    /* color: var(--bs-theme-color); */
    font-size: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btns button i {
    display: flex;
    font-weight: bold !important;
    font-size: 17px;
    -webkit-text-stroke: 0.6px;
    align-items: center;
    justify-content: center;
}

.qty-btns button:hover {
    /* background: #000; */
    color: var(--bs-white-color);
}

.qty-btns button,
.qty-btns input {
    max-width: 20px;
    max-height: 20px;
    padding: 2px;
    border: none;
    outline: none;
    text-align: center;
    border-radius: 50px;
}

.qty-btns input {
    pointer-events: none;
    font-weight: 600;
    font-size: 13px;
}

button.quantity_increase {
    color: #fff;
}

button.quantity_decrease {
    background: var(--bs-dark-hover);
    color: #fff;
}

/* Manu item Button css End */
.item-content-box-ac {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    margin-top: 10px;
}

.item-price h5 {
    color: var(--bs-theme-color) !important;
}

.cart-left-details .item-price h5 {
    color: #1E2939 !important;
    font-weight: 700;
    font-size: 18px;
}

.menu-item-card .item-img-box-ac {
    height: 180px;
    min-height: 180px;
    padding: 0 12px;
}

.menu-item-card .item-img-box-ac img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    padding: 0;
    border-radius: 10px;
}

.item-price h5 {
    font-size: 18px;
}

.BarMenu-panel .item-content-box-ac .item-text h5,
.item-price h5 {
    color: var(--bs-dark-color);
}

span.copy-button {
    padding: 2px 10px;
    border: 2px dashed;
    display: inline-block;
    border-radius: 5px;
    font-size: 18px;
}

/* Menu modal pupup  */
.menu-page-items-popup .modal-dialog {
    height: auto;
}

.modal-dialog-scrollable .modal-content {
    height: 100% !important;
    overflow: hidden;
    position: relative;
}

form#add_to_cart_form {
    height: 100%;
}

#food-modal-data {
    height: 100% !important;
    display: flex;
    flex-direction: column;
}

.modal-header button {
    border: none;
    border-radius: 100px;
    background: var(--bs-light-gray-color);
    color: var(--bs-theme-color);
    font-size: 18px;
    padding: 0;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
}

.food-Modal-popup .input-number {
    background: var(--bs-light-gray-color);
}

.food-Modal-popup .item-price h5 {
    color: var(--bs-dark-color);
}

.label-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    background: var(--bs-light-gray-color);
    color: var(--bs-dark-color);
    cursor: pointer;
}

.label-text i {
    height: 20px;
    width: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: var(--bs-dark-color);
}

.food-Modal-popup .modal-body {
    overflow-y: auto;
    max-height: 350px;
}

.food-Modal-popup .modal-body input {
    width: 0;
}

.food-Modal-popup .modal-body input[type="radio"]:checked+label {
    color: var(--bs-white-color);
    background: var(--bs-theme-color);
}

.food-Modal-popup .modal-body input[type="checkbox"]:checked+label {
    color: var(--bs-white-color);
    background: var(--bs-theme-color);
}

.food-Modal-popup .modal-body input[type="radio"]:checked+label i {
    color: var(--bs-white-color);
}

.food-Modal-popup .modal-body input[type="checkbox"]:checked+label i {
    color: var(--bs-white-color);
}

/* .food-Modal-popup .add-item-btn:hover {
    background: var(--bs-theme-color);
    color: var(--bs-white-hover);
} */
/*End our menu page css*/

/* Gallery Page Css  */
.gallery-page {
    margin-bottom: 80px;
}

/* Cart Page Css Start  */

.cart-page-section {
    padding: 100px 0 100px 0;
}

.cart-page-section .item-content-box-ac {
    margin-top: 0;
}

.cart-items-container {
    padding: 16px 0px 0 0;
    position: relative;
    max-height: 650px;
    overflow-y: scroll;
}


/* Cart Left Div  Start*/
.cart-left-details {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.cart-left-details h2 {
    padding: 10px 10px;
    border-radius: 10px;
    color: #000;
}

.cart-left-details .item-gap {
    margin-bottom: 8px;
}

.cart-left-details .item-img-box-ac img {
    object-fit: cover;
    max-height: 100px;
}

.cart-left-details .item-img-box-ac {
    max-width: 140px;
    height: 100px;
    min-height: 100px;
    width: 100%;
    height: 100%;
    padding: 0 15px 0 12px;
}

.cart-left-details .item-text h5 {
    margin: 0px 0 2px 0;
    padding: 0 0px 0 0;
    color: #1E2939;
    font-weight: 600;
}

.cart-left-details .item-text p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 4px;
}

.cart-left-details .item-text {
    padding-right: 0px;
    width: 85%;
}

.menu-item-card:hover .item-remove-btn button {
    opacity: 1;
    transition: all 0.4s ease;
}

.item-remove-btn button {
    height: 28px;
    width: 28px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
}

.cart-items-container .itme-btn-fuction {
    /* padding: 2px;
    height: 50px;
    background-color: #ED1E26;
    border-radius: 50px;
    width: 140px;
    gap: 10px;
    justify-content: center; */

    padding: 0px;
    height: 35px;
    background-color: #ED1E26;
    border-radius: 50px;
    width: 110px;
    gap: 2px;
    justify-content: center;


}

.cart-items-container button.quantity_increase {
    color: #000000;
    background-color: white;
}

.cart-items-container button.quantity_decrease {
    background: var(--bs-dark-hover);
    color: #fff;
}

.cart-items-container .qty-btns {
    gap: 15px;
}

.cart-items-container .qty-btns input {
    font-weight: 600;
    font-size: 16px;
    background-color: transparent;
    color: white;
}

.item-remove-btn button i {
    display: flex;
    color: var(--bs-dark-color);
    font-size: 12px;
}

.cart-add-more-button,
.cart-add-more-button:hover {
    border-radius: 10px;
    border: 2px dashed var(--grad, #FE9A00) !important;
    background: #FFFBED;
    width: 100%;
    text-align: center;
    color: #1E2939;
    font-size: 18px;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}



.no-img-item {
    width: 100% !important;
}

.cart-text-details {
    padding: 25px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

/* Cart Left Div  End*/
/* Cart Right Div  Start*/
.checkout-page-section .cart-items-details {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    position: sticky;
    top: 140px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.cart-right-row h2 {
    color: var(--bs-orange-color);
    padding: 10px 0;
}

.tips-row {
    /* flex-wrap: nowrap; */
    margin-bottom: 10px;
    padding: 0 12px;
    position: relative;
    padding-top: 20px;
    border-top: 0px solid var(--bs-light-gray);
}

.tips-boxs {
    display: flex;
    /* width: auto; */
    justify-content: start;
    padding: 0 0 5px;
}

.tips-boxs input[type="radio"]:checked+label {
    color: var(--bs-white-color);
    background: linear-gradient(90deg, #FE9A00 0%, #FF6900 100%);
}

.tips-boxs label {
    border: 2px solid #f99a39;
    /* background: var(--bs-theme-color); */
    color: #364153;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 40px;
    text-align: center;
    margin: 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-right: 5px;
    padding: 0 20px;
    cursor: pointer;
}

.tips-boxs input {
    width: 0;
    opacity: 0;
}

.tips-row .form-control {
    width: 100%;
    border: 2px solid #f99a39;
    font-weight: 600;
    color: #364153;
    /* background: var(--bs-theme-color); */
}

.add-coupen-box .coupon_code_input:focus,
.tips-row .form-control:focus {
    padding: 0.375rem 0.75rem;
}

body .add-coupen-box .coupon_code_input {
    background-color: #F3F3F5 !important;
    box-shadow: none;
    border: 2px solid #FE9A00 !important;
}

.item-price-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0px;
    margin-bottom: 0px;
    border-radius: 0px;
}

.item-price-box li.total-amout-list {
    border-top: 2px solid #f99a39 !important;
    margin-top: 20px;
    padding-top: 20px;
}

span.coupen-btns button {
    border: navajowhite;
    font-size: 10px;
    background: red;
    color: #f2a22c;
    border-radius: 30px;
}

.item-price-box h6 {
    margin: 0;
    color: #121212;
}

.item-price-box h6:last-child {
    text-wrap: nowrap;
    width: 100px;
    min-width: 100px;
}

.item-price-box li:last-child h6 {
    color: #121212;
    font-size: 20px;
    font-weight: 600;
}

.checkout-btn p {
    margin-bottom: 10px;
    color: #717182;
}

.checkout-btn a,
.checkout-btn button {
    font-size: 18px;
}

.discount-row h6 i {
    transform: rotate(30deg);
    display: inline-block;
    color: var(--bs-orange-color);
}

.discount-row h6 small {
    color: var(--bs-orange-color);
    font-size: 12px;
}

.specail-text textarea {
    height: 50px;
    padding: 10px 10px;
    margin: 6px 0 !important;
    border: 2px solid #f99a39 !important;
    border-radius: 4px;
    background: #F3F3F5;
    border-radius: 0.375rem;
}

.specail-text h6 {
    margin-top: 15px;
    color: var(--bs-orange-color);
}

.add-coupen-box {
    justify-content: start;
    display: flex;
    margin-bottom: 0px;
    gap: 10px;
}

.add-coupen-box span {
    display: inline-flex;
    padding: 0;
    align-items: center;
    border-radius: 5px;
    width: -webkit-fill-available;
}

.add-coupen-box span i {
    transform: rotate(30deg);
    display: inline-block;
    color: var(--bs-orange-color);
}

.apply-coupen-btn {
    padding: 10px 20px;
    border: none;
    background: linear-gradient(90deg, #FE9A00 0%, #FF6900 100%);
    color: var(--bs-orange-color);
    border-radius: 5px;
    text-wrap: nowrap;
}

.apply-coupen-btn span {
    border: none;
    background: transparent;
}

/* Cart Right Div  end*/
/* Cart Page Css End  */

/* Checkout Page Css  */
.checkout-left-details {
    padding: 25px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    /* border: 1px solid #f99a39; */
}

body h2.back-btn a {
    background: var(--bs-orange-color);
    padding: 2px 5px 1px;
    border-radius: 100px;
    font-size: 14px;
    color: var(--bs-white-color);
}

.cart-items-details h2 {
    display: inline-flex;
    padding: 10px 0;
    border-radius: 30px;
    transition: all 0.4s ease;
    color: #000;
    /* text-transform: uppercase; */
}

/* .cart-items-details h2:hover{background: var(--bs-red-hover);transition: all 0.4s ease;} */
.cart-items-details h2:hover a {
    /* color: var(--bs-white-hover); */
    transition: all 0.4s ease;
}

.cart-items-details h2 a {
    font-size: 16px;
    text-decoration: none;
    color: var(--bs-black-800-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.cart-items-details h2 a i {
    font-size: 25px;
    margin-right: 5px;
}

.cart-items-details .form-contact {
    padding: 0px !important;
}

.cart-items-details .form-contact input {
    margin: 6px 0;
}

.checkout-form {
    margin-top: 20px;
}

.circle-number {
    background: var(--bs-orange-color);
    color: var(--bs-white-color) !important;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    margin-right: 11px;
    font-size: 17px;
}

.checkout-left-details h4 {
    color: #000;
    font-size: 20px;
}

/*Track order Css Start*/
ul#progressbar li {
    font-size: 18px;
    color: #000;
    text-align: center;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33%;
    float: left;
    position: relative;
}

li.active img.select {
    display: block;
    transition: 0.3s;
}

.proces-img img {
    text-align: center;
    margin: auto;
    transition: 0.3s;
    width: 86px;
    position: relative;
    z-index: 0;
    /* border: 4px solid var(--bs-theme-color); */
    border-radius: 50px;
}

img.select {
    /* display: none; */
    transition: 0.3s;
}

ul#progressbar p {
    margin-top: 20px;
    font-weight: 600;
    color: var(--bs-dark-color);
}

ul#progressbar li.active p {
    color: var(--bs-orange-color);
}

li.active img.unselect {
    display: none;
    transition: 0.3s;
}

ul#progressbar {
    margin-bottom: 30px;
    padding: 0;
}

.proces-img:after {
    content: "";
    background: var(--bs-orange-color);
    height: 5px;
    display: block;
    position: absolute;
    top: 31%;
    left: 66%;
    width: 70%;
    margin: auto;
    z-index: -9999;
}

.proces-img.last-broder:after {
    display: none;
}

.proces-img:last-child:after {
    display: none;
}

li.active .proces-img:after {
    background: var(--bs-orange-color);
    transition: 0.4s;
}

li.active .proces-img {
    background: var(--bs-orange-color);
}

.proces-img {
    background-color: var(--bs-dark-color);
    border-radius: 190px;
    width: 85px;
    margin: auto;
    /* border: 5px solid red; */
}

.track-order1 {
    max-width: 100%;
    background: #ffe7cf;
    padding: 20px 23px 20px;
    margin: auto;
    border-radius: 10px;
    /* border: 1px solid #f99a39; */
}

.track-order1 h4,
.track-order1 p {
    text-align: center;
}

.track-order1 p {
    color: #1E2939;
    margin: 0;
    font-weight: 600;
}

.track-order1 h4 {
    color: var(--bs-theme-color);
    font-size: 24px;
    font-weight: 700;
}

section.trackorder-page {
    margin: 40px 0px;
}

.title-inner-01 {
    padding: 30px;
    width: 100%;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
}

.title-inner-01 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1E2939;
}

/*Track order Css End*/

.img-contact {
    height: 250px;
}

.img-contact img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*catering page  why-choose-section */
.why-choose-section {
    padding: 150px 0 0px;
}

/* catering page make-event-section */
.make-event {
    padding: 100px 0;
}

.png-img-icon {
    height: 60px;
    width: 60px;
}

.catering-section-01 {
    background-image: url(../image/about-cover.png);
    background-position: top;
}

/* NewSLatter Section  */
.subscribe-section-01 {
    /* margin-bottom: -100px; */
}

.newslatter-bg {
    background-image:
        url(../image/newsletter-image.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 30px;
    border: 1px solid #000;
    border-radius: 10px;
}

.newslatter-bg h2 {
    font-size: 35px;
    font-weight: 600;
    color: var(--bs-white-color);
    text-align: center;
}

.newsInput {
    padding: 0px;
    border-radius: 5px 5px 5px 5px;
    background: var(--bs-white-color);
    width: 500px;
    margin-top: 30px;
    justify-content: space-between;
    display: flex;
    position: relative;
}

.newsInput input {
    background: transparent;
    border: none;
    outline: none;
    padding: 5px 10px;
    width: 100%;
    font-size: 16px;
}

.newsInput form {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: space-between;
}

.newsInput button {
    padding: 15px 30px;
    border-radius: 0 5px 5px 0;
}

.newsInput label {
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: fit-content;
}

/* @media (max-width: 2000px) {
    .sub-page-banner {
        height: 90vh;
    }
} */

.web-nav-toggle l {
    font-size: 32px;
}


.ladda-spinner div div div {
    background: #000 !important;
}

/* New-css */
.order-online-offer {
    border-radius: 100px;
    border: 2px solid #FFF106;
    background: linear-gradient(135deg, #FF3139 0%, #ED1E26 100%);
    width: fit-content;
    margin-left: auto;
    padding: 8px 15px;
    position: absolute;
    left: 0;
    right: 17%;
    bottom: 30px;
}

.order-online-offer h6 {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--bs-yellow-color);
}

.nav-tabs.cat_menu_slider {
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border: 0;
}

.nav-tabs.cat_menu_slider::-webkit-scrollbar {
    display: none;
}

.nav-tabs.cat_menu_slider li {
    list-style: none;
    margin-right: 5px;
}

.nav-tabs.cat_menu_slider a.tab-link.active {
    color: #fff;
    background: linear-gradient(180deg, var(--red, #ED1E26) 0%, #98050B 100%);
    border-color: #ddd #ddd #fff;
    font-weight: 600;
    position: relative;
}

.nav-tabs.cat_menu_slider a.tab-link:hover:not(.active) {
    background: linear-gradient(180deg, var(--red, #ED1E26) 0%, #98050B 100%);
    color: #fff;
}

/* Footer-css */
.social-media-address {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Our-menu-section-css */
.our-menu {
    background-image: linear-gradient(90deg, #0000006c, #0000006c),
        url(../image/our-menu-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 30px;
    height: 750px;
}

.food-menu_main_card {
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(236, 186, 11, 0.30);
    background: rgba(0, 0, 0, 0.79);
    backdrop-filter: blur(20px);
}

.food-menu-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.food-menu-image img {
    border-radius: 10px;
    min-height: 250px;
    height: 250px;
    object-fit: cover;
}

.food-menu-content {
    border-radius: 10px;
    padding: 20px;
    color: white;
}

.food-menu-content h4 {
    font-size: 22px;
    font-weight: 600;
}

.food-menu-content p {
    color: white;
}

.our-menu-items {
    margin-top: -400px;
}

.our-menu-chilli-vector {
    position: absolute;
    bottom: 0;
    right: 40px;
}


/* Order-online-card-css */

.order-online-card {
    background-color: #CA4228;
    padding: 25px;
    border-radius: 10px;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
    border-radius: 10px;
}

.image-wrapper::before,
.image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.image-wrapper::before {
    box-shadow: -8px -8px 0px rgba(237, 30, 38, 0.9);
    left: 0px;
    border-radius: 100px 10px 10px 10px;
}

.why-dine-image{
    border-radius: 100px 10px 100px 10px !important;
}

.image-wrapper::after {
    box-shadow: 8px 8px 0px rgba(25, 167, 74, 0.81);
    right: 0;
    left: 0;
    border-radius: 10px 10px 100px 10px;
}

/* Catering-special-css */

.accordion {
    background-color: transparent;
    --bs-accordion-bg: transparent;
}

.accordion-button {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #212121;
    padding-left: 3rem;
    position: relative;
    font-size: 20px;
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none !important;
    outline: none;
}


.accordion-button::after {
    content: none !important;
}

.accordion-button::before {
    content: '+';
    font-size: 1.5rem;
    color: #ffffff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    user-select: none;
    width: 30px;
    height: 30px;
    background-color: #ED541E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.accordion-button:not(.collapsed)::before {
    content: '–';
    background-color: #19A74A;
}

.accordion-item,
.accordion-collapse {
    border: none !important;
}

.accordion-body {
    padding-left: 0px;
    padding-right: 0;
    padding-top: 0;
}

.accordion-button:not(.collapsed) {
    color: #212121;
}

.accordion-header {
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.accordion-item{
 border-bottom: 1px solid rgb(0 0 0 / 40%) !important;
 border-radius: 0 !important;
}

.accordion-item:last-child{
    border-bottom: 0 !important;
}

.catering-satisfaction {
    position: absolute;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(25, 39, 30, 0.30);
    backdrop-filter: blur(15px);
    padding: 20px;
    left: 5%;
    bottom: 4%;
}

.catering-satisfaction h4 {
    text-align: center;
    color: #FFF106;
    font-size: 40px;
    font-weight: 600;
}

.catering-satisfaction h6 {
    margin: 0;
    color: white;
    font-size: 20px;
}


/* Our-gallery-slider */
.gallery-slider-wrapper {
    position: relative;
    padding-bottom: 60px;
}

.slick-custom-arrows {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.slick-custom-arrows button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-slider .img-box {
    padding: 0 10px;
}

.gallery-slider .img-box img {
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.gallery-slider .slick-slide {
    display: flex;
    justify-content: center;
}

/* contactus-section-css */
.contactus-section {
    background-image:
        url(../image/get-in-touch-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 250px 0;
}

.contact-inner-section {
    background-image:
        url(../image/get-in-touch-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 250px 0;
}

.contact-inner-card{
    border-radius: 10px;
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
padding: 24px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
height: 100%;
text-align: center;
}

.contact-inner-card h4{
    color: white;
    font-size: 20px;
    margin-bottom: 0;
}

.contact-inner-card a{
    color:var(--bs-yellow-color);
}

.map-start {
    margin-top: -150px;
    margin-bottom: 100px;
}

.map-start iframe {
    box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.contact-info-card {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    padding: 16px;
}

.seperator {
    border: 1px solid white;
}

/* About-us-section-css */

.about_left_content_sec {
    background-color: #FFFDD5;
    padding: 20px;
    border-radius: 10px;
}


/* About-page-section-css */

.about-section-row {
    --bs-gutter-x: 80px;
}

.center-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    z-index: 1;
    border-color: rgba(237, 30, 38, 0.25);
    border: 1px solid rgba(237, 30, 38, 0.25);
    padding: 0;
}

.center-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-image: url('../image/fire-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    border-radius: 50%;
    z-index: 2;
}

.about-col-img {
    height: 440px;
    object-fit: cover;
}

.about-col-two-img {
    height: 450px;
    object-fit: cover;
}

.catering-img {
    height: 700px;
    object-fit: cover;
}

.our-mission-card {
    border-radius: 10px;
    background: linear-gradient(180deg, #FFDED3 0%, #FFFCD2 100%);
    padding: 25px;
}


/* What-makes-css */

.what-makes-us {
    background-image:
        url(../image/what-make-us-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 100px 0;
}

.what-make-card {
    border-radius: 20px;
    border: 1px solid rgba(255, 254, 238, 0.30);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}


/* Catering-page-css */

.event-card {
    background-image: url(../image/wedding-image.webp);
    background-size: cover;
    padding: 20px;
    border-radius: 20px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.corporate-card {
    background-image: url(../image/corporate-card-image.webp);
}

.private-parties-card {
    background-image: url(../image/private-parties-image.webp);
}

.catering-card {
    border-radius: 20px;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.10);
    height: 100%;
}

.catering_bg {
    border-radius: 20px;
    background: linear-gradient(180deg, #19A74A 0%, #158A3D 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


/* Gallery-css */

.gallery-vector {
    position: absolute;
}

.grecaptcha-badge{
    z-index: 9999;
}

/* Responsive-css */



@media (max-width: 1560px) {
.catering-vector-image{
    display: none !important;
}
}

@media (max-width: 1366px) {
    .banner-text-cover {
        font-size: 54px !important;
    }

    .sub-page-banner {
        height: 400px;
    }
     .gallery-vector{
        display: none;
    }
    .break-text{
        display: none;
    }
    .about_gradient {
    top: 22%;
}
.cart-left-details .item-text {
    width: 80%;
}
}

@media (max-width: 1024px) {

    :root {
        --large-space: 100px;
        --smallspace: 50px;
        --subheading: 30px;
        --heading: 36px;
    }

        .about_gradient {
        top: 27%;
    }

    .sub-page-banner .banner-text-cover {
        font-size: 48px !important;
    }

    .food-menu-content h4 {
        font-size: 20px;
    }

    .subheading-title {
        font-size: 28px;
        text-align: center;
    }

    .review-main-cover {
    padding: 0px;
    margin: 10px;
}

      .scrolled-past-menu {
        position: fixed;
        top: 80px;
        z-index: 999;
        overflow-x: auto;
        white-space: nowrap;
        padding: 1rem 1rem 0 1rem;
        -webkit-overflow-scrolling: touch;
        background-color: white;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-tabs.cat_menu_slider{margin-bottom: 1rem !important;}

    .order-online-image {
        height: 100%;
        object-fit: cover;
    }

    .sub-page-banner {
        height: 400px;
    }

    .sub-page-banner .banner-text {
        padding-bottom: 40px;
    }

    .cart-left-details .item-text {
        width: 75%;
    }

    .banner-text {
        height: 650px;
    }

    .catering-img {
        height: 760px;
    }

    .horizontal-lines{
        display: none;
    }

    .scroll-btn{
        display: none !important;
    }
   

}

@media (max-width: 991px) {

    :root {
        --large-space: 50px;
    }

      body .two-logo-btn {
        justify-content: center;
        margin-top: 40px !important;
    }

    .sub-page-banner .banner-text-cover {
        font-size: 40px !important;
    }

    .order-online-offer h6 {
        font-size: 14px;
    }

    .order-online-offer {
        right: 10%;
        bottom: 10px;
    }

    .cart-left-details {
        margin-bottom: 20px;
    }

    .mobileSidebar .web-nav-cover {
        background-color: var(--bs-dark-color);
    }

      .scrolled-past-menu {
        top: 90px;
    }

    .mobileSidebar .navbar-links a {
        font-size: 22px;
        font-weight: 600;
        padding: 4px 0;
        text-align: center;
    }

    .mobileSidebar .navbar-links {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobileSidebar .nav-link:focus,
    .mobileSidebar .nav-link:hover {
        color: var(--bs-theme-color) !important;
    }

    .contact-info a {
        font-size: 16px;
        margin-top: 10px;
        font-weight: 500;
    }

    ul#progressbar p {
        font-size: 16px;
    }

    .track-order1 h4 {
        font-size: 20px;
    }

    .title-inner-01 {
        padding: 20px;
    }

    .title-inner-01 h2 {
        font-size: 24px;
    }

    section.trackorder-page {
        margin: 0px 0px;
    }

    ul#progressbar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .banner-text-cover {
        font-size: 36px !important;
    }

    .banner-text {
        height: 550px;
    }

    .break-text {
        display: none;
    }

    .about-right-section {
        padding-top: 5%;
    }

    .about_gradient {
        height: 400px;
        width: 40%;
        top: 2%;
    }

    .order-online-image {
        height: fit-content;
        object-fit: cover;
        margin-bottom: 30px;
    }

    .image-wrapper {
        margin-top: 30px;
    }

    .contact_cards {
        margin-top: 30px;
    }

    .newslatter-bg h2 {
        font-size: 24px;
    }

      .center-line {
        display: none; /* hide the vertical line */
    }

    .horizontal-lines {
        position: relative;
        width: 100%;
        height: 40px; /* height same as icon area */
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 40px;

    }

    /* .section-mainHeading{
        justify-content: center !important;
    }

    .about-list{
        align-items: center;
    }

    .subheading-text, .about-us-section p, .fancy-font{
        text-align: center;
    } */

    .horizontal-lines::before,
    .horizontal-lines::after {
        content: '';
        flex: 1;
        height: 1px;
        background-color: rgba(237, 30, 38, 0.25);
        margin: 0 15px; /* 15px padding on both sides */
    }

    .horizontal-lines::after {
        background-color: rgba(237, 30, 38, 0.25);
    }

    .horizontal-lines .fire-icon {
        width: 40px;
        height: 40px;
        background-image: url('../image/fire-icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: white;
        border-radius: 50%;
        z-index: 2;
}

    .about-section-row {
        --bs-gutter-y: 60px;
    }

    .catering-img {
        height: 500px;
    }

    .slick-custom-arrows {
        bottom: -20px;
    }
     .what-makes-us {
        padding: 50px 0 50px 0;
    }
    .offer-text{
width: 80%;
    display: block;
}

}

@media (max-width: 767px) {}

@media (max-width: 567px) {

    :root {
        --large-space: 50px;
        --smallspace: 50px;
        --subheading: 24px;
        --heading: 30px;
    }

    .scrolled-past-menu {
        top: 60px;
    }

   

    .order-online-offer {
        display: none !important;
    }

    .mobileSidebar .navbar-links a {
        font-size: 16px;
    }

     .subheading-title {
        font-size: 18px;
        text-align: center;
    }

    .mobileSidebar {
        max-width: 300px;
    }

    .nav-tabs.cat_menu_slider a.tab-link:hover:not(.active) {
    background: #EEE;
    color: rgba(18, 18, 18, 1);
}

    .navigation .navbar {
        padding: 0 !important;
    }

    .web-nav-cover img {
        height: 60px !important;
        padding: 10px !important;
    }

    header {
        padding: 0 10px;
        position: sticky;
        background-color: var(--bs-dark-color);
        margin-top: 0 !important;
    }

    .sub-page-banner .banner-text-cover {
        font-size: 24px !important;
    }

    header .navbar .nav-contain {
        padding: 0;
    }

    .menu-item-section {
        padding: 25px 0;
    }

    .header-main {
        padding: 0;
    }

    header.navigation.is-sticky {
        padding: 0px 10px;
        margin-top: 0;
        position: fixed;
    }

    button.menu-category-btn img {
        height: 30px;
    }

    button.menu-category-btn {
        font-size: 18px;
    }

    .sub-page-banner {
        height: 250px;
        margin-top: 15px;
    }

    .menu-subbanner{
        height: 150px;
    }

    .menu-subbanner p{
        margin: 0;
    }

    .sub-page-banner {
        padding: 0px 0 0px 0;
    }

    .contact-inner-card svg{
        width: 35px;
    }

    Footer p {
    font-size: 14px;
}

    .social-media-address {
        justify-content: start;
    }

    .cart-div img{
        width: 30px;
    }

    .cart-div span {
    width: 16px;
    height: 16px;
    right: 10px;
    top: 0px;
    font-size: 10px;
}

    .cart-page-section {
        padding: 50px 0 50px 0;
    }


    .item-inner-content-start {
        flex-direction: column;
        justify-content: start !important;
        align-items: start !important;
        gap: 10px;
    }

    .break-text{
        display: none;
    }

    .cart-left-details .item-text h5 {
    font-size: 18px;
}
.cart-left-details .item-img-box-ac {
    max-width: 80px;
    height: 60px;
    min-height: 60px;
    padding: 0 10px 0 10px;
}
.cart-left-details .item-img-box-ac img {
    max-height: 50px;
}
    .checkout-btn a {
        font-size: 16px;
    }

    .cart-left-details .item-text {
        width: 100%;
    }

    .hero-section p {
        text-align: center !important;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .catering-img {
        height: 350px;
    }


    .what-makes-vector {
        display: none;
    }

    .what-makes-us {
        padding: 50px 0 50px 0;
    }

    .about-col-img,
    .about-col-two-img {
        height: 260px;
    }

    .submenu-btn {
        text-align: center;
    }

    .submenu-btn .primary-btn {
        margin-top: 0 !important;
    }

    .hero-section {
        margin-top: 15px;
    }

    .banner-text {
        padding-bottom: 50px;
    }

    .banner-text-cover {
        font-size: 28px !important;
        text-align: center;
    }

   .banner-text {
        height: 450px;
        padding-top: 30px;
    }

    .about_gradient {
        width: 75%;
        top: 1.5%;
    }

    .about-list li {
        font-size: 16px;
    }

    .our-menu-chilli-vector {
        display: none;
    }

    .catering-satisfaction {
        left: 2%;
        bottom: -5%;
    }

    .accordion-button {
        font-size: 16px;
    }

    .slick-custom-arrows {
        bottom: -10px;
    }

    .contactus-section {
        padding: 50px 0 200px 0;
    }

    .newslatter-bg {
        margin-top: 50px;
        padding: 40px 15px;
    }

    .newslatter-bg h2 {
        font-size: 18px;
    }

    .newsInput input {
        height: 60px;
        text-align: center;
    }

    .newsInput form {
        flex-direction: row;
    }

    .newsInput button {
        padding: 10px 0px;
        border-radius: 0 5px 5px 0px;
        width: 60%;
        max-width: 70%;
        font-size: 14px;
    }

    .newsInput {
        width: 100%;
    }

    .footer .web-nav-logo img {
        width: 100px;
    }

    .our-menu-items {
        margin-top: -470px;
    }

    .our-menu {
        padding: 50px 20px;
    }
    .about-right-section {
    padding-left: 0%;
}
.contact-inner-section {
    padding: 50px 0 250px 0;
}
.about_exp h3 {
    font-size: 36px;
}
.about_exp h5 {
    font-size: 18px;
}
.food-menu_main_card{
    padding: 15px;
}
.footer-address a {
    font-size: 14px;
}
Footer a{
    font-size: 14px;
}
footer h5{
    font-size: 18px;
}
footer svg{
    width: 26px;
}
.primary_outline_btn{
    display: inline-block;
    padding: 10px 20px;
}
.contact_info_list{
    width: 50%;
}
.offer-title .h2-heading {
    font-size: 36px;
}
.offer-title {
    padding: 15px;
}
.offer-banner-img {
    padding: 20px;
}

.apply-coupen-btn {
    text-wrap: nowrap;
    display: inline-flex
;
    font-size: 13px;
    justify-content: center;
}
.map-start {
    margin-bottom: 50px;
}
.text-hidden{
    display: none !important;
}
.subbaner-heading{
    margin-bottom: 30px;
}
}

#catering_form{
    scroll-margin-top: 120px;
}