:root{
    --bs-theme-color:#591010;
    --bs-dark-color:#000;
    --bs-black-800-color:#505050;
    --bs-gray-color:#868686;
    --bs-offset-white-100-color:#E5E5E5;
    --bs-offset-white-500-color:#D9D9D9;
    --bs-light-gray-color:#EDEDED;
    --bs-white-color:#fff;
    --bs-yellow-color:#FFC700;
    --bs-light-green-color:#3FB03D;
    --bs-yellow-hover:#FFC700;
    --bs-dark-hover:#000;
    --bs-white-hover:#fff;

    --bs-yellow-active:#FFC700;
}




* {
    font-family: 'Sora';
    text-decoration: none;
}
html{scroll-behavior: smooth;}
body.stopScrolling{
    scroll-snap-type: none;
}
/* Global Css Start */
.text-WH {color: #fff;}
.text-yellow{color: #ffc107;}

p{color: #868686;}
.h2-heading,
.h4-heading{text-transform: uppercase;}
/* 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: 1px solid var(--bs-black-800-color);
}
.custom-form input,
.custom-form textarea{
    padding: 8px;
    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-yellow-color);
    text-transform: uppercase;
}
/* Form Inputs Css */
/* Blacklayer */
.blacklayer{
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000bd;
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}
.blacklayer.active{
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* Blacklayer */

.img-cover,
.innerbg{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}
.btns{
    display: flex;
    padding: 3px;
}
.btns span {
    text-decoration: none;
    display: flex;
   color: var(--bs-white-color);
   border: 1px solid var(--bs-yellow-color) ;
   padding: 5px;
   border-radius: 50px;
   position: relative;
   z-index: 0;
   transition: all 01s ease;
}
.same-btn span {border: none;}
.same-btn{
    z-index: 1;
    transition: all 01s ease;
    background: var(--bs-yellow-color);
    border-radius: 50px;
    overflow: hidden;
    text-decoration: none;
    color: var(--bs-theme-color);
    text-transform: uppercase;
    font-weight: 600;
}
 .same-btn:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--bs-white-hover);
    transition: all 01s ease;
    clip-path: ellipse(100% 40% at 49% 158%);
    color: #fff;
    border-radius: 50px;
}
 .same-btn:hover{
    color: var(--bs-dark-hover) !important;
}
 .same-btn:hover{
    background: var(--bs-white-hover);
}
 .same-btn:hover:before{
    content: '';
    clip-path: ellipse(100% 100% at 49% 60%);
}
.btns span:hover{
    border-color: var(--bs-white-hover);
    transition: all 01s ease;
}


/* Button Two css  */
.all-btn span{
    border-color: var(--bs-theme-color);
}
.all-btn .same-btn{
    background: var(--bs-theme-color) !important;
    font-weight: normal;
    color: var(--bs-white-color);
}
.all-btn .same-btn::before{
    background: var(--bs-yellow-hover) !important;
}
.all-btn .same-btn:hover{
    color: var(--bs-white-hover) !important;
}
 .all-btn .same-btn:hover{
    background: var(--bs-yellow-hover) !important;
}
 .all-btn .same-btn:hover:before{
    content: '';
    clip-path: ellipse(100% 100% at 49% 60%);
}
.all-btn span:hover{
    border-color: var(--bs-yellow-hover);
    transition: all 01s ease;
}


h4.images-title {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 18px;
    background: #591010d5;
    text-align: center;
    margin: 0;
    padding: 10px 5px;
    color: var(--bs-white-color);
    font-weight: 400;
}
.img-box-pt{
    position: relative;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
}
/* Global Css End */













/* Desk-view-Header start */
header {
    position: fixed;
    background: var(--bs-theme-color);
    z-index: 999999;
    top: 0;
    left: 0;
    height: 75px;
}
header .navbar{
    height: 100%;
}
header .navbar .nav-contain{
    height: 100%;
    padding: 0;
}
.web-nav-links .nav-link {
    font-size: 14px;
    color: var(--bs-white-color);
    margin: 0 10px;
    font-weight: 500;
    transition: all 0.4s ease;
    /* overflow: hidden; */
    position: relative;
    text-transform: uppercase;
}
.dropdown-item:focus, .dropdown-item:hover{
    color: var(--bs-white-color)!important;
    background: var(--bs-theme-color);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--bs-yellow-color);
}
.web-nav-links .nav-link:hover {
    color: var(--bs-yellow-hover);
    transition: all 0.4s ease;
}
.web-nav-links .nav-link.active {color: var(--bs-yellow-active);}

.web-nav-links .dropdown-item.active, .web-nav-links .dropdown-item:active{
    color: var(--bs-white-color);
    background: var(--bs-theme-color);
}
.navigation.hide {
    top: -80px;
    transition: all 0.4s ease;
}
.social-media-header a{
    color: var(--bs-white-color);
}
.social-media-header a:hover{
    color: var(--bs-yellow-hover);
}
.social-media-header {
    height: 100%;
    /* background: aliceblue; */
    display: flex;
    align-items: center;
}
.reservation-btn {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--bs-yellow-color);
    color: var(--bs-theme-color) !important;
    transition: all 0.4s ease;
    font-weight: 600;
    text-wrap: nowrap;
    
}
    .reservation-btn:hover{
        background: var(--bs-white-hover);
        color: var(--bs-theme-color);
    }
.web-nav-cover{
    position: relative;
    width: 30%;
    height: 100%;
}
.web-nav-cover .web-nav-logo{
    position: absolute;
    top: 0px;
    width: 250px;
    height: 101px;
    background: var(--bs-white-color);
    clip-path: polygon(0 0, 100% 0%, 100% 74%, 50% 100%, 0 74%);
    left: 0%;
    /* transform: translate(-50%, 0px); */
}
header .dropdown-menu li:first-child{margin-left: 0 !important;}
.web-nav-cover .web-nav-logo img {
    margin-top: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0 20px;
}
.cart-div{
    position: relative;
}
.cart-div .nav-link{padding: 4px;}
.cart-div i{font-size: 18px;}
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 span{
    position: absolute;
    top: 0;
    background: var(--bs-yellow-color);
    display: flex;
    width: 18px;
    height: 18px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    left: 18px;
    font-size: 12px;
    color: var(--bs-dark-color);
}
/* Desk-view-Header End */
/* Mobile Sidebar Satrt */
.mobileSidebar{
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -100%;
    max-width: 300px;
    height: 100vh;
    background: var(--bs-theme-color);
    transition: all 0.4s ease;
}
.mobileSidebar.mobileSidebarShow {right: 0; transition: all 0.4s ease;}
.mobileSidebarClose {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    padding: 0;
    animation: crossRotate 8s ease infinite;
}
.nav-link:focus, .nav-link:hover{
    color: var(--bs-white-color);
}
@keyframes crossRotate {
    /* 0%{transform: rotate(-90deg);} */
    100%{transform: rotate(360deg);}
}
.mobileSidebar .navbar-links li:first-child{margin-bottom: 10px;}
.mobileSidebar .navbar-links .nav-link{
    padding:6px 16px ;
    transition: all 0.4s ease;
}
.mobileSidebar .navbar-links .nav-link:hover{
    color: var(--bs-yellow-hover);
    padding: 6px 16px 6px 30px ;
    transition: all 0.4s ease;
}
.mobileSidebar .navbar-links .nav-link.active{
    color: var(--bs-yellow-active);    
    padding: 6px 16px 6px 30px;
    transition: all 0.4s ease;
    text-transform: uppercase;}

.dropdown-menu{background: var(--bs-theme-color);padding: 10px;}
    .dropdown-item.active, 
    .dropdown-item:active{
        background: transparent;
        color:var(--bs-yellow-active);
    }
    .dropdown-item{color: var(--bs-white-color); text-transform: uppercase;}
    .mobileSidebar .dropdown-item{color: var(--bs-white-color); text-transform: uppercase; font-size: 13px;padding: 0px ;}
    .dropdown-item:hover{color:var(--bs-yellow-hover) !important;}
    .mobileSidebar .dropdown-menu {
        padding: 0 20px !important;
        border: none;
    }

/* Mobile Sidebar End */
/* Footer Start  */ 
Footer {
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    /* margin-top: 500px; */

}
Footer .container{
    padding-top: 200px;
}
Footer .web-nav-cover{
    position: absolute;
    left: 0;
    top: 0;
    padding:0;
    height: 120px;
    width: 23%;
}
Footer .web-nav-cover .web-nav-logo{top: -1px;}
Footer h5{
    margin-bottom: 30px;
    text-transform: uppercase;
}
Footer a {
    color: var(--bs-white-color);
    font-size: 14px;
    display: flex;
    margin-bottom: 10px;
}
Footer .footer-link{text-transform: uppercase;}
Footer a svg{width: 18px;}
Footer a:hover{
    color: var(--bs-yellow-hover);
}
/* footer .custom-form {
    padding: 0 50px 0 0;
} */

.address-map iframe{
    border-radius: 15px;
}
.time-hrs{margin-bottom: 12px;font-size: 14px; text-transform: uppercase;}
/* Footer Start  */
main {
    position: relative;
    overflow: hidden;
}


/* Hero Section  Start */
.hero-section{
    /* background-image: url(../images/bg-banner.webp); */
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-section .slider{
    position: absolute;
    width: 100%;
    height: 100%;
}
.hero-section .slider::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000034;
    z-index: 1;
}
.banner-text{
    position: relative;
    z-index: 5;

}
.banner-text h1{
    font-weight: 600;
    text-shadow:0px  6px 7px #000;
}
.slick-list.draggable,
.slick-track{
    height: 100%;
}
.slider .slick-slide img{
    object-fit: cover;
}
 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;
    
}
 ul.slick-dots li{
    font-size: 0;
    height: 20px;
    width: 20px;
    border-radius: 30px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
 ul.slick-dots li button {
    font-size: 0;
    height: 12px;
    width: 10px;
    border-radius: 30px;
    border:none;
    background: var(--bs-white-color);
}
.slider ul.slick-dots li.slick-active{
    border: 1px solid var(--bs-yellow-active);
}
.slider ul.slick-dots li.slick-active button{
    background: var(--bs-yellow-active);
}
/* Hero Section  End */
/* AboutUs Section start */
.about-section,
.menu-section{
    padding: 80px 0 ;
}

/* Menu Section Start  */
.menu-section{
    background: var(--bs-light-gray-color);
    padding: 80px 0 0;
}
.bar-menu-row{margin-top: 30px;}

.menu-section.all-dots .slick-slide{
    padding:0 10px; 
    /* max-height: 317px; */
    height: 350px !important;
    position: relative;
    overflow: hidden;
}
.all-dots .slick-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}
.all-dots ul.slick-dots{
    bottom: -40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
}
.all-dots ul.slick-dots li{
    border: none;
}
.all-dots ul.slick-dots li button{
    background: var(--bs-gray-color);
}

.all-dots ul.slick-dots li.slick-active button{
    background: var(--bs-theme-color);
}
.menu-text-content{
    padding: 120px 50px;
    z-index: 0;
}
.menu-item-icon{
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: -1;
    /* width: 300px; */
    
}
.menu-item-icon img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.food-menu .menu-item-icon{
    right: 20px;
    left: unset;
}

/* Special Menu Section Start  */
.special-menu-section{
    padding: 80px 0;
    background-image: url(../images/special-menu-bg.webp);
    position: relative;
    z-index: 0;
}
.special-menu-section::after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000b9;
    z-index: -1;
}

/* Gallery Section start  */
.galley-section{
    padding: 80px 0 0;
}
.galley-section .img-box {
    width: 100%;
    height: 100%;
    padding: 5px;
    max-height: 300px;
    position: relative;
}
.galley-section .img-box a {
    height: 100%;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.galley-section .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.galley-section .gallery-row{
    padding: 0 10px;
}
.galley-section .gallery-row>div {
    padding: 0;
}

.glightbox-clean .gdesc-inner {
    padding: 0!important;
}
 .glightbox-clean .gslide-title {
    margin: 0 !important;
    padding: 10px !important;
    text-align: center;
    font-size: 20px !important;
    text-transform: capitalize;
    background: var(--bs-theme-color);
    color: var(--bs-yellow-color) !important;
}
.glightbox-container .ginner-container {
    display: grid !important;
    align-items: center !important;
    align-content: center !important;
}
.glightbox-mobile .glightbox-container .gslide-description {
    position: relative !important;
    padding: 0 !important;
   
}
/* Testimonials Section Start  */
.testimonial-section{
    padding: 80px 0 150px;
}
.google-description-row ul{
    color: #ffc107;
}
.testimonial-section .slick-track{display: flex;}
.testimonial-section .slick-slide{height: auto; padding: 7px;}
.review-box{
    padding: 30px;
    border: 1px solid var(--bs-light-gray-color);
    background: var(--bs-light-gray-color);
    border-radius: 15px;
    height: 100%;
    margin: 0px;
    padding: 20px;
}

.google-review-row{
    margin-top: 50px;
    width: 100%;
    height: 100%;
}

.review-box h4{font-size: 20px;}
.review-box ul{
    color: #ffc107;
    gap: 3px;
}


/*About Page Start*/
.innerbg {
    height: 326px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    padding: 74px 0 0;
}
.menu-bg.food {background-image: url(../images/banner-food.png);}
.menu-bg.bar{background-image: url(../images/banner-drink.png);}
.cart-bg {background-image: url(../images/banner-catering.png);}
.catering-bg {background-image: url(../images/banner-catering.png);}
.reservation-bg {background-image: url(../images/banner-reservation.png) !important;}
.about-bg {background-image: url(../images/about-banner-bg.webp) !important;}
.special-menu-bg {background-image: url(../images/banner-food.png);}
.contact-bg {background-image: url(../images/banner-reservation.png);}
.title-inner h1 {
    background: var(--bs-theme-color);
    display: inline-block;
    float: right;
    color: var(--bs-white-color);
    padding: 18px 55px 16px;
    border-radius: 100px;
    text-transform: uppercase;
}
.img-hover img {
    width: 86px;
    height: 500px;
    object-fit: cover;
    margin: 0 2px;
	transition: 0.8s;
	border-radius: 10px;
}
.img-hover {
    overflow: hidden;
}
img.active {
   width: calc(100% - 185px) !important;
   transition: 0.8s;
}
section.our-section {
    background: #EDEDED;
    padding: 70px 0;
}
/*About Page END*/
/*Contact-Page Start*/
section.our-section {
    background: #EDEDED;
    padding: 70px 0;
}
section.conta-mt {
    margin: 80px 0;
}

 /* .addres1 {
    padding: 17px;
} */
form.form-contact {
    background: #EDEDED;
    padding: 18px;
    height: 100%;
    border-radius: 33px;
}

form.form-contact input, textarea.form-control {
    background-color: #D9D9D9;
    padding: 12px;
    margin: 14px 0;
}
form.form-contact input:focus,
form.form-contact textarea:focus{
box-shadow: none;
border: 1px solid var(--bs-gray-color);
}
.addres1 {
    padding:0 8px;
}
.addres1 a {
    color: var(--bs-theme-color);
    text-decoration: none;
    font-size: 18px;
}
form.form-contact {
    background: #EDEDED;
    padding: 17px;
}

.addres1 i {
    width: 45px;
    height: 45px;
    display: flex;
    text-align: center;
    margin: 0;
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    font-size: 24px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.addres1 .row {
    background: #EDEDED;
    margin-bottom: 14px;
    padding: 11px 3px;
    border-radius: 9px;
}
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-white-color);
    padding: 10px 40px;
    border-radius: 100px;
} */
/*Contact-Page Start*/




/*Menu Page Css Start*/
.menu-item-section{
    padding: 80px 0;
}
.tab-link {
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 9px 20px;
    border-radius: 100px;
    border: none;
    text-transform: uppercase;
    text-wrap: nowrap;
}

.tab-link:hover{
	  background: var(--bs-theme-color);
  color: var(--bs-white-color);
  transition:0.4s;
}
.menu-tabs {
    margin: 0px 0;
}
.side-tabe ul {
    padding: 7px 20px;
    border: none;
    background: #EDEDED;
    border-radius: 100px;
}
.side-tabe ul li {
    display: flex !important;
    align-items: center;
    margin: 0 2px;
}

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

  .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-title {
    margin: 18px 0;
    display: none;
}

  .menu-item-card{
    background: var(--bs-light-gray-color);
    padding: 15px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .item-text h5{
        margin: 11px 0 2px 0;
        font-size: 18px;
  }
  .item-text p{
    font-size: 14px;
  }

/* Manu item Button css Start */
.add-item-btn, .not_orderable{
    width: 100%;
    border: none;
    height: 32px;
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    border-radius: 50px;
    /* position: absolute; */
    transition: all 0.4s ease;
}
.add-item-btn:hover{
    background: var(--bs-yellow-hover);
    /* color: var(--bs-dark-hover); */
}
.not_orderable{pointer-events: none;}
.not_orderable:hover{background: var(--bs-theme-color);}
.add-item-btn.hidden{
    position: absolute;
    z-index: -1;
    transition: all 0.4s ease;
    
}

.not_orderable
{
    width: 50% !important;
    font-size: 13px;
    color: var(--bs-white-color) !important;
    cursor: default !important;
}

@media (max-width:1432px)
{
    .not_orderable
    {
        width: 60% !important;
    }
}

@media (max-width:768px)
{
    .not_orderable
    {
        width: 50% !important;
    }
}

@media (max-width:368px)
{
    .not_orderable
    {
        width: 60% !important;
        font-size: 12px;
    }
}

.itme-btn-fuction{
    position: relative;
    overflow: hidden;
}
.qty-btns{
    display: flex;
    flex-wrap: nowrap;
    border-radius: 50px;
    overflow: hidden;
}
.qty-btns button{
    background: var(--bs-theme-color);
    color: var(--bs-white-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btns button i{display: flex;}
.qty-btns button:hover{
    background: var(--bs-yellow-hover);
    /* color: var(--bs-dark-hover); */
}
.qty-btns button,
.qty-btns input{
    width: 40px;
    height: 30px;
    border: none;
    outline: none;
    text-align: center;
}
.qty-btns input{
    pointer-events: none;
}
.item-content-box-ac {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.BarMenu-panel .item-content-box-ac .item-text h5{color: var(--bs-theme-color);}
/* Menu modal pupup  */
.food-Modal-popup .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;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
}
.food-Modal-popup .modal-header button i::before{font-weight: 800 !important;}
.food-Modal-popup .modal-header .modal-title{color: var(--bs-theme-color);}
.food-Modal-popup .input-number{background: var(--bs-light-gray-color);}
.food-Modal-popup .item-price h5{color: var(--bs-theme-color);}
.label-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
    background: var(--bs-light-gray-color);
    color: var(--bs-gray-color);
}
.label-text i{
    height: 20px;
    width: 20px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    color: var(--bs-gray-color);
}
.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); } 

/* Menu Page Css End*/

/* Gallery Page Css  */
.gallery-page{ margin-bottom: 80px;}
/* Cart Page Css Start  */
.cart-page-section{padding: 80px 0;}
/* Cart Left Div  Start*/
.cart-left-details h2{
    background: var(--bs-light-gray-color);
    padding: 10px 20px;
    border-radius: 10px;
    /* text-transform: uppercase; */
    color: var(--bs-theme-color);
}
.cart-left-details .item-gap{margin-bottom: 8px;}
.cart-left-details .item-img-box-ac img{object-fit: cover;}
.cart-left-details .item-img-box-ac {
    max-width: 130px;
    height: 100%;
    padding: 0 17px 0 12px;
 
}
.cart-left-details .item-text h5 {margin: 0px 0 2px 0;padding: 0 20px 0 0;font-size: 18px;}
.item-price h5 {font-size: 18px;}
.cart-left-details .cart-left-details .item-text  p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 2px;
}
.cart-left-details .item-text{padding-right: 30px;}
.cart-left-details .item-text p{
    margin-bottom: 2px;
    font-size: 12px;
}
.item-remove-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 5;
}
.item-remove-btn button{
    background: var(--bs-offset-white-500-color) ;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-remove-btn button:hover{background: var(--bs-theme-color);}
.item-remove-btn button i{color: var(--bs-theme-color); display: flex;}
.item-remove-btn button:hover i{color: var(--bs-white-color);}
span.coupen-btns a {
    text-decoration: none;
    font-size: 8px;
    color: #fff;
    background: red;
    border-radius: 20px;
    padding: 2px 5px;
}
.no-img-item{width: 100% !important;}

/* Cart Left Div  End*/
/* Cart Right Div  Start*/
.cart-items-details{
    background: var(--bs-light-gray-color);
    padding: 10px 10px 30px;
    border-radius: 10px;
    position: sticky;
    top: 140px;
}
.cart-right-row h2{color: var(--bs-theme-color); padding: 10px 0;}
.tips-row {flex-wrap: nowrap;margin-bottom: 24px;padding: 0 12px; position: relative;}
.tips-boxs {
    display: flex;
    /* width: auto; */
    justify-content: start;
    padding: 0;
}
.tips-boxs input[type="radio"]:checked+label{  color: var(--bs-white-color); background: var(--bs-theme-color); } 
.tips-boxs label:first-child{
    color: var(--bs-theme-color) !important;
    font-size: 14px;
}
.tips-boxs label {
    background: var(--bs-offset-white-500-color);
    color: var(--bs-black-800-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    text-align: center;
    margin: 0;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 5px;
    padding: 0 20px;
}
.tips-boxs input {width: 0;}
.tips-row .form-control{
    width: 100%;
    background: var(--bs-offset-white-500-color);
}
.item-price-box li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    background: var(--bs-offset-white-100-color);
    margin-bottom: 5px;
    border-radius: 5px;
}
span.coupen-btns button {
    border: navajowhite;
    font-size: 10px;
    background: red;
    color: #fff;
    border-radius: 30px;
}
.item-price-box  h6{
    margin: 0;
    color: var(--bs-black-800-color);
    /* text-wrap: nowrap; */
}
.item-price-box h6:last-child {
    width: 100px;
}
.item-price-box li:last-child h6{color: var(--bs-dark-color);}
.discount-row h6 i{
    transform: rotate(30deg);
    display: inline-block;
    color: var(--bs-gray-color);
}
.discount-row h6 small{
    color: var(--bs-gray-color);
    font-size: 12px;
}
.specail-text textarea{
    background: var(--bs-white-color);
    height: 100px;
    margin: 6px 0 !important;
}

.specail-text h6{margin-top: 10px;}
.add-coupen-box{
    justify-content: start;
    display: flex;
    margin-bottom: 20px;
    gap:10px;
}
.add-coupen-box span{
    display: inline-flex;
    border: 2px dashed var(--bs-black-800-color);
    padding: 0 10px 0 0;
    align-items: center;
    border-radius: 5px;
    background: var(--bs-offset-white-500-color);
    width: -webkit-fill-available;
    position: relative;
}
.add-coupen-box span .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: var(--bs-form-invalid-color);
    position: absolute;
    bottom: -24px;
    font-size: 13px;
}
.add-coupen-box span i{
    transform: rotate(30deg);
    display: inline-block;
}
.apply-coupen-btn{
    padding: 10px 10px;
    border: none;
    background: var(--bs-light-green-color);
    color: var(--bs-white-color);
    border-radius: 5px;
    text-wrap: nowrap;
    min-width: 145px;
}
.apply-coupen-btn span{border: none; background: transparent; padding: 0;}
/* Cart Right Div  End*/
/* Cart Page Css End  */
#contact_us_form_footer label {
    font-size: 10px;
    position: relative !important;
    top: -8px !important;
    display:block !important;
}
/* Checkout Page Css Start */
.checkout-left-details {
    padding: 12px 12px 30px;
    background: var(--bs-light-gray-color);
    border-radius: 10px;
}
.cart-items-details h3{
    display: inline-flex;
    background: var(--bs-offset-white-500-color);
    padding: 3px 16px 1px 6px;
    border-radius: 30px;
    transition: all 0.4s ease;
}
.cart-items-details h3:hover{background: var(--bs-yellow-hover);transition: all 0.4s ease;}
.cart-items-details h3:hover a{color: var(--bs-white-hover);transition: all 0.4s ease;}
.cart-items-details h3 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 h3 a i{
    font-size: 30px;
    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-theme-color);
    color: var(--bs-white-color) !important;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    margin-right: 5px;
}
.checkout-left-details h4{color: var(--bs-theme-color);}
/* Checkout Page Css End */


/*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;
    background: #ffffff;
    position: relative;
    z-index: 0;
}
img.select {
    display: none;
    transition: 0.3s;
}
ul#progressbar p {
    margin-top: 10px;
    color: var(--bs-dark-color);
}
li.active img.unselect {
    display: none;
    transition: 0.3s;
}
li.active .proces-img:after {
    background: var(--green);
    transition: 0.4s;
}
.proces-img:after {
    content: "";
     background: var(--bs-theme-color);
    height: 2px;
    display: block;
    position: absolute;
    top: 32%;
    left: 63%;
    width: 74%;
    margin: auto;
    z-index: -1;
}

.proces-img.last-broder:after {
    display: none;
}
.proces-img:last-child:after {
    display: none;
}
li.active .proces-img:after {
    background: #6cb62a;
    transition: 0.4s;
}
.track-order1 {
    max-width: 100%;
    background: var(--bs-theme-color);
    padding: 20px 23px 20px;
    margin: auto;
    border-radius: 10px;
}
.track-order1 h4, .track-order1 p {
    text-align: center;
}
.track-order1 p {
    color: #e3e3e3;
    margin: 0;
}
.track-order1 h4 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

section.trackorder-page {
    margin: 40px 0px;
}
/*Track order Css End*/
/* Daily Specials Page Css Start  */
.daily-info-section{
    padding: 80px 0;
    background: var(--bs-light-gray-color);
}
.bg-light-gray{
    background: var(--bs-light-gray-color);
}
.daily-img-height{
    height: 500px;
}
.daily-img-height img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.daily-specials-section .daily-container{
    padding: 0 24px;
}
.daily-specials-section h4{font-size: 40px; text-transform: uppercase;}
.daily-specials-section .btns{
    margin-top: 30px;
}
.daily-specials-section hr{
    width: 100px;
    margin: 0 auto 20px;
    height: 2px;
    background: var(--bs-theme-color);
    color: var(--bs-theme-color);
    opacity: 1;
}
/* Daily Specials Page Css End  */
/* Catering Page Css Start  */
.catering-section-a{
    padding: 80px 0;
}
.catering-section-b{
    background: var(--bs-light-gray-color);
    padding: 80px 0;
}
.catering-right-img{
    position: relative;
}
.catering-right-img img:first-child{height: 525px;}
.catering-right-img img{
    height: 100%;
    object-fit: cover;
    width: 70%;
    border-radius: 20px;
}
.catering-right-img .catering-short-img{
    height: 400px;
    width: 300px;
    display: inline-block;
    position: absolute;
    left: 10%;
    bottom: 10%;
    border-radius: 20px;
    border: 7px solid var(--bs-white-color);
}
.catering-form{
    margin-top: -150px;
    background: var(--bs-theme-color);
    border-radius: 20px;
    padding-bottom: 20px;
}
.catering-form .form-contact{background: transparent;}
.catering-form .form-contact input,
.catering-form .form-contact textarea{background: var(--bs-white-color);}
.condition-text{
    color: var(--bs-white-color);
    font-size: 12px;
}
/* Catering Page Css End  */
/* Reservation Page Css Start  */
.reservation-section-b {
    padding-bottom: 80px;
}
.reservation-section-b .reservation-slider{padding: 0;}
.reservation-section-b .reservation-slider ul.slick-dots {
    width: 100%;
    padding: 0;
}
.reservation-section-b .reservation-slider img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.reservation-section-b form.form-contact input,
.reservation-section-b form.form-contact textarea{
    background: var(--bs-white-color);
}
.reservation-section-b form.form-contact .condition-text{color: var(--bs-dark-color);}
.reservation-form-bg{
    background: var(--bs-light-gray-color);
    border-radius: 20px;
    overflow: hidden;
    margin: 0;
    
}
.reservation-section-b li.slick-active {
    background: var(--bs-theme-color);
}
/* .reservation-section-b .reservation-slider .slick-slide {
    transform: scale(1);
    transition: all 0.4s ease;
}
.reservation-section-b .reservation-slider .slick-slide.slick-current.slick-active{
    transform: scale(1.2);
    transition: all 0.4s ease;
} */
/* Reservation Page Css End  */
.menu-page-items-popup{
    z-index: 9999999;
}
.menu-page-items-popup .modal-dialog {
    height: auto;
}
.modal-dialog-scrollable .modal-content {
    height: 100% !important; 
    overflow: hidden;
    position: relative;
}
.food-Modal-popup  .modal-body {
    overflow-y: auto;
    max-height: 350px;
    /* height: calc(100% - 135px) !important; */
}
#food-modal-data {
    height: 100% !important;
    display: flex;
    flex-direction: column;
}
form#add_to_cart_form {
    height: 100%;
}

.cart-left-details .item-text {
    margin-bottom: 10px;
}
ul.dropdown-menu {
    font-size: 14px;
}

@media (max-width:1280px) {
    .web-nav-links li:first-child{margin-left: 16px;}
    .web-nav-links .nav-link{margin: 0 0 0 8px; font-size: 12px;}
    ul.dropdown-menu {
        font-size: 12px;
    }
}


@media (max-width:1200px) {
    /* .web-nav-cover{width: 40%;} */
    .web-nav-links .nav-link{margin: 0 0;}
    .web-nav-cover {
        position: relative;
        width: 45%;
    }
    /* Track Order Page Css Start  */
    section.trackorder-page .container {
        max-width: 100%;
    }
    ul#progressbar p {
        font-size: 16px;
    }
     /* Track Order Page Css Start  */
}
@media (max-width:1194px) {
    Footer .web-nav-cover{
        width: 30%;
    }
}
@media (max-width:1104px) {
    Footer .web-nav-cover{
        width: 30%;
    }
    /* footer .custom-form {
        padding: 0 50px 0 0;
    } */
    .web-nav-links .nav-link{font-size: 12px;padding: 4px;}
}


@media (max-width:1025px) {
    Footer .web-nav-cover {
        width: 30% !important;
    }
        .bar-menu-row,
        .food-menu-row{
            background: var(--bs-white-color);
        }
        .galley-section {
            padding: 80px 0 0;
        }
        .food-menu-row{padding-bottom: 30px;}
        /* .reservation-bg{
            height: 100%;
        } */
        .reservation-section-b .reservation-slider{
            height: auto;
        }
        
      
        
}

@media (max-width:995px) {
    /* .web-nav-cover{width: unset;} */

    .web-nav-cover {
        position: absolute;
        width: 30%;
        top: -1px;
        left: 50%;
        transform: translate(-50%, 0px);

    }
    Footer .web-nav-cover{
        left: 50%;
        transform: translate(-50%, 0px);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
}
@media (max-width:885px),(max-width:1280px) {
    
    
}
@media (max-width:885px){
    /* .reservation-bg{height: auto;} */
    .cart-items-details{margin-top: 30px; padding:30px 15px;}
    .track-order1 h4 {font-size: 18px;}
    footer .web-nav-cover{
        position: absolute;
        width: 100% !important;
    }
    .web-nav-cover .web-nav-logo{
        position: absolute;
        top: 0px;
        left: 50%;
        transform: translate(-50%, 0px);
    }
    .catering-form {
        margin-top: 0px;}
    header .navbar .nav-contain {
        height: 100%;
        padding: 10px;
    }
}
@media (max-width:769px) {
    .web-nav-cover {
        position: absolute;
        width: 210px;
    }
    .web-nav-cover .web-nav-logo {
    position: absolute;
    top: 0px;
    width: 210px;
    height: 100px;
    border-bottom-right-radius:0;
    border-bottom-left-radius:0;
    }
    Footer .container{padding-top: 150px;}
    .hero-section{height: 500px;}
    .menu-item-icon{
        height: 300px;
    }
    /* Cart Right Div  */
    .cart-left-details {margin-bottom: 35px;}

    /* Track Order Page Css Start  */
    .track-order1 .d-flex {display: block !important;}
    #progressbar li {
        width: 100%;
        float: unset;
        display: flex;
        gap: 20px;
        align-items: center;
        margin-bottom: 20px;
    }
    .track-order1 .order-text {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    ul#progressbar p {font-size: 17px;}
    .proces-img:after{display:none;}
    ul#progressbar {
        display: block !important;
        max-width: 280px;
        margin: auto;
    }
    .proces-img img {width: 70px;}
    .track-order1 {padding: 17px 10px 17px;}
    .track-order1 h4 {
        font-size: 17px;
        margin: 7px 0;
    }
    .track-order1 p {font-size: 15px;}
     /* Track Order Page Css End  */
     .tab-link:hover{
        background: transparent;
        color: #000;
     }
}
@media (max-width:650px){
    .h2-heading{font-size: 22px;}
     /* Track Order Page Css Start  */
    .track-order1 .order-text {
        justify-content: space-between;
        align-items: center;
        display: flex !important;
    }

    ul.slick-dots{bottom: 0;}
    h4.images-title{font-size: 12px;}
     /* Track Order Page Css End  */
    .about-section .h2-heading{
        margin-top: 10px;
    }
/* Daily Specials Page Css Start  */
    .daily-specials-section .daily-container {
        padding: unset;
    }
    .daily-img-height{
        height: 400px;
    }
    .daily-specials-section ul li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .daily-col-reverse{
        flex-direction: column-reverse;
        padding:30px 12px 30px 12px;
    }
    .daily-col-start>div:first-child,
    .daily-col-reverse>div:last-child{
        padding:0 12px !important;
    }
    .daily-col-start{padding: 30px 12px 30px 12px;}
    .daily-specials-section h4{
        margin-top: 20px;
        font-size: 25px;
    }
    .daily-img-height img{border-radius: 15px;}

    /* Daily Specials Page Css End  */
    form.form-contact{border-radius: 10px;}
    section.conta-mt .btns {
        justify-content: center;
    }
    .side-tabe {
        padding: 0;
    }
    header .navbar{padding: 0 !important;}

    /* About Us Page Css  */
    /* Catering Page Css start */
    .catering-section-b{margin-top: 80px;}
    .catering-right-img img{
        width: 100%;
        border-radius: 10px;
    }
    .catering-right-img .catering-short-img {
        height: 325px;
        left: 50%;
        transform: translate(-50%, 0px);
        bottom: -12%;
        border-radius: 17px;
    }
    .catering-form {
        background: transparent;
        margin-top: 0;
    }
    .catering-form .form-contact {
        background: var(--bs-theme-color);
    }
    /* Catering Page Css End */
    form.form-contact input, textarea.form-control{margin: 4px 0;}
    footer .custom-form {padding: 0;}

    /* Reservation Page Css  */
    .reservation-section-b form.form-contact{
        padding: 20px 0;
    }
    .menu-item-section .item-img-box-ac {
        height: 100% !important;
        padding: 0 12px;
        width: 40%;
        min-height: 100% !important;
        max-height: 80px;
    }
    .reservation-btn {
        padding: 4px 8px;font-size: 12px;}
        .copyright-text{
            font-size: 12px;
            padding: 5px 30px;
        }
        

}

@media (max-width:432px){
    .form-control::placeholder {font-size: 12px;}
    .same-btn{padding: 10px 35px !important;}
    p{text-align: justify !important;}
    .about-section, 
    .menu-section ,
    .special-menu-section,
    .menu-item-section ,
    .cart-page-section,
    .galley-section,
    .our-section,
    .catering-section-a,
    .catering-section-b{
        padding: 40px 0 !important;
    }
    .catering-section-a {padding: 40px 0 0 !important;}
    .title-inner h1 {
        padding: 20px 30px;
        font-size: 28px;
    }
    .catering-right-img .catering-short-img {
        height: 235px;
        width: 235px;
    }

    .menu-section, 
    .galley-section{padding: 40px 0 0 !important;}
    .gallery-page{ margin-bottom: 40px;}
    /* .about-section, .menu-section {
        padding: 40px 0;
    } */
    .menu-text-content {
        padding: 40px 22px 0 !important;
    }
    .food-menu-row .menu-text-content  {
        padding: 0px 22px 0 !important;
    }
    .testimonial-section {
        padding: 40px 0 80px;
    }
    .google-review-row{margin-top: 20px;}
    .food-menu-row {
        padding-bottom: 0px;
    }
    .item-remove-btn {
        right: 2px;
        top: 2px;
    }
    
    .cart-left-details .item-text {
        padding-right: 0px;
        margin-bottom: 5px;
    }
    .item-remove-btn button{background: transparent;}
    .item-remove-btn button:hover{background: transparent;}
    .item-remove-btn button i{color: var(--bs-dark-color); display: flex;}
    .item-remove-btn button:hover i{color: var(--bs-theme-color);}
    .cart-left-details .item-img-box-ac{padding: 0 12px 0 12px;}
    .checkout-left-details{margin-bottom: 20px; }


/* Menu Page Css Start */
    .title-inner{text-align: center;}
    .title-inner h1{float: unset;}
    .innerbg {
        height: 235px;
        padding: 65px 0 0;
    }
    .side-tabe ul {
        padding: 7px 0px;
        border-radius: 0;
    }
    .menu-title {margin: 0px 0;}
    .menu-item-card{
        padding: 8px; 
        /* min-height: 135px; */
    }
    .item-gap{margin-bottom: 10px;}
    .menu-item-card {
        flex-direction: row;
        gap: 9px;
        align-items: self-start;
    }
    .menu-item-card h5{font-size: 16px;}
    .item-text h5 { margin: 0px 0 2px 0;}
    .item-text p {
        font-size: 12px;
        line-height: 14px;
        text-align: left !important;
        margin-bottom: 5px;
    }
    .item-img-box-ac img {
        object-fit: cover;
        padding: 0;
        border-radius: 10px;
    }
    .item-img-box-ac {
        height: 100%;
        padding: 0 12px;
        width: 30%;
    }
    .item-content-box-ac{width: 100%;}
    .BarMenu-panel .item-content-box-ac{width:100%;}

/* Menu Page Css Start */

.cart-left-details .item-text p {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 2px;
}
/* Menu Page button Css Start */
.add-item-btn{height: 25px;}
.qty-btns button, .qty-btns input{height: 25px;}
/* Menu Page button Css End */
    .web-nav-cover .web-nav-logo {
        position: absolute;
        top: 0px;
        width: 160px;
        height: 75px;
    }
    .web-nav-cover{
        width: 160px;
    }
    header{
        height: 55px;
    }
    Footer .container{
        padding-top: 100px;
    }
    .menu-text-content { padding: 40px 22px;}
    .bar-menu-row h4.h4-heading {
        display: flex;
        align-items: baseline;
    }
    .food-menu-row h4.h4-heading {
        justify-content: end;
    }
    .menu-item-icon img{
        display: none;
    }
    .galley-section .img-box img{border-radius: 10px;}
    .galley-section .img-box{padding: 4px;}
    .img-hover {
        flex-direction: column;
    }
    .img-hover img{
        height: 120px;
        width: 100% !important;
        margin-bottom: 10px;
    }
    .img-hover img.active{
        height:calc(600px - 160px);
    }
    section.conta-mt{
        margin: 40px 0;
    }
    .track-order1 p {
        font-size: 17px;
    }
    .web-nav-cover .web-nav-logo img {
        margin-top: auto;
        max-width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0 10px;
    }
    .daily-specials-section  p {
        text-align: center !important;
    }
}
@media (max-width: 390px) {
    .social-media-header ul {
        gap: 7px !important;
        font-size: 20px;
    }
    .web-nav-cover .web-nav-logo {
        position: absolute;
        top: 0px;
        width: 100px;
        height: 48px;
        left: 50%;
        transform: translate(-50%, 0px);
    }
    .track-order1 h4 {
        font-size: 12px;
        margin: 8px 0;
    }
    .track-order1 p {
        font-size: 14px;
    }
	label.label-text {
    font-size: 13px;
}
	.label-text i{font-size:20px;}
    .item-price-box h6:last-child {
        width: 100px;
        text-wrap: nowrap;
        text-align: end;

    }
    .item-price-box h6{font-size: 13px;}
    .item-price-box li{
        padding: 8px 4px;
    }
    .cart-items-details {
        padding: 30px 10px;
    }
    .apply-coupen-btn {
        padding: 10px 1px;
        min-width: 100px;
        font-size: 12px;
    }
}
