* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.eot');
    src: url('../fonts/Manrope-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-SemiBold.woff') format('woff'),
        url('../fonts/Manrope-SemiBold.ttf') format('truetype'),
        url('../fonts/Manrope-SemiBold.svg#Manrope-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.eot');
    src: url('../fonts/Manrope-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Light.woff') format('woff'),
        url('../fonts/Manrope-Light.ttf') format('truetype'),
        url('../fonts/Manrope-Light.svg#Manrope-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.eot');
    src: url('../fonts/Manrope-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Bold.woff') format('woff'),
        url('../fonts/Manrope-Bold.ttf') format('truetype'),
        url('../fonts/Manrope-Bold.svg#Manrope-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.eot');
    src: url('../fonts/Manrope-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Medium.woff') format('woff'),
        url('../fonts/Manrope-Medium.ttf') format('truetype'),
        url('../fonts/Manrope-Medium.svg#Manrope-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.eot');
    src: url('../fonts/Manrope-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Manrope-Regular.woff') format('woff'),
        url('../fonts/Manrope-Regular.ttf') format('truetype'),
        url('../fonts/Manrope-Regular.svg#Manrope-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Loader*/
.spinner-fixed {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
}

.spinner {
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    -webkit-animation: spinner-ease 2s infinite;
    animation: spinner-ease 2s infinite;
}

@-webkit-keyframes spinner-ease {
    0% {
        transform: rotateX(0deg);
    }

    7.5% {
        background-color: #FFFCF8;
    }

    7.51% {
        background-color: #E7932A;
    }

    25% {
        transform: rotateX(180deg);
    }

    32.5% {
        background-color: #FFFCF8;
    }

    32.51% {
        background-color: #E7932A;
    }

    50% {
        transform: rotateZ(180deg);
    }

    57.5% {
        background-color: #FFFCF8;
    }

    57.51% {
        background-color: #E7932A;
    }

    75% {
        transform: rotateY(180deg);
    }

    82.5% {
        background-color: #FFFCF8;
    }

    82.51% {
        background-color: #E7932A;
    }

    100% {
        transform: rotateX(0deg);
    }
}

@keyframes spinner-ease {
    0% {
        transform: rotateX(0deg);
    }

    7.5% {
        background-color: #FFFCF8;
    }

    7.51% {
        background-color: #E7932A;
    }

    25% {
        transform: rotateX(180deg);
    }

    32.5% {
        background-color: #FFFCF8;
    }

    32.51% {
        background-color: #E7932A;
    }

    50% {
        transform: rotateZ(180deg);
    }

    57.5% {
        background-color: #FFFCF8;
    }

    57.51% {
        background-color: #E7932A;
    }

    75% {
        transform: rotateY(180deg);
    }

    82.5% {
        background-color: #FFFCF8;
    }

    82.51% {
        background-color: #E7932A;
    }

    100% {
        transform: rotateX(0deg);
    }
}

body {
    font-family: 'Manrope', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    margin: 0;
    line-height: normal;
    font-weight: 600;
}

p {
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    font-weight: 400;
}

p:last-child {
    margin-bottom: 0;
}

.heading {
    font-size: 30px;
    margin-bottom: 5px;
    color: #000;
    position: relative;
    letter-spacing: 1px;
    font-weight: 500;
}

/*.heading:after{content:''; width: 100%; height: 10px; position:absolute; bottom:-20px; left:50%; transform:translateX(-50%); background:url(../images/hd_dvid_line.svg) no-repeat; background-size:130px; background-position:center;}*/
.subhd {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.5;
}

img {
    max-width: 100%;
    object-fit: cover;
    object-position: center
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.relative {
    position: relative;
}

.pad20 {
    padding: 20px 0px;
}


.pad30 {
    padding: 30px 0px;
}

.pad40 {
    padding: 40px 0px;
}

.pad80 {
    padding: 80px 0px;
}

.padb80 {
    padding-bottom: 80px;
}

.max_w800 {
    max-width: 900px;
}

.grey {
    background: #e1e1e1;
}

.bgblack {
    background: #000;
}

.overlay {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.overlay:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    /* background: linear-gradient(to top, #000000a3 30%, transparent 70%); */
}

.animated {
    visibility: visible;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeUp {
    0% {
        -webkit-transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@-moz-keyframes fadeUp {
    0% {
        -moz-transform: translateY(100px);
        opacity: 0;
    }

    100% {
        -moz-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate__fadeUp {
    -webkit-animation-name: fadeUp;
    animation-name: fadeUp;
    transform: translateY(0);
}

@-webkit-keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.enq_btn {
    width: auto;
    position: fixed;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: #bfa85d;
    transition: all 0.85s ease;
    z-index: 999;
}

.enq_btn a {
    width: 100%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Durer';
    font-size: 16px;
    padding: 15px 30px;
}

.enq_btn a::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.enq_btn a:hover {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 34%);
    background: transparent;
}

.enq_btn a:hover::before {
    height: 100%;
}

/*Responsive Button Css*/
.logo {
    width: 100px;
    margin-right: 50px;
}

.logo:hover {
    color: #bfa85d;
}

.navbar-toggler {
    border: none;
    background: transparent !important;
    padding: 0;
}

.navbar-toggler:hover {
    background: transparent !important;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler .icon-bar {
    height: 2px;
    width: 26px;
    background-color: #fff;
    border-radius: 1px;
    display: block;
    margin-top: 6px;
    transition: all 0.2s;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 6% 50%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 7% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

/*Nav Css*/
.navbar {
    overflow: hidden;
    width: 100%;
    padding: 10px 0px;
    /* background: transparent; */
    background: #212121;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background .6s ease-in;
    z-index: 99
}

.navbar:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 20%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.8s ease 0.5s;
    z-index: -1;
    filter: blur(10px);
}

.navbar .navbar-brand img {
    width: 150px;
}

.navbar .navbar-nav .nav-item {
    margin-right: 32px;
    display: inline-flex;
}

.navbar .navbar-nav .nav-item:last-child {
    margin: 0;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 13px;
    position: relative;
    padding: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar .navbar-nav .nav-item:last-child .nav-link:after {
    display: none;
}

.navbar .navbar-nav .nav-item .nav-link:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 7px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.navbar .navbar-nav .nav-item .nav-link.active:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 7px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.navbar .navbar-nav .nav-item .nav-link.active:before {
    width: 100%;
    right: unset;
    left: 0;
}


.navbar .navbar-nav .rightps {
    margin: 0;
    position: absolute;
    right: 0;
}

.navbar .navbar-nav .nav-item .nav-link.nav_btn {
    background: #b5812a;
    color: #ffffff;
    border: 1px solid #b5812a;
    padding: 7px 8px;
    position: relative;
    z-index: 2;
}

.navbar .navbar-nav .nav-item .nav-link.nav_btn:hover {
    color: #000;
    border-color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link.nav_btn:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0px;
    background: #fff;
    height: 100%;
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.navbar .navbar-nav .nav-item .nav-link.nav_btn:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.bdlrnone {
    border: 1px solid #fff !important;
    background: transparent !important;
    margin-right: -10px !Important;
}



.navbar .navbar-nav .nav-item .nav-link.bdlrnone:hover {
    color: #fff !important;
    border-color: #b58622 !important;
}

.navbar .navbar-nav .nav-item .nav-link.bdlrnone:before {
    background: #b58622 !important;
}

.nav_fixed {
    position: fixed !important;
    background-color: #212121;
    -webkit-animation: navbar-animation .6s;
    animation: navbar-animation .6s;
}

@media screen and (min-width: 991px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        width: 100%;
        position: relative;
    }
}

@media screen and (min-width: 1024px) {
    .navbar {
        letter-spacing: 0.1em;
    }

    /*.container{ max-width:90%;}*/
}

/*Navigation Close*/
.clrwht {
    color: #fff;
}

.clrblk {
    color: #000;
}

/*Banner*/
.banner {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.video_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video_wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* prevents distortion */
    object-position: center;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-inner {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.caption_text {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    /*top:56%; left:6%; transform: translateY(-50%);*/
    z-index: 22;
}

.caption_text-inner {
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 150px;
    /*top:56%; left:6%; transform: translateY(-50%);*/
    z-index: 22;
}

.caption_text h1 {
    margin: 10px 0px;
}

.caption_text .ban_hd {
    font-size: 55px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: bold;
    position: relative;
}

.caption_text span {
    color: #fff;
    font-weight: 500;
    font-size: 28px;
}

.text_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.fixedbannerfull {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}


.linkbtn {
    width: auto;
    display: inline-flex;
    background: #b5812a;
    border: 1px solid #b5812a;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 24px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    transition: all 0.85s ease;
    z-index: 1;
    margin-top: 20px;
}

.linkbtn::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0%;
    content: '';
    height: 100%;
    background: #dfb761;
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.linkbtn:hover {
    color: #fff;
    border-color: #dfb761;
    background: transparent;
}

.linkbtn:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}


.smplbtn span {
    position: relative;
    display: inline-block;
}

.smplbtn span:after {
    content: "";
    width: 0%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: -1px;
    right: 0;
    transition: all 0.85s ease;
}

.smplbtn span.btns {
    color: #000;
    font-size: 14px;
    padding: 0;
    border-bottom: 1px solid #000;
}

.smplbtn span.btns i {
    font-sizE: 12px;
    color: #000;
    margin-left: 5px;
    transition: all 0.85s ease;
}

.smplbtn:hover span.btns i {
    margin-left: 8px;
}

.smplbtn:hover span:after {
    width: 100%;
    right: unset;
    left: 0;
}

.bggrid {
    background: #F6F6F6;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
}

.cases_slider .slick-list {
    margin: 0px;
    padding-left: 0 !important;
}

.cases_slider .slick-slide {
    margin: 0 15px;
}

.slide_img {
    width: 100vw;
    height: 550px;
}

.slide_img img {
    height: 100%;
    width: 100%;
    transition: all 0.85s ease;
    transform: scale(1);
    overflow: hidden;
}

.bggrid:hover .cases_img img {
    transform: scale(1.1);
}

.slide_img strong {
    display: block;
    font-size: 14px;
    color: #000;
    margin-top: 15px;
    font-weight: normal;
    font-style: italic;
}

.cases_slider ul.slick-dots {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 20px;
    padding: 0;
}

.cases_slider ul.slick-dots li {
    margin: 0 10px 0 0 !important
}

.cases_slider ul.slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100px;
    background-color: #c9c7c3;
    text-indent: -9999px;
    position: relative;
    transition: .5s
}

.cases_slider ul.slick-dots li button:before {
    width: 8px !important;
    height: 8px !important;
    content: 'ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢';
    border: 1px solid #c9c7c3;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s
}

.cases_slider ul.slick-dots li.slick-active button {
    background-color: #c4984c;
    border-color: #c4984c
}

.cases_slider ul.slick-dots li.slick-active button:before {
    border-color: #c4984c
}

.edmontonbannerfull {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.w_img_grid {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.w_img_grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.85s ease;
}

.wine_grid:hover .w_img_grid img {
    transform: scale(1.1);
}

.w_description {
    margin-top: 20px;
}

.w_description .heading {
    font-weight: 300;
}

footer {
    width: 100%;
    background: #000;
    position: relative;
}

.footerlogo {
    width: 100%;
}

.footerlogo img {
    width: 110px;
    margin-bottom: 30px;
}

.footeraddress p {
    font-size: 13px;
}

.footeraddress h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px;
}

.quick_links {
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.quick_links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    text-align: center;
    opacity: 0.8;
}

.quick_links a:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: -2px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.quick_links a:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.quick_links a:after {
    content: "";
    background: #fff;
    width: 0.8px;
    height: 12px;
    display: inline-block;
    position: absolute;
    top: 4.5px;
    right: -10px;
}

.quick_links a:last-child:after {
    display: none;
}

.quick_links a:hover {
    opacity: 1;
}

.mediaicon {
    transition-delay: 0.85s;
    transition: all 0.5s ease;
    margin-top: 30px;
}

.mediaicon h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.mediaicon a {
    width: 26px;
    height: 26px;
    margin-right: 5px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 0.5s ease;
    padding-top: 0px;
}

.mediaicon a:hover {
    background: #fff;
    border-color: #fff;
}

.mediaicon a i {
    font-size: 12px;
    color: #fff;
    transition: all 0.85s ease;
}

.mediaicon a:hover i {
    color: #000;
}

.footer_link {
    width: 100%;
}

.footer_link h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.foot_nav_link {
    margin: 0;
}

.foot_nav_link ul {
    margin: 0;
    padding: 0;
    width: 100%;
}

.foot_nav_link ul li {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.foot_nav_link ul li a {
    color: #fff;
    font-size: 13px;
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
    position: relative;
    text-align: left;
    margin: 0px !important;
    transition: all 0.5s ease 0s;
    opacity: 0.6;
}

.foot_nav_link ul li a:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.foot_nav_link ul li a:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.foot_nav_link ul li a:hover {
    opacity: 1;
}

.bordertop {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.foot_nav {
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding: 18px 0px;
}

.foot_nav a {
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    position: relative;
    text-align: center;
    margin: 0px !important;
    transition: all 0.5s ease 0s;
    opacity: 0.5;
}

.foot_nav a:before {
    content: '';
    position: absolute;
    right: 0px;
    bottom: -2px;
    width: 0px;
    background: #fff;
    height: 0.5px;
    transition: all 0.5s ease 0s;
}

.foot_nav a:hover:before {
    width: 100%;
    right: unset;
    left: 0;
}

.foot_nav a:hover {
    opacity: 1;
}

.copyright_wrap {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px 0px;
    background: #000;
    text-align: center;
    margin-top: 0px;
}

.copyright_wrap .copyright_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright_wrap .copyright_text p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

.copyright_wrap .copyright_text p a {
    color: #fff;
    font-size: 12px;
}

.go-top {
    position: fixed;
    bottom: 10%;
    right: 2%;
    display: none;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    z-index: 9999;
}

.go-top:after {
    font-family: FontAwesome;
    content: "\f106";
    background-color: #e5e8f0;
    color: #6a6e7c;
    position: absolute;
    font-size: 17px;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    display: flex;
    align-content: center;
    justify-content: center;
    top: -29px;
    left: 20px;
}

.go-top .go-top-text {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #ccc;
}

.go-top:hover {
    transition: .4s linear;
    transform: scale(1)
}

.form_wrap {
    width: 100%;
    padding-top: 20px;
}

.form_wrap .btn {
    border-radius: 0
}

.form_wrap .form-group {
    position: relative;
    padding-top: 0px;
    margin-bottom: 20px;
    z-index: 2;
}

.form_wrap .form-group textarea {
    resize: none
}

/*.form_wrap .form-group lable{font-weight:bold; font-size:15px; color:#000; margin-bottom:12px; display:block;}*/
.form_wrap .form-group .input-highlight {
    content: "";
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    display: block;
    bottom: 0;
    transition: width .4s
}

.form_wrap .form-group label {
    position: absolute;
    left: 0px;
    top: 15px;
    transition: .4s;
    color: #000;
    z-index: -1;
    font-size: 15px;
}

.form_wrap .form-group .form-control {
    background: transparent;
    border: 0px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    padding: 12px 0px;
    font-size: 14px;
    box-shadow: none;
}

.form_wrap .form-group .form-control::placeholder {
    color: #000;
    font-weight: normal;
}

.form_wrap .form-group .form-control.hasValue,
.form_wrap .form-group .form-control:focus {
    box-shadow: none;
    border-color: #000;
    color: #000;
}

.form_wrap .form-group .form-control.hasValue~.input-highlight,
.form_wrap .form-group .form-control:focus~.input-highlight {
    width: 100%
}

.form_wrap .form-group .form-control.hasValue~label,
.form_wrap .form-group .form-control:focus~label {
    font-size: 11px;
    top: 0;
    left: 0;
    color: #6F7C84;
    font-size: 13px;
}

.form_wrap .form-group label.error {
    color: red;
    font-size: 10px;
    position: absolute;
    bottom: -30px;
    top: unset;
    letter-spacing: 1px;
}

.form_wrap .form-group .form-control.hasValue~label.error,
.form_wrap .form-group .form-control:focus~label.error {
    font-size: 10px;
    top: unset;
    left: unset;
    color: red;
}

.form_wrap .submit_btn {
    position: relative;
    display: flex;
    transition: all 0.3s ease 0s;
    border: 0px;
    margin-top: 30px;
}

.form_wrap .submit_btn button {
    border-radius: none;
    background: none;
    border: none;
}

.form_wrap .submit_btn .sb_btn {
    font-weight: bold;
    background: #bfa85d;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease 0s;
    letter-spacing: 0.8px;
    text-align: center;
    padding: 10px 25px;
    border: 1px solid rgb(255 255 255 / 34%);
    z-index: 22;
}

.form_wrap .submit_btn .sb_btn::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.form_wrap .submit_btn .sb_btn:hover {
    color: #fff;
    border: 1px solid rgb(255 255 255 / 34%);
    background: #000;
}

.form_wrap .submit_btn .sb_btn:hover::before {
    height: 100%;
}

.form_wrap .form-group select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background: url(../images/dwon_arrow.svg) no-repeat 100% center !important;
    background-size: 25px !important;
}

.s-input {
    padding-top: 2px;
    display: inline-block;
}

.s-input>input {
    width: 35px !important;
    height: 33px !important;
    opacity: 0;
    position: absolute;
    font-weight: bold;
    z-index: 1;
}

.s-input>label {
    font-size: 14px;
    width: 100%;
    cursor: pointer;
}

.s-input>label.error {
    font-size: 10px;
    display: block;
    color: red;
    margin-top: 5px;
    font-weight: normal;
    letter-spacing: 1px;
    position: absolute;
    bottom: -22px;
}

.s-input>label>i {
    position: relative;
    padding: 0 5px;
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 33px;
    margin-right: 20px;
    border: 1px solid #606060
}

.s-input>input:checked+label>i:after {
    content: "\f00c";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    display: inline-block;
    font: 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #6F7C84;
}

.s-input--rounded>label i,
.s-input--rounded>label i:after {
    border-radius: 0;
    display: inline-block
}

.s-input--rounded>label b {
    font-weight: 500;
    color: #6F7C84;
    font-weight: bold;
}

.s-input--rounded>label b a {
    font-weight: 500;
    color: #6F7C84;
    transition: all 0.85s ease;
    display: inline;
}

.s-input--rounded>label b a:hover {
    color: #000;
}

.modal-header {
    margin: 0;
    text-align: center
}

.modal-body {
    padding: 25px;
    margin: 0
}

.modal-content {
    box-shadow: none;
    border: 0;
    border-radius: 12px;
}

.modal-content h4 {
    text-transform: uppercase
}

.modal-header .close {
    padding: 0;
    margin: 0;
    background: #bfa85d;
    border-color: #bfa85d;
    width: 40px;
    height: 40px;
    border: none;
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s
}

/*.modal-header .close:hover{background:#000; border-color:#000;}*/
.modal-header .close:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.modal-header .close:hover:before {
    height: 100%;
}

.modal-header .close img {
    width: 20px
}

.modal-header .close:focus {
    outline: 0
}

.modal-open {
    padding: 0 !important
}

#enquirepop .modal-header {
    padding: 0;
}

#enquirepop .modal-header .close {
    z-index: 222;
    cursor: pointer;
}

#enquirepop .modal-header .close img {
    width: 40px;
}

#enquirepop .btns-b {
    background: #000;
    padding: 13px 20px;
    font-size: 12px;
    color: #fff;
    transition: all ease-in-out 0.5s;
    margin-top: 0;
    border: 1px solid transparent !important;
}

#enquirepop .btns-b:hover {
    background: #fff;
    color: #000;
    border-color: #000 !important;
}

#enquirepop .form-control {
    font-size: 14px;
    padding: 12px 0px;
    border-radius: 0;
    margin-bottom: 20px;
}

#enquirepop .custom-control-label {
    color: #595959;
    font-size: 14px;
}

#enquirepop .custom-control-label::after {
    top: 0.33rem;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none !important;
}

.contactwrap .h4 {
    font-size: 30px;
}

#enquirepop .form_wrap .form-group lable {
    font-size: 14px;
    margin-bottom: 5px;
}

.hand {
    width: 100px;
    position: relative;
    top: -50px;
}

.hand img {
    width: 100%;
    height: 100%;
}

.food_bg_wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.food_bg_wrap:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/food_page_bg.png) no-repeat;
    background-size: cover;
    background-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.top_detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #999999;
    border-top: 1px solid #ccc;
    padding: 5px 0px;
}

.name_time {
    display: flex;
    flex-direction: column;
}

.sign_btns a {
    font-size: 16px;
    color: #000;
    margin: 0 5px;
    font-weight: 700;
    transition: all 0.85s ease;
}

.sign_btns span {
    display: inline-block;
    font-size: 18px;
    color: #000;
}

.sign_btns a img {
    width: 23px;
}

.sign_btns a:hover {
    color: #e6955c
}

.sign_btns a small {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    top: 5px;
}

.cart {
    background-image: linear-gradient(#e9c36d, #e0b761);
    padding: 0 15px;
    border-radius: 50px;
    font-size: 16px;
    color: #000;
    margin: 0 5px;
    font-weight: 700;
    transition: all 0.85s ease;
}

.cart:hover {
    color: #000;
}

.cart img {
    width: 21px;
}

.cart small {
    font-size: 19px;
    font-weight: bold;
    position: relative;
    top: 3px;
}

/* Liquor Menu Page */

.message-card {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.message-card h4 {
    color: #721c24;
}

.message-card p {
    color: #856404;
}

.icon-large {
    font-size: 3rem;
    /* Make the icon larger */
}

/* Liquor Menu Page */

.nav-pills {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.nav-pills .nav-item {
    width: 14%;
}

.nav-pills .nav-item .nav-link {
    width: 100%;
    display: inline-block;
    border-radius: 40px;
    border: 1px solid #000;
    color: #000;
    padding: 8px 20px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
    font-size: 13px;
}

.nav-pills .nav-item .nav-link:hover {
    border-color: #FB8C08;
    color: #fff;
}

.nav-pills .nav-item .nav-link:hover:after {
    width: 100%;
    right: unset;
    left: 0;
}

.nav-pills .nav-item .nav-link:after {
    content: '';
    width: 0%;
    height: 100%;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    position: absolute;
    top: 0%;
    right: 0%;
    border-radius: 40px;
    z-index: -1;
    transition: all 0.5s ease;
    overflow: hidden;
}

.nav-pills .nav-item .nav-link.active {
    background-image: linear-gradient(#FCC80F, #FB8C08);
    color: #fff;
    border-color: #FB8C08;
    ;
    background-color: transparent;
    transition: all 0.5s ease;
}

/* .nav .nav-item button.active {
  background-color: transparent;
  color: var(--bs-danger) !important;
}
.nav .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--bs-danger);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
} */


/* OTP Code */
.otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    margin: 0 5px;
}

#authModal .modal-body,
#verifyOTPModal .modal-body {
    padding: 0
}

#authModal .modal-dialog,
#verifyOTPModal .modal-dialog {
    max-width: 500px;
    border-radius: 12px;
}

select.form-select {
    max-width: 100px;
}

#authModal .submit_btn,
#verifyOTPModal .submit_btn {
    width: auto;
    padding: 6px 30px;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    color: #fff;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    float: right;
}

#authModal .submit_btn i,
#verifyOTPModal .submit_btn i {
    font-size: 15px;
    color: #fff;
}

#authModal .submit_btn:hover,
#verifyOTPModal .submit_btn:hover {
    background: #000;
}

#authModal .submit_btn:hover i,
#verifyOTPModal .submit_btn:hover i {
    color: #000;
}

.verify_btn {
    display: flex;
    gap: 20px;
    justify-content: end;
}


.order_descriotion {
    margin-top: 24px;
}

.food_grid {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.food_grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.85s ease;
}

.food_grid:hover img {
    transform: scale(1.2);
}

.product_name {
    display: flex;
    width: 100%;
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    justify-content: space-between;
    font-size: 15px;
}

.product_name strong {
    color: #e9c36d;
}

.product_name i {
    font-size: 25px;
    color: #e9c36d;
}

.description {
    width: 100%;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}

.description p {
    color: #000;
    font-size: 12px;
    margin: 0;
}

.description strong {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    display: flex;
}

.description span {
    color: #000;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: end !important;
    padding-bottom: 5px;
    padding-left: 5px;
}

.item_price {
    width: 100%;
}

.item_price strong {
    color: #000;
    font-size: 25px;
    font-weight: bold;
    display: flex;
}

.item_price span {
    color: #000;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    align-items: end !important;
    padding-bottom: 5px;
    padding-left: 5px;
}

.modal-header {
    padding: 0;
    border: none;
}

.bgdownloadbrochure {
    content: '';
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(3px);
    filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.bgdownloadbrochure.indb {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    max-width: 800px;
    border-radius: 12px;
}

.modal-header .close {
    z-index: 22;
    cursor: pointer;
}

.modal-header .close span {
    font-size: 30px;
    color: #fff;
    display: block;
    font-weight: 300;
}

.order_btn {
    width: auto;
}

.order_btn a {
    width: auto;
    display: inline-block;
    border-radius: 40px;
    border: 1px solid #FCC80F;
    color: #000;
    padding: 8px 20px;
    transition: all 0.3s ease;
    font-size: 10px;
    position: relative;
    z-index: 1;
}

.order_btn a:hover {
    color: #fff;
}

.order_btn a:hover:after {
    width: 100%;
    right: unset;
    left: -5%;
}

.order_btn a:after {
    content: '';
    width: 0%;
    height: 90%;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    position: absolute;
    top: 5%;
    right: 5%;
    border-radius: 40px;
    z-index: -1;
    transition: all 0.5s ease;
    overflow: hidden;
}

.order_btn a.active::after {
    background-image: linear-gradient(#FCC80F, #FB8C08);
    color: #fff;
    border-color: transparent;
    width: 100%;
}

.order_btn a.active {
    color: #fff;
}

.cart_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.cart_img img {
    width: 100%;
    height: 100%;
}

.cart_details {
    width: 100%;
    position: relative;
}

.cart_details h2 {
    font-size: 22px;
}

.cart_form {
    margin-top: 30px;
}

.cart_form .form-group {
    width: 100%;
    margin-bottom: 12px;
}

.cart_form .form-group label {
    font-size: 11px;
    color: #000;
    display: block;
    margin-bottom: 5px;
}

.cart_form .form-group select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background: url(../images/dwon_arrow.svg) no-repeat 100% center !important;
    background-size: 25px !important;
    font-size: 10px;
}

.doors {
    width: 100%;
    display: flex;
    gap: 5px;
    font-size: 14px;
    border: 1px solid #dee2e6;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 0.375rem;
    padding: 2px;
    box-shadow: none;
}

.doors .miniDoor {
    margin: 0 5px;
    width: 20px;
    display: block;
    cursor: pointer;
}

.doors .middle {
    width: 100%;
    border: none;
    text-align: center;
}

.cartbtn {
    width: 100%;
    background: #e6955c;
    border: 1px solid #e6955c;
    position: relative;
    padding: 6px 18px;
    font-size: 12px;
    color: #fff;
    transition: all 0.85s ease;
    z-index: 1;
    margin-top: 12px;
    border-radius: 50px;
    overflow: hidden;
    text-align: center;
}

.cartbtn::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0%;
    content: '';
    height: 100%;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.cartbtn:hover {
    color: #fff;
    border-color: #b58622;
    background: transparent;
}

.cartbtn:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}

.cartbtn2 {
    width: 100%;
    background: transparent;
    border: 1px solid #0e0e0e;
    position: relative;
    padding: 6px 18px;
    font-size: 12px;
    color: #000;
    transition: all 0.85s ease;
    z-index: 1;
    margin-top: 12px;
    border-radius: 50px;
    overflow: hidden;
    text-align: center;
}

.cartbtn2::before {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 0%;
    content: '';
    height: 100%;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    transition: all 0.5s ease 0s;
    z-index: -1;
}

.cartbtn2:hover {
    color: #fff;
    border-color: #b58622;
    background: transparent;
}

.cartbtn2:hover::before {
    width: 100%;
    right: unset;
    left: 0;
}

.discriotion_details {
    width: 100%;
    margin-top: 30px;
}

.discriotion_details strong {
    display: block;
    margin-bottom: 8px;
    color: #000;
    font-size: 16px;
}

.discriotion_details p {
    display: block;
    margin-bottom: 0;
    color: #000;
    font-size: 12px;

}

.simler_wrap_section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}

.pophd {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
}

.simlerslider .slick-list {
    margin: 0 -12px;
}

.simlerslider .slick-slide {
    margin: 0 12px;
}

.simler_img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.simler_img img {
    width: 100%;
    height: 100%;
}

.plus_icon {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.83);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    cursor: pointer;
}

.plus_icon span {
    display: block;
    font-size: 18px;
    color: #000;
}

.pro_name,
.pro_price {
    display: block;
    color: #000;
    font-size: 14px;
    margin: 2px 0px;
}

.contol_custom {
    position: absolute;
    top: 0%;
    right: 30px;
    z-index: 55;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
}

.contol_custom span {
    width: 30px;
    height: 30px;
    border: 1px solid #FCC80F;
    border-radius: none;
    background: #FB8C08;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 21px;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    position: absolute;
    top: 0%;
    transform: translateY(0%);
    border-radius: 100px;
    overflow: hidden;
}

.contol_custom span:hover {
    background: #000;
    border-color: #000 important;
}

.contol_custom span:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    content: '';
    height: 0;
    background: #000;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

.contol_custom span:hover:before {
    height: 100%;
}

.contol_custom span img {
    width: 12px;
}

.contol_custom span.sm_left img {
    transform: rotate(180deg)
}

.contol_custom span.sm_right {
    left: -38px;
}

/* .contol_custom span.Arrowfpleft img{ transform:rotate(180deg)} */

.breadcrumbwrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 15px 0px;
}

.breadcrumbwrap ul {
    margin: 0;
    padding: 0;
}

.breadcrumbwrap ul li {
    width: auto;
    display: inline-block;
    position: relative;
    margin-right: 15px;
    opacity: 0.5;
    letter-spacing: 1px;
}

.breadcrumbwrap ul li:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #000;
    position: absolute;
    right: -9px;
    top: 4px;
    transform: rotate(18deg);
}

.breadcrumbwrap ul li:last-child:after {
    background: transparent;
}

.breadcrumbwrap ul li a {
    width: 100%;
    display: block;
    font-size: 16px;
    color: #000;
    opacity: 0.6;
}

.breadcrumbwrap ul li a:last-child {
    opacity: 1;
}

.breadcrumbwrap ul li:last-child {
    opacity: 1;
    font-weight: 600;
    margin-right: 0;
    font-size: 16px;
    color: #000;
}

.form-control:focus,
.form-select:focus {
    color: #000;
    background-color: transparent;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.layout_grid_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.layout_grid_img img {
    width: 100%;
    height: 100%;
}

.layout_grid_title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-right: 0%;
}

.layout_grid_title h3 {
    color: #000;
    font-size: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    display: inline;
}

.layout_grid_title p {
    color: #000;
}

.elevate_grid {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin-top: 30px
}

.elevate_grid:after {
    content: '';
    position: absolute;
    height: 165px;
    display: block;
    bottom: -5px;
    right: 0;
    left: 0;
    /*background: -o-linear-gradient(359deg, rgb(0 0 0 / 69%) 18.91%, rgb(39 39 39 / 52%) 74.37%, rgba(0, 212, 255, 0) 84.45%); background: linear-gradient(359deg, rgb(0 0 0 / 69%) 18.91%, rgb(39 39 39 / 52%) 74.37%, rgba(0, 212, 255, 0) 84.45%);*/
    background: -webkit-linear-gradient(to bottom, transparent, #000000);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, transparent, #000000);
    top: auto;
    z-index: 1;
}

.elevate_grid img {
    width: 100%;
    height: 100%;
    transition: all 0.85s ease;
    transform: scale(1);
}

.elevate_grid:hover img {
    transform: scale(1.1);
}

.ourculture_wrap {
    background: #f2f2f2
}

.ourculture_wrap .row .col-lg-2 {
    width: 20%;
    padding: 0 3px;
}

.about_culture_slider .slick-list {
    margin: 0 -3px;
}

.about_culture_slider .slick-slide {
    margin: 0 3px;
}

.culturebtnarrow {
    position: absolute;
    bottom: -15px;
    top: unset;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
}

.culturebtnarrow span {
    width: 40px;
    height: 40px;
}

.culturebtnarrow span.sm_right {
    left: -50px;
}

.culturebtnarrow span.sm_left {
    right: -50px;
}


.contact_ban {
    width: 100%;
}

.contact_ban span {
    font-sizE: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.contact_grid {
    width: 100%;
    text-align: center;
    padding: 0px 0px 0;
}

.contact_grid h3 {
    font-size: 25px;
    color: #8e8e8e;
    margin-bottom: 15px;
}

.contact_grid h3 svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    stroke: #8e8e8e;
}

.phone_info {
    width: auto;
}

.phone_info a {
    color: #000;
    font-size: 18px;
    padding: 0px;
    position: relative;
    display: inline-block;
}

.phone_info a:after {
    content: "";
    width: 0px;
    background: #000;
    height: 0.6px;
    position: absolute;
    bottom: 2px;
    left: 0;
    transition: all 0.85s ease;
}

.phone_info a:hover:after {
    width: 100%;
}

.email_link {
    width: auto;
}

.email_link a {
    color: #000;
    font-size: 18px;
    padding: 0px;
    position: relative;
    display: inline-block;
}

.email_link a span {
    font-family: var(--bs-body-font-family) !important;
    display: inline-block;
    font-size: 15px;
}

.email_link a:after {
    content: "";
    width: 0px;
    background: #000;
    height: 0.6px;
    position: absolute;
    bottom: 2px;
    left: 0;
    transition: all 0.85s ease;
}

.email_link a:hover:after {
    width: 100%;
}

.follow_link {
    width: 100%;
}

.follow_link ul {
    margin: 0;
    padding: 0;
}

.follow_link ul li {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.follow_link ul li:last-child {
    margin: 0;
}

.follow_link ul li a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #8e8e8e;
    transition: all 0.85s ease;
}

.follow_link ul li a i {
    font-size: 16px;
    color: #000;
}

.follow_link ul li a:hover i {
    color: #fff;
}

.follow_link ul li a:hover {
    background: #000;
}

.contact_form_wrap {
    width: 100%;
    overflow: hidden;
    position: relative
}

.contact_form_wrap .row .col-lg-5 {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 0;
    height: 100%;
}

.contact_form_wrap .row .col-lg-7 {
    margin-right: 0 !important;
}

.map_img {
    width: 100%;
    height: 100%;
}

.map_img img {
    width: 100%;
    height: 100%;
}

.map_img iframe {
    filter: grayscale(100%) invert(8%) sepia(10%) saturate(70%) brightness(100%) contrast(110%) hue-rotate(-130deg);
}

.map {
    width: 100%;
    height: 100%;
}

.map img {
    width: 100%;
    height: 100%;
}

.map iframe {
    height: 100vh;
}

.formbgcolor {
    background: transparent
}

.bgcolor {
    background: #cccccc30;
}

.contact_form {
    width: 100%;
    padding: 80px 0 80px 80px;
    max-width: 700px;
    margin: 0 auto;
}

.form_wrap .submit_btn button {
    background: #000;
}

.address_wrap {
    width: 100%;
}

.address_wrap .col-lg-4 {
    padding: 0;
}

.inner_text_details {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 100px;
    background: #cccccc20;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.inner_text_details.bg2 {
    background: #cccccc30;
}

.inner_text_details.bg3 {
    background: #cccccc60;
}

.inner_text_details address,
.inner_text_details h3 {
    transition: all 0.85s ease;
    color: #000;
    margin-bottom: 20px;
}

.inner_text_details address {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.otp-input {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    margin: 0 5px;
}

#signinModal .modal-body {
    padding: 0
}

#signinModal .modal-dialog {
    max-width: 500px;
    border-radius: 12px;
}

/* select.form-select {max-width: 100px;} */
#signinModal .submit_btn {
    width: auto;
    padding: 6px 30px;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    color: #fff;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    float: right;
}

#signinModal .submit_btn i {
    font-size: 15px;
    color: #fff;
}

#signinModal .submit_btn:hover {
    background: #000;
}

#signinModal .submit_btn:hover i {
    color: #000;
}

.verify_btn {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.check_bg:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
    background: url(./images/check_page_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.card {
    border: none;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #00000012;
    padding-bottom: 20px;
}

.product-row:last-child {
    border-bottom: none;
}

.product-row p {
    font-size: 14px;
    color: #000;
}

.product-row p {
    color: #000;
    font-size: 12px;
    margin: 0;
}

.product-row strong {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.product-row b {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.product-row span {
    color: #000;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: end !important;
    padding-bottom: 2px;
    padding-left: 5px;
}

.product-row .items_grid {
    width: 25%;
}

.product-row .items_grid:nth-child(1) {
    width: 50%
}

.product-row .items_grid:nth-child(2) {
    justify-content: center
}

.product-row .items_grid:nth-child(3) {
    justify-content: end;
    display: flex;
}

.product-image {
    width: 100px;
    height: 100px;
    background-color: #e9ecef;
    border: 1px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ced4da;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    height: 30px;
    border: 1px solid #ced4da;
    text-align: center;
    margin: 0 5px;
}

.btn-checkout {
    background-color: #ffc107;
    border-color: #ffc107;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-checkout:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.pro_type h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
}

.pro_type h4 {
    width: 25%;
}

.pro_type h4:nth-child(1) {
    width: 50%
}

.pro_type h4:nth-child(2) {
    justify-content: center;
    display: flex;
}

.pro_type h4:nth-child(3) {
    justify-content: end;
    display: flex;
}

.subtotal h5 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    padding-left: 20px
}

.textareabox textarea {
    width: 100%;
    border: 1px solid #000;
    border-radius: 4px;
    height: 75px;
}

.card {
    border-radius: 0;
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
    border-bottom: 1px solid #000;
    padding: 1px 0px;
}

.card h5 {
    color: #000;
}

.card textarea {
    background: #D9D9D9;
    padding: 20px;
    color: #000;
    border: none;
}

.card .form-check-input {
    border-color: #000;
}

.form-check-input:checked {
    background-color: #000;
    /* Bootstrap primary color */
    border-color: #000;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
    /* Default border color */
}

.form-check-input[type="radio"] {
    border-radius: 50%;
    border-color: #000;
}

.form-check-input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.backclr .form-check-input:focus {
    border-color: #000 !important;
}

.btn-primary {
    background-color: #ffc107;
    /* Yellow button */
    border-color: #ffc107;
    color: #343a40;
    /* Dark text for yellow button */
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e0a800;
    /* Darker yellow on hover */
    border-color: #e0a800;
    color: #343a40;
}

.list-group-item {
    display: flex;
    align-items: center;
}

.list-group-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.summary-item-details {
    flex-grow: 1;
}

.tip-options .btn {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: #495057;
}

.tip-options .btn.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.form-check-label {
    cursor: pointer;
}

.form-check-input:focus {
    box-shadow: 0;
}

.cart_items {
    position: relative;
}

.cart_items img {
    width: 100px;
    height: 100px
}

.cart_items .cartnm {
    width: 25px;
    height: 25px;
    background: #ffc107;
    ;
    border-radius: 100px;
    position: absolute;
    left: 85px;
    top: -5px;
    color: #000;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backclr {
    background: #F6F1F1;
    padding: 5px;
}

.check_wrap .form-control,
.check_wrap .form-select {
    border: 1px solid #000;
    padding: 10px 5px;
}

.borderRight {
    border-right: 1px solid #000;
    padding-right: 50px !important;
}

.promo_icon {
    position: absolute;
    top: 12px;
    left: 10px;
    transform: rotate(90deg);
}

.promo_icon i {
    font-size: 20px;
    color: #000;
}

.promofield .form-control {
    text-indent: 50px;
}



.lefttab,
.rightview {
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
}


.rightview {
    padding: 30px;
}

.profile_dt {
    width: 100%;
    background: #000;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.profile_img {
    width: 190px;
    height: 100px;
    border-radius: 100px;
    overflow: hidden;
}

.profile_img img {
    width: 100%;
    height: 100%;
}

.profile_nm {
    width: 100%;
}

.profile_nm strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.profile_nm span {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.profile_nm .signout {
    display: inline-block;
    color: #fff;
    width: auto;
    margin-bottom: 8px;
    font-size: 14px;
    padding: 6px 15px;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.85s ease;
}

.profile_nm .signout:hover {
    background: #fff;
    color: #000
}

.lefttab .nav-pills {
    align-items: start;
    width: 100%;
    gap: 0px;
}

.lefttab .nav-pills a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #000;
    border-bottom: 1px solid #CFCFCF;
    border-radius: 0;
}

.lefttab .nav-pills a span {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lefttab .nav-pills a i {
    font-size: 15px;
    color: #000;
}

.lefttab .nav-pills a.active {
    color: #fff;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    border-color: transparent;
}

.lefttab .nav-pills a.active i {
    font-size: 15px;
    color: #fff;
}

.form_information .form-group {
    margin-bottom: 30px
}

.form_information .form-group .form-control:focus {
    color: #000;
    background-color: transparent;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.form_information .submit_btn {
    width: auto;
    padding: 6px 30px;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    color: #fff;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.form_information .submit_btn i {
    font-size: 15px;
    color: #fff;
}

.form_information .submit_btn:hover {
    background: #000;
}

.form_information .submit_btn:hover i {
    color: #000;
}

.reservation-form,
.inquiry-form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    border: 1px solid #000;
    color: #000;
    width: 90%;
    margin-left: 5%;
}

.reservation-form h2,
.inquiry-form h2,
.reservation-form h3,
.inquiry-form h3,
.reservation-form p,
.inquiry-form p {
    color: #000;
    margin-bottom: 12px;
}

.btn-reserve {
    background-color: #ffca2c;
    color: white;
    border: none;
}

.btn-reserve:hover {
    background-color: #e0b11c;
    color: white;
}

.nav-tabs .nav-link {
    cursor: pointer;
}

.inquiry-form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    border: 1px solid #000;
}

.btn-submit {
    background-color: #000;
    color: white;
    border: none;
}

.btn-submit:hover {
    background-color: #333;
    color: white;
}

.restaurant-times {
    /* background: #fff3cd; */
    padding: 15px;
    border-radius: 10px;
    color: #000;
}

.restaurant-times h4 {
    margin-bottom: 20px
}

.restaurant-times h4,
.restaurant-times p {
    color: #000;
}

.banneruptext {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 10px 2px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 100px;
    margin-top: -150px;
}

ul.tabbuttonslt {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    border-bottom: none;
}

ul.tabbuttonslt li {
    text-align: center;
}

ul.tabbuttonslt li a {
    background-image: linear-gradient(#FCC80F, #FB8C08);
    border: none;
    padding: 8px 15px;
    color: #fff !important;
    display: block;
    border-radius: 0 !important;
    border: 1px solid #fff;
}

ul.tabbuttonslt li a:hover {
    background: #000;
    color: #fff
}

ul.tabbuttonslt li a.active {
    background: #000 !important;
    color: #fff
}

.topminus {
    position: relative;
    margin-top: -70px;
}

.inquiry-form ul {
    margin: 0 0 30px 0;
    padding: 0;
}

.inquiry-form ul li {
    font-size: 13px;
    margin: 4px 0px;
}

/* Our story */

.layout_grid_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.layout_grid_img img {
    width: 100%;
    height: 100%;
}

.layout_grid_title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin-right: 0%;
}

.layout_grid_title h3 {
    color: #000;
    font-size: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    display: inline;
}

.layout_grid_title p {
    color: #000;
}

.elevate_grid {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    margin-top: 30px
}

.elevate_grid:after {
    content: '';
    position: absolute;
    height: 165px;
    display: block;
    bottom: -5px;
    right: 0;
    left: 0;
    /*background: -o-linear-gradient(359deg, rgb(0 0 0 / 69%) 18.91%, rgb(39 39 39 / 52%) 74.37%, rgba(0, 212, 255, 0) 84.45%); background: linear-gradient(359deg, rgb(0 0 0 / 69%) 18.91%, rgb(39 39 39 / 52%) 74.37%, rgba(0, 212, 255, 0) 84.45%);*/
    background: -webkit-linear-gradient(to bottom, transparent, #000000);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, transparent, #000000);
    top: auto;
    z-index: 1;
}

.elevate_grid img {
    width: 100%;
    height: 100%;
    transition: all 0.85s ease;
    transform: scale(1);
}

.elevate_grid:hover img {
    transform: scale(1.1);
}

.ourculture_wrap {
    background: #f2f2f2
}

.ourculture_wrap .row .col-lg-2 {
    width: 20%;
    padding: 0 3px;
}

.about_culture_slider .slick-list {
    margin: 0 -3px;
}

.about_culture_slider .slick-slide {
    margin: 0 3px;
}

.culturebtnarrow {
    position: absolute;
    bottom: -15px;
    top: unset;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
}

.culturebtnarrow span {
    width: 40px;
    height: 40px;
}

.culturebtnarrow span.sm_right {
    left: -50px;
}

.culturebtnarrow span.sm_left {
    right: -50px;
}

/* Contact us */




.contact_ban {
    width: 100%;
}

.contact_ban span {
    font-sizE: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    color: #000;
}

.contact_grid {
    width: 100%;
    text-align: center;
    padding: 0px 0px 0;
}

.contact_grid h3 {
    font-size: 25px;
    color: #8e8e8e;
    margin-bottom: 15px;
}

.contact_grid h3 svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    stroke: #8e8e8e;
}

.phone_info {
    width: auto;
}

.phone_info a {
    color: #000;
    font-size: 18px;
    padding: 0px;
    position: relative;
    display: inline-block;
}

.phone_info a:after {
    content: "";
    width: 0px;
    background: #000;
    height: 0.6px;
    position: absolute;
    bottom: 2px;
    left: 0;
    transition: all 0.85s ease;
}

.phone_info a:hover:after {
    width: 100%;
}

.email_link {
    width: auto;
}

.email_link a {
    color: #000;
    font-size: 18px;
    padding: 0px;
    position: relative;
    display: inline-block;
}

.email_link a span {
    font-family: var(--bs-body-font-family) !important;
    display: inline-block;
    font-size: 15px;
}

.email_link a:after {
    content: "";
    width: 0px;
    background: #000;
    height: 0.6px;
    position: absolute;
    bottom: 2px;
    left: 0;
    transition: all 0.85s ease;
}

.email_link a:hover:after {
    width: 100%;
}

.follow_link {
    width: 100%;
}

.follow_link ul {
    margin: 0;
    padding: 0;
}

.follow_link ul li {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.follow_link ul li:last-child {
    margin: 0;
}

.follow_link ul li a {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #8e8e8e;
    transition: all 0.85s ease;
}

.follow_link ul li a i {
    font-size: 16px;
    color: #000;
}

.follow_link ul li a:hover i {
    color: #fff;
}

.follow_link ul li a:hover {
    background: #000;
}

.contact_form_wrap {
    width: 100%;
    overflow: hidden;
    position: relative
}

.contact_form_wrap .row .col-lg-5 {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 0;
    height: 100%;
}

.contact_form_wrap .row .col-lg-7 {
    margin-right: 0 !important;
}

.map_img {
    width: 100%;
    height: 100%;
}

.map_img img {
    width: 100%;
    height: 100%;
}

.map_img iframe {
    filter: grayscale(100%) invert(8%) sepia(10%) saturate(70%) brightness(100%) contrast(110%) hue-rotate(-130deg);
}

.float {
    position: fixed;
    width: 45px;
    height: 45px;
    top: 33px;
    right: 40px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 42px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.map {
    width: 100%;
    height: 100%;
}

.map img {
    width: 100%;
    height: 100%;
}

.map iframe {
    height: 100vh;
}

.formbgcolor {
    background: transparent
}

.bgcolor {
    background: #cccccc30;
}

.contact_form {
    width: 100%;
    padding: 80px 0 80px 80px;
    max-width: 700px;
    margin: 0 auto;
}

.form_wrap .submit_btn button {
    background: #000;
}

.address_wrap {
    width: 100%;
}

.address_wrap .col-lg-4 {
    padding: 0;
}

.inner_text_details {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 100px;
    background: #cccccc20;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.inner_text_details.bg2 {
    background: #cccccc30;
}

.inner_text_details.bg3 {
    background: #cccccc60;
}

.inner_text_details address,
.inner_text_details h3 {
    transition: all 0.85s ease;
    color: #000;
    margin-bottom: 20px;
}

.inner_text_details address {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

/* Reservations */



.reservation-form,
.inquiry-form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    border: 1px solid #000;
    color: #000;
    width: 90%;
    margin-left: 5%;
}

.reservation-form h2,
.inquiry-form h2,
.reservation-form h3,
.inquiry-form h3,
.reservation-form p,
.inquiry-form p {
    color: #000;
    margin-bottom: 12px;
}

.btn-reserve {
    background-color: #ffca2c;
    color: white;
    border: none;
}

.btn-reserve:hover {
    background-color: #e0b11c;
    color: white;
}

.nav-tabs .nav-link {
    cursor: pointer;
}

.inquiry-form {
    background: white;
    padding: 20px;
    border-radius: 12px;
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    border: 1px solid #000;
}

.btn-submit {
    background-color: #000;
    color: white;
    border: none;
}

.btn-submit:hover {
    background-color: #333;
    color: white;
}

.restaurant-times {
    /* background: #fff3cd; */
    padding: 15px;
    border-radius: 10px;
    color: #000;
}

.restaurant-times h4 {
    margin-bottom: 20px
}

.restaurant-times h4,
.restaurant-times p {
    color: #000;
}

.banneruptext {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 10px 2px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 100px;
    margin-top: -150px;
}

ul.tabbuttonslt {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    border-bottom: none;
}

ul.tabbuttonslt li {
    text-align: center;
}

ul.tabbuttonslt li a {
    background-image: linear-gradient(#FCC80F, #FB8C08);
    border: none;
    padding: 8px 15px;
    color: #fff !important;
    display: block;
    border-radius: 0 !important;
    border: 1px solid #fff;
}

/*  */
ul.tabbuttonslt li a:hover {
    background: #000;
    color: #fff
}

ul.tabbuttonslt li a.active {
    background: #000 !important;
    color: #fff
}

.topminus {
    position: relative;
    margin-top: -70px;
}

/* Cart Page */


.check_bg:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
    background: url(./images/check_page_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.card {
    border: none;
}

.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #00000012;
    padding-bottom: 20px;
}

.product-row:last-child {
    border-bottom: none;
}

.product-row p {
    font-size: 14px;
    color: #000;
}

.product-row p {
    color: #000;
    font-size: 12px;
    margin: 0;
}

.product-row strong {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.product-row b {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: flex;
}

.product-row span {
    color: #000;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: end !important;
    padding-bottom: 2px;
    padding-left: 5px;
}

.product-row .items_grid {
    width: 25%;
}

.product-row .items_grid:nth-child(1) {
    width: 50%
}

.product-row .items_grid:nth-child(2) {
    justify-content: center
}

.product-row .items_grid:nth-child(3) {
    justify-content: end;
    display: flex;
}

.product-image {
    width: 100px;
    height: 100px;
    background-color: #e9ecef;
    border: 1px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ced4da;
    background-color: #fff;
    text-align: center;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    height: 30px;
    border: 1px solid #ced4da;
    text-align: center;
    margin: 0 5px;
}

.btn-checkout {
    background-color: #ffc107;
    border-color: #ffc107;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-checkout:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.pro_type h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
}

.pro_type h4 {
    width: 25%;
}

.pro_type h4:nth-child(1) {
    width: 50%
}

.pro_type h4:nth-child(2) {
    justify-content: center;
    display: flex;
}

.pro_type h4:nth-child(3) {
    justify-content: end;
    display: flex;
}

.subtotal h5 {
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
    padding-left: 20px
}

.textareabox textarea {
    width: 100%;
    border: 1px solid #000;
    border-radius: 4px;
    height: 75px;
}

/* Checkout */

.spacetop {
    margin-top: 90px;
}

.check_bg:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
    background: url(./images/check_page_bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.card {
    border-radius: 0;
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
    border-bottom: 1px solid #000;
    padding: 30px 0px;
}

.card h5 {
    color: #000;
}

.card textarea {
    background: #D9D9D9;
    padding: 20px;
    color: #000;
    border: none;
}

.card .form-check-input {
    border-color: #000;
}

.form-check-input:checked {
    background-color: #000;
    /* Bootstrap primary color */
    border-color: #000;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
    /* Default border color */
}

.form-check-input[type="radio"] {
    border-radius: 50%;
    border-color: #000;
}

.form-check-input:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.backclr .form-check-input:focus {
    border-color: #000 !important;
}

.btn-primary {
    background-color: #ffc107;
    /* Yellow button */
    border-color: #ffc107;
    color: #343a40;
    /* Dark text for yellow button */
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #e0a800;
    /* Darker yellow on hover */
    border-color: #e0a800;
    color: #343a40;
}

.list-group-item {
    display: flex;
    align-items: center;
}

.list-group-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

.summary-item-details {
    flex-grow: 1;
}

.tip-options .btn {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: #495057;
}

.tip-options .btn.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.form-check-label {
    cursor: pointer;
}

.form-check-input:focus {
    box-shadow: 0;
}

.cart_items {
    position: relative;
}

.cart_items img {
    width: 100px;
    height: 100px
}

.cart_items .cartnm {
    width: 25px;
    height: 25px;
    background: #ffc107;
    ;
    border-radius: 100px;
    position: absolute;
    left: 85px;
    top: -5px;
    color: #000;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backclr {
    background: #F6F1F1;
    padding: 5px;
}

.check_wrap .form-control,
.check_wrap .form-select {
    border: 1px solid #000;
    padding: 10px 5px;
}

.borderRight {
    border-right: 1px solid #000;
    padding-right: 50px !important;
}

.promo_icon {
    position: absolute;
    top: 12px;
    left: 10px;
    transform: rotate(90deg);
}

.promo_icon i {
    font-size: 20px;
    color: #000;
}

.promofield .form-control {
    text-indent: 50px;
}

.custom-bg {
    background-color: #EBE2CA;
}

/* My Profile */

.spacetop {
    margin-top: 90px;
}

.spacetoppad {
    padding-top: 125px;
}

.custom-alert {
    border-color: #8ac38b;
    color: #356635;
    background-color: #cde0c4;
    opacity: 1 !important;
    padding: 0 20px;
    margin: 0 0 5px 0;
}

.custom-alert h4 {
    margin: 0 0 5px 0;
    font-weight: bold;
    color: #356635;
}

.custom-alert p {
    margin: 0;
    font-size: 14px;
    color: #356635;
}

.custom-alert .close-btn {

    color: #356635;
    font-size: 18px;
    float: right;
    cursor: pointer;
}

.rightview h4 {
    font-size: 22px;
}


.btn-xs {
    padding: 1px 5px;
    /* Adjust padding as needed */
    font-size: 11px;
    /* Adjust font size as needed */
    line-height: 1.5;
    border-radius: 3px;
}


.lefttab,
.rightview {
    border: 1px solid #CFCFCF;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
}

.rightview {
    padding: 5px;
}

.profile_dt {
    width: 100%;
    background: #000;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    gap: 30px;
}

.profile_img {
    width: 190px;
    height: 100px;
    border-radius: 100px;
    overflow: hidden;
}

.profile_img img {
    width: 100%;
    height: 100%;
}

.profile_nm {
    width: 100%;
}

.profile_nm strong {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.profile_nm span {
    display: block;
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.profile_nm .signout {
    display: inline-block;
    color: #fff;
    width: auto;
    margin-bottom: 8px;
    font-size: 14px;
    padding: 6px 15px;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.85s ease;
}

.profile_nm .signout:hover {
    background: #fff;
    color: #000
}

.lefttab .nav-pills {
    align-items: start;
    width: 100%;
    gap: 0px;
}

.lefttab .nav-pills a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #000;
    border-bottom: 1px solid #CFCFCF;
    border-radius: 0;
}

.lefttab .nav-pills a span {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lefttab .nav-pills a i {
    font-size: 15px;
    color: #000;
}

.lefttab .nav-pills a.active {
    color: #fff;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    border-color: transparent;
}

.lefttab .nav-pills a.active i {
    font-size: 15px;
    color: #fff;
}

.form_information .form-group {
    margin-bottom: 30px
}

.form_information .form-group .form-control:focus {
    color: #000;
    background-color: transparent;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.form_information .submit_btn {
    width: auto;
    padding: 6px 30px;
    background-image: linear-gradient(#FCC80F, #FB8C08);
    color: #fff;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
}

.form_information .submit_btn i {
    font-size: 15px;
    color: #fff;
}

.form_information .submit_btn:hover {
    background: #000;
}

.form_information .submit_btn:hover i {
    color: #000;
}

.tbl_orders th {
    font-size: 13px;
}

.tbl_orders td {
    font-size: 13px;
}

#pickupTimeModal .modal-dialog {
    max-width: 350px;
    border-radius: 12px;
}

#pickupTimeModal .text-body {
    text-transform: none;
}

#pickupTimeModal .form-select-lg {
    padding-top: 0;
}


/* Error message styling */
.error {
    color: #dc3545;
    /* red color */
    font-size: 0.875rem;
    /* slightly smaller text */
    margin-top: 0.25rem;
    /* spacing below field */
    display: block;
    /* ensure it appears for all elements */
}

/* Optional: red border on invalid inputs (if jQuery Validate doesn't add it) */
input.error,
select.error,
textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, .25);
}

/* Checkbox/radio adjustment */
input.error[type="checkbox"],
input.error[type="radio"] {
    outline: 1px solid #dc3545;
    outline-offset: 2px;
}

.red-error {
    color: #dc3545;
    font-size: 18px;
}

