* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none!important;
    font-family: "Quicksand", sans-serif;

    color: #1E1E1E;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f8ff;
}

::-webkit-scrollbar-thumb {
    background-color: #f0f8ff;
    border-radius: 10px;
 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #f0f8ff;
}

html {
    /* scrollbar-width: thin; */
    /* scrollbar-color: #f0f8ff var(--border-color); */
}
/* Width and height of the scrollbar */
::-webkit-scrollbar {
    width: 7px;
    height: 10px;
  }
  
  /* Track (the area where the thumb moves) */
  ::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
  }
  
  /* Scrollbar thumb (the draggable part) */
  ::-webkit-scrollbar-thumb {
    background: #f0f8ff;
    border-radius: 10px;
  }
  
  /* Hover effect on scrollbar thumb */
  ::-webkit-scrollbar-thumb:hover {
    background: #f0f8ff;
  }
  
:root {
    --primary-color: #2748E6;
    --secondary-color: #6a32cc;
    --text-color: #1E1E1E;
    --border-color: #ddd;
    --black-color: #000000;
    --white-color: #fff;


}

textarea{
    border: 1px solid var(--border-color);
}
.navbar-toggler:hover {
    box-shadow: none;
    transform: none;
    color: inherit;
}

.navbar-toggler::before {
    display: none;
}

a {
    text-decoration: none;
}

body {

    scroll-behavior: smooth;
    color: var(--text-color);
}

.h1,
h1,
h2,
h3,
h4,
h4,
h6,
p .h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-color);
    font-family: "Quicksand", sans-serif;
}

p {
    color: var(--text-color);
}

/* primary button  */
.primary-button {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: var(--primary-color);
    background-size: 400%;
    color: #fff;
    border: none;
    cursor: pointer;
}

.primary-button:hover::before {
    transform: scaleX(1);
}

.primary-button-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.primary-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background-color: var(--text-color);
    transition: all 0.475s;
}

.top-bar {
    padding: 10px 0;
}

.top-bar_heading {
    padding: 0;
    margin: 0;
}

.top-bar-container {

    background-color: var(--white-color);

}

.top-bar .title {
    font-size: 20px;
    color: var(--text-color);
    font-weight: 500;
    display: inline-block;

}

.top-bar .info-links li {
    padding-right: 8px;
    padding-left: 8px;

}
label {
    display: inline-block;
    font-size: 16px;
    margin-bottom: 6px;
    text-transform: capitalize;
}


.top-bar .info-links i {
    color: var(--secondary-color);
    font-size: 14px;
}

.top-bar .info-links a {
    color: var(--text-color);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;

}

.top-bar .info-links a:hover {
    color: var(--secondary-color);

}

.info ul li a:hover {
    color: unset
}

.social-icons a {
    display: inline-flex;
    cursor: pointer;
}

.social-icons a i {
    font-size: 16px;

    width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin: 0 3px;
    transition: 0.3s all;

}

.social-icons a i:hover {

    color: var(--secondary-color);
}

.top-right_links li {
    padding-right: 8px;
    padding-left: 8px;
}

.top-right_links button {
    margin-left: 25px;
}

.top-right_links li a {
    font-size: 16px;

    color: var(--white-color);
    font-weight: 600;
}

.top-bar-container {
    z-index: 3;
    position: relative;
}

.top-bar-container.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background-color: #f0f8ff;
}

/* Change the text and icon colors when fixed */
.top-bar-container.fixed-top .title,
.top-bar-container.fixed-top .info-links a,
.top-bar-container.fixed-top .info-links i,
.top-bar-container.fixed-top .social-icons a i {
    color: var(--text-color);
}

.header .navbar-nav .nav-link.active {
    color: rgba(0, 0, 0, .9);
}

.header .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: 0.3s;
    margin-inline-end: 40px;
    border-bottom: 2px solid transparent;
    padding: 0;
    position: relative;

}

.header .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0%;


    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}

.header .navbar-nav .nav-link:hover::after {
    width: 100%;


}


.header .navbar-nav .nav-link:hover {
    color: var(--primary-color);

}

.header .logo img {
    max-width: 170px;
    width: 100%;
    margin-inline: 45px;
}

.header .navbar-nav {
    padding: 10px 0px;
}

header {
    background-color: var(--white-color);
    border-radius: 50px;
    margin-top: 30px;
    padding: 0 10px;
}

header.fixed-top {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    width: 100%;
    margin: 0;
    animation: fadeInDown 0.5s ease-in-out 0s 1 normal none running;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
    /* background-color: var(--primary-color); */
}

header.fixed-top nav {

    z-index: 111111;

}


header.fixed-top {
    top: 44px;

}


.left-links {
    width: 33%;
}

.right-links {
    width: 36%;
}

/* scroll to top button */
.scrollto__topbtn {

    position: fixed;
    bottom: 2rem;
    right: 3rem;
    z-index: 99;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 2.8rem;
    border-radius: 50%;
    color: var(--white-color);
    height: 40px;
    width: 40px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    cursor: pointer;
    border: 0.2rem solid var(--secondary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.scrollto__topbtn i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.scrollto__topbtn:hover {
    margin-bottom: 4px;
    transform: unset;
    box-shadow: unset;
}

.scrollto__topbtn::before {
    position: unset;
}

/* =======
   section-banner-start
=======*/
/* section.banner {
    position: relative;
    background-image: url('https://shreethemes.in/veganfry/layouts/assets/images/bg/bg2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    border: none;

} */
section.banner {
    height: 100vh;
}



.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(2, 6, 23, 0.7); */
    background:
        linear-gradient(270deg, rgba(1, 0, 247, 0.12) 0%, rgba(106, 50, 204, 0.12) 100%),
        rgba(2, 6, 23, 0.4);

    z-index: 2;
    animation: gradientMove 8s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.carousel-inner img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.carousel-item.active img {
    animation: zoomIn 10s ease-in-out;
}

section.banner .text-area {
    z-index: 3;
}

section.banner .text-area h1 {
    color: var(--white-color);
    font-family: "Quicksand", sans-serif;
    font-size: 80px;
    font-weight: 600;
    text-transform: capitalize;
    font-style: normal;
    line-height: 90px;

    word-spacing: 8px;
}

section.banner .text-area p {
    text-align: center;
    color: var(--white-color);
    font-family: "Quicksand", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 35px;
    letter-spacing: 0.7px;
    word-spacing: 0px;
    line-height: 61px;
    margin-inline: auto;
    line-height: 26px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 0;
}



.banner .text-area {
    padding: 0em !important;

    animation: fadeInUp 2s ease-in-out forwards;
    border: none;
    opacity: 0;
    position: relative;
    /* top: -120px; */
    bottom: 100px;

}

.carousel-caption {
    position: absolute;
    right: 0;
    bottom: -50%!important;
    width: 100%;
    height: 100%;
    left: 0!important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.carousel-control-next {
    right: 30px;
}

.carousel-control-prev {
    left: 30px;
}


.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;

    width: 40px;
    height: 40px;
    margin-top: calc(0px - 40px / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
    background-color: var(--white-color);

}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 18px;
    color: var(--text-color);
    margin: auto;



}

.carousel-control-prev:hover,
.carousel-control-next:hover {

    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    

}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: var(--white-color);

}

.large-btn button {
    padding: 18px 50px;
    margin-top: 30px;
    border-radius: 30px;

}

.large-btn .primary-button {
    background-color: transparent;
    border-color: var(--white-color);
    border: 1px solid var(--white-color);
    height: auto;
}

/* .btn-large-outline .primary-button {
    background-color: transparent;
    border-color: var(--white-color);
    border: 1px solid var(--white-color);
    height: 4rem;
    padding: 18px 60px;
    margin-top: 30px;
    border-radius: 30px;
} */



/* .btn-large-outline .primary-button::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
} */






/* =======
   section-product-start
 ======= */
.featured_items {
    margin-top: 80px;
}

.product-list {


    padding: 100px 0;

    background-color: var(--light-gray-bg);
    background-image: url('../img/Services-Section.png');
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    border: none;
    height: 100%;
}

.obj-icon {
    position: absolute;
    bottom: 0;
    left: 20%;
}

.objec-right {
    position: absolute;
    bottom: 0;
    right: 20%;
}

.obj-icon img,
.objec-right img {
    width: 90px;
}

.order-heading {
    text-align: center;
    margin-bottom: 20px;
   
}

.divider.style-1.center {
    margin: 15px auto 0 auto;
    position: relative;
}

.divider.style-1 {
    width: 90px;
}

.divider .hr-simple {
    position: absolute;
    height: 1px;
    width: 30px;
    background-color: var(--primary-color);
}

.divider .hr-simple.left {
    left: 0px;
}

.divider .hr-simple.right {
    right: 0px;
}

.divider .hr-icon {
    position: absolute;
    font-size: 6px;
    top: -3px;
    left: calc(50% - 5px);
    color: var(--primary-color);
}

.owl-carousel .owl-item {
    min-height: 0px !important;

}

.featured_items .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
    /* width: 324px !important; */
    display: flex;
    justify-content: center;
    background-color: transparent !important;
    box-shadow: none !important;
}


*/
/* .sub_title:after {
    content: ' ';
    display: block;
    width: 6rem;
    height: 2px;
    margin: auto;
    background-color: #222222;
}

.sub_title:after {
    background-color: var(--secondary-color);
} */



.order-heading h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Quicksand", sans-serif;
}

.service_items {
    background-color: var(--white-color);

    position: relative;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 90%;
    border: 1px solid #E4F1FF;
    margin-bottom: 30px;
    margin-top: 10px;
    border-radius: 12px;
    transition: all .6s linear;
    cursor: pointer;
}

.service_items:hover {
    transform: scale(1.01);
}

.service_items__post_thumb {
    max-width: 100%;
    padding: 10px 10px;
    margin: 0 auto 0em;
    overflow: hidden;
    position: relative;
    height: 270px;

    transition: all .6s linear;


}

.service_items__post_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 12px;

}

.service_items_title {
    margin-top: 0;
    color: var(--secondary-color);
    color: var(--text-color);
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}


.sc_services_bottom_link {
    background-color: #E4F1FF;
}

.sc_services_bottom_link {
    color: #929292;
}

.sc_services_bottom_link {
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    width: 2.6em;
    height: 1.2em;
    line-height: 1.9em;
    vertical-align: bottom;
    left: 0;
    right: 0;
    -webkit-border-radius: 6em 6em 0 0;
    -moz-border-radius: 6em 6em 0 0;
    border-radius: 6em 6em 0 0;
    margin: auto;
}

.sc_services_bottom_link i {
    color: var(--text-color);
    font-size: 13px;
}

.service_items:hover .service_items_title {
    color: var(--text-color);
}

/* .service_items:hover .service_items__post_thumb img {
    transform: scale(1.05);
    padding: 0;


} */




.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 7px;
    background: transparent !important;
    border: 1px solid var(--primary-color);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    padding: 6px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color) !important;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    background: transparent !important;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--text-color);

    padding: 0 !important;
    /* border-radius: 50% !important; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-theme .owl-nav i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-color);
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--secondary-color);
}

.owl-theme .owl-nav i:hover {
    color: var(--white-color) !important;
}


.owl-prev {
    position: absolute;
    right: 60px;
    top: -10%;
    transform: translateY(-50%);
}

.owl-next {
    position: absolute;
    right: 0px;
    top: -10%;
    transform: translateY(-50%);
}

/* ------- mission-vission start ------- */
.mission-vission {

    padding: 100px 0;

    background-image: url('../img/Mission\ &\ Vision\ Section.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
    position: relative;
    border: none;
    height: 100%;
}

.mission-cards {
    padding-top: 80px;
}

.order-heading h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Quicksand", sans-serif;
}

.images-container,
.images-container-mission {
    position: relative;
}

.images-container img,
.images-container-mission img {
    border-radius: 16px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.text-area {
    padding: 2em 9%;
    border-radius: 0px 20px 20px 0px;
    border: 1px solid var(--Primary-Tint, #E4F1FF);
    border-left: none;
}

.update-border .text-area {
    border-radius: 20px 0px 0px 20px;
    border: 1px solid var(--Primary-Tint, #E4F1FF);
    border-right: 0;
}

.text-area h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    font-family: "Quicksand", sans-serif;
}

.text-area p {
    font-size: 17px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 300;
    line-height: 30px;
}

.tagline {
    font-family: "Quicksand", sans-serif;
    font-size: 28px;
    font-weight: 600 !important;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.tagline::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
}

/* ------greek-wrap------ */




.all-product-content {
    padding: 100px 0;

    background: var(--Primary-Tint, #E4F1FF);

}

.restaurant-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding-bottom: 20px;
    padding: 30px;
}

.resturant-card-top {
    border-radius: 20px;
    border: 1px solid var(--Primary-Tint, #E4F1FF);
    background: #FFF;
    padding: 30px 30px 20px 30px;
}

.restaurant-image {
    position: relative;
    width: 100%;
    height: 230px;
    border: none;

}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.restaurant-title {



    font-size: 30px;
    font-weight: bold;
    z-index: 1;
    letter-spacing: 1px;
    padding-bottom: 10px;
    line-height: 36px;
    color: var(--primary-color);

}




.restaurant-info {
    padding: 30px 0 0 0;
    text-align: left;
}

.restaurant-info p {
    margin-bottom: 0;
}

.restaurant-description {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 300;
    line-height: 30px;
    color: var(--text-color);
    padding-bottom: 20px;
}

.list-group-item {
    border: none;
    padding: 10px;
}

ul.list-unstyled {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-item {
    text-align: center;
    font-size: 13px;
    color: var(--Secondry, #6A32CC);
    display: flex;
    align-items: center;

    padding: 5px 0;
    font-weight: 700;


}

.list-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--Primary-Tint, #E4F1FF);


}



.list-item i {
    margin-right: 5px;
    color: var(--Secondry, #6A32CC);
}





.menu-content {
    border-radius: 20px;
    border: 1px solid var(--Primary-Tint, #E4F1FF);
    padding: 20px;
    margin-top: 30px;




}

.menu-img {
    height: 230px;
    width: 100%;
    border-radius: 20px;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 20px;
}

.menu-item-card-des {
    border-bottom: 1px solid var(--Primary-Tint, #E4F1FF);
}

.menu-item-card h4 {
    color: var(--Secondry, #6A32CC);
    color: var(--text-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;

}

.menu-item-card p {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    padding-top: 10px;

}


.price {
    color: var(--primary-color) !important;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 26px;
}


.menu-item-prices {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.qty-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer__cart-items-wrapper .qty-container {
    justify-content: flex-start;
}

.qty-container .input-qty {
    text-align: center;
    padding: 1px 5px;
    border: 1px solid var(--Secondry, #6A32CC);
    max-width: 66px;

    border-radius: 4px;
    margin-inline: 6px;
    color: var(--secondary-color);
}

.qty-container .qty-btn-minus,
.qty-container .qty-btn-plus {

    border: 1px solid var(--Secondry, #6A32CC);
    padding: 4px 9px;
    font-size: 10px;
    height: 20px;
    width: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
}


.qty-container i {
    color: #fff;
    margin: auto;
}

.cart-button i {
    color: var(--secondary-color);
    font-size: 20px;

}

.cart-button button {
    border: none;
    background-color: transparent;
    padding-left: 30px;

}

.cart-button button i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: all ease-in-out 0.3s;
}

.cart-button button i:hover {
    background-color: #f0f8ff;
    transform: translateY(-3px);
}

.qty-container .qty-btn-plus {
    margin-left: -1px;
}

.qty-container .qty-btn-minus {
    margin-right: -1px;
}

.qty-btn-minus,
.qty-btn-plus {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-color: var(--secondary-color);
}

.tags-container {
    border-top: 1px solid var(--border-color);
}

.add-menu-btn .primary-button {
    border: none;
    display: block;
    margin: auto;
    padding: 13px 40px;
    margin-top: 50px;
    height: 3.5rem;
    background-color: var(--primary-color);
    border: 0px;
}



.add-menu-btn .primary-button-content {
    color: var(--white-color);
}

.add-menu-btn .primary-button:hover span {
    color: var(--white-color);
}

.fixed-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.order-right-links {
    border-left: 1px solid var(--border-color);
}

.fixed-sidebar p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.fixed-sidebar ul li {
    margin-bottom: 10px;
    text-align: right;
}

.fixed-sidebar ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.fixed-sidebar ul li a:hover {
    color: var(--secondary-color);
}

.product_sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--white-color);
    min-height: 90vh;
    /* Use min-height instead of height */
}

.product_sidebar .list-container {
    background-color: #f0f8ff;
    padding: 5px 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-right: 3px;
}

.list-category-toggle {
    padding-left: 0;
    padding-top: 20px;
}

.list-category-toggle li {
    list-style: none;
    border-bottom: 1px dashed #E4F1FF;
    padding: 12px 0;
}.list-category-toggle li {
    list-style: none;
    padding: 12px 3px;

    transition: border-left 0.3s ease;
}




.widget-title {
    padding: 8px 10px;
    margin-bottom: 20px;
    border-left: 2px solid var(--secondary-color);
    font-size: 19px;
    font-weight: 600;
}

.sidebar-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;


    border-bottom: 1px solid var(--Primary-Tint, #E4F1FF);
}

.widget-count {
    display: inline-block;
    background-color: var(--primary-color);
    /* padding: 10px; */
    border-radius: 50%;
    color: var(--white-color);
    font-size: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-toggle-tab a {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-color);
    transition: 0.3s;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    text-transform: uppercase;
}

.item-toggle-tab a {
    color: inherit;

    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.item-toggle-tab a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.item-toggle-tab a:hover i {
    color: var(--primary-color);

}

.item-toggle-tab a i {
    padding-right: 5px;
}

/* footer */
.footer {
    background-color: #f0f8ff;

    padding: 100px 0 50px 0;
}

.footer-logo img {
    max-width: 60%;
}

.footer-description p {
    font-size: 17px;
    line-height: 26px;
    color: var(--text-color);
    font-weight: 300;
    padding-top: 30px;

}

.text-area-content.dsv h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
}

.text-area-content ul {
    padding: 0;
    margin: 0;
}

.text-area-content.dsv ul.footer-vsdf li {
    padding: 5px 0;
    transition: all .3s ease-in-out;
}

.text-area-content.dsv ul.footer-vsdf li a {
    font-size: 18px;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.text-area-content ul li a:hover {
    padding-left: 2px;
    text-decoration: underline;
}

.text-area-content {
    display: block;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-widget__social {
    display: flex;
    align-items: center;
    /* justify-content: end; */
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-widget__social a {
    height: 40px;
    width: 40px;
    color: var(--secondary-color);
    background: transparent;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    border: 1px solid var(--secondary-color);
    display: flex;
    text-decoration: none;
    margin-inline-end: 20px;
}

.footer-widget__social a i {
    margin: auto;
    color: var(--secondary-color);
}

.footer-widget__social a:hover {
    color: var(--white-color);
    background: var(--secondary-color);
    border: 1px solid var(--secondry-solid-color);
}

.footer-widget__social a:hover i {
    color: var(--white-color);

}

.copyright {

    border-top: 1px solid var(--Primary-Tint, #E4F1FF);
    text-align: center;
}

.copyright p {
    padding-top: 30px;
    color: var(--text-color);
}


/* bredcrumb */


.breadcrumb {

    padding: 30px 0 10px 0;
    color: #272042;
    font-size: 16px;
    margin-bottom: 0;
}

.breadcrumb ul {
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrumb li {
    list-style: none;
    display: inline-block;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb li:after {
    content: "/";
    padding: 7px 5px;
}

.breadcrumb li:last-child:after {
    content: "";
    padding-right: 0px;
}

.breadcrumb li:first-child {
    padding-left: 0px;
}

.breadcrumb li a {
    color: var(--text-color);
}

.breadcrumb li a.current {
    color: var(--primary-color);
    font-weight: 700;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

/* cater details */
.mealc-header {
    margin-top: 50px;
}

.mealc-header .mealc-img {
    position: relative;
    border-radius: 10px;
    height: 520px;
}

.mealc-header .mealc-img img {
    border-radius: 10px;

    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

.mealc-header .mealc-img .complogo {
    position: absolute;
    top: 15px;
    left: 10px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 34%);
    padding: 10px;
    border-radius: 12px;
    width: 110px;
    height: 110px;
    background-color: #fff;
    vertical-align: middle;
}

.mealc-header .companyinfo {

    margin-left: 50px;
}

.mealc-header .companyinfo h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #081F32;
    padding-bottom: 15px;
    padding-top: 0;
}

.product-details__short-description {

    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text-color);
    padding-bottom: 20px;

}

.catering-side__tags {
    border-top: 1px solid var(--Primary-Tint, #E4F1FF);

    padding: 20px 0;
}

.catering-side__tags h3 {
    font-size: 16px;
    color: var(--primary-color);
}


.service-size__chips {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;


}

.service-size__chips .item-tags {
    margin: 0 6px 4px 0;
    padding: 4px 7px;
    min-width: 26px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 17px;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid var(--Primary-Tint, #E4F1FF);
    background-color: #E4F1FF;
    color: var(--text-color);
    font-weight: 400;

}
.item-tags{
    display: inline-block;
    padding: 7px 7px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border: 1px solid var(--Primary-Tint, #E4F1FF);
    background-color: #E4F1FF;
    color: var(--text-color);
    font-weight: 400;
    border-radius: 6px !important;
    
  

}
.item-tags:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
.border-bottom-container {
    border-bottom: 1px solid var(--Primary-Tint, #E4F1FF);
    padding: 20px 0;
}

.additional-info h3 {
    font-size: 16px;
    font-weight: 700;
    padding-left: 4px;

}

.pb-10 {
    padding-bottom: 5px;
}

.pt-10 {
    padding-top: 5px;
}

.pt-20 {
    padding-top: 20px;
}

.additional-info svg {
    width: 16px;
}

.infor-detail {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 500;
    padding-left: 20px;
}

.additional-info p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
}

.additional-info ul {
    margin-bottom: 0;
    padding-left: 20px;
    list-style-type: none;
}

.additional-info ul li {
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding-left: 10px;
}

.additional-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--text-color);
}

.additional-info ul li {
    color: var(--text-color);
}





.c-tabs-wrapper {
    margin: 100px 0;
}

.custom-tabs .nav-link {
    color: var(--text-color);
    min-width: 278px;
    font-size: 15px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: background-color 0.3s ease;
    text-align: center;
    padding: 15px;
    font-weight: 500;

}

.custom-tabs {
    margin: 0 0 55px;
    /* background-color: #f0f8ff; */

    /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); */
    padding: 10px;
    border-bottom: 1px solid var(--Primary-Tint, #E4F1FF);
    display: flex;
    align-items: center;
    justify-content: center;

}

.custom-tabs .nav-link {
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--text-color);
    border: none;

}

.custom-tabs .nav-link:after {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: var(--primary-color);
    height: 2px;
    transition: width 0.4s ease;
}

.custom-tabs .nav-link:hover {

    color: var(--text-color);
}

.custom-tabs .nav-link:hover {
    width: 100%;

}

.custom-tabs .nav-link.active::after {

    width: 100%;
    color: var(--white-color);

}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
}



.tab-content .tab-pane {
    transition: opacity 0.4s ease-in-out;
}

.tab-content p {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
}

.tab-pane {
    opacity: 0;
}

.tab-pane.show {
    opacity: 1;
}

.animated {
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mealsgallery {
    margin-top: 70px;
    margin-bottom: 50px;
    /* padding: 100px 0; */
    background-image: url('../img/Mission\ &\ Vision\ Section.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 100vh; */
    position: relative;
    border: none;
    height: 100%;

}

.mealsgallery h1 {
    font-weight: 800;
    font-size: 48px;
    line-height: 140%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-top: 30px;
    padding-bottom: 60px;
}

.mymealsgallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 2fr));
    grid-auto-rows: 320px;
    grid-auto-flow: dense;
}

.mymealsgallery>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}

.mymealsgallery>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 2px 16px var(--shadow);
    border-radius: 10px;
}

.mymealsgallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(340px, 2fr));
    grid-auto-rows: 320px;
    grid-auto-flow: dense;
}

.horizontal {
    grid-column: span 2;
}

.vertical {
    grid-row: span 2;
}

.mat-dialog-container {
    margin: auto;
    top: 50% !important;
    transform: translateY(-50%) !important;
    position: fixed !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
}

.mat-mdc-dialog-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    height: auto !important;
    z-index: 1111 !important;
}

.modal-backdrop.show {
    opacity: 0;
}




.cart-main-box {
    width: 100%;
    display: inline-block;
    margin-top: 20px;

}

.cart-box {
    width: 100%;
    display: inline-block;
    max-width: 1330px;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 5px 34px #00000029;
    margin-bottom: 50px;
}

.order-review__card .cart-box {
    box-shadow: none;
    position: relative
}

.order-review__card .cart-box {
    box-shadow: none;
    max-width: 100%
}

.delivery-order-box form,
.delivery-order-box .formdiv {
    padding: 60px 40px;
    text-align: left
}

.cart-box h2 {
    width: 100%;
    display: inline-block;

    background-color: #f0f8ff;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 30px 0;
    text-align: center;
}

.cart-tile-box {
    width: 100%;
    float: left;
    padding: 40px 0
}

.cart-tile-head {
    width: 100%;
    float: left;
    text-align: left;
    padding: 0 40px
}

.cart-descr-title {
    width: calc(100% - 250px);
    float: left;
    font-size: 24px;
    color: #1d212d;
    letter-spacing: 4.2px;
}

.cart-price {
    width: 160px;
    float: left;
    font-size: 24px;
    color: #1d212d;
    letter-spacing: 4.2px;
    text-align: center;
}

.cart-body {
    width: 100%;
    float: left
}

.cart-body-tile {
    width: 100%;
    float: left;
    padding: 20px 40px;
    transition: all .3s ease-in-out;
    cursor: pointer;
    margin-bottom: 10px;
}

.cart-body-tile:hover {
    background-color: #f5f5f5;

}



.dog-meat-box {
    width: calc(100% - 400px);
    float: left;
    text-align: left;
    display: flex;
    align-items: flex-start;
}

.alert-text p {
    font-size: 12px;
    color: #373737;
    line-height: 20px
}

.dog-meat-img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    min-width: 120px;
}

.dog-meat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 6px;

}

.dog-meat-matter h3 {
    font-size: 26px;
    line-height: 26px;
    color: var(--text-color);
    text-transform: capitalize
}

.dog-meat-matter h3 i {
    color: var(--primary-color);
    font-size: 19px
}

.dog-meat-matter p {
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    margin-top: 5px;
    width: 90%;
}

.dog-meat-matter p a {
    font-size: 12px;
    color: #373737;
    font-weight: 600;
    letter-spacing: .48px;
    text-decoration: underline
}

.quantity-control input {
    max-width: 60px;
    text-align: center;
}

.quantity-control {
    display: flex;
    /* margin-right: 10px; */
    align-items: center;
}

.checkout-order-summary {
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 5px 34px #00000029;
    display: inline-block;

    margin-bottom: 50px;
    border-radius: 8px;
    border: none;
    width: 100%;
    position: relative;


}
.sticky-top150px{
    position: sticky;
    position: -webkit-sticky;
    top: 150px;
}
.checkout-order-summary .card-body{
    position: sticky;
    top: 20%;
    position: -webkit-sticky;
}

.padd {
    padding: 20px 10px !important;
}

.order-summery-header h5 {
    width: 100%;
    display: inline-block;
    background-color: rgba(39, 72, 230, 0.9);
    background-color: #f0f8ff;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 20px 0;
    text-align: center;
}

.product-title-text h5 {
    font-size: 14px;
}


.p-price {
    width: 150px;
    float: left;
    font-size: 20px;
    color: #1d212d;
    letter-spacing: 2.6px;
    text-align: left;
    font-weight: 400;
    text-align: center;

}

.plus-minus-num {
    font-size: 20px;
    font-weight: 500 !important;
    line-height: 26p
}

.price span {
    font-weight: 400;
}

.plus-mins-box_wrap {
    width: 150px;
    float: left;
    text-align: left;
}

.close {
    width: 100px;
    float: left;
    margin-top: 5px;
    text-align: center
}


.close a i {
    font-size: 22px;
}

.sub-total-wrapper {
    width: 100%;
    float: left
}

.subtotal-tile {
    width: 100%;
    float: left;
    padding: 10px 40px
}

.subtotal-tile {
    border-top: 2px solid var(--Primary-Tint, #E4F1FF);
}

.alert-msg {
    font-size: 13px;
    color: #373737;
    line-height: 20px;
    border-radius: .25rem;
    padding: 8px 16px;
    background-color: #f5f1e6;
    border-color: #f5f1e6;
    margin-top: 5px
}

.grand-tile {
    width: 100%;
    float: left;
    border-top: 2px solid var(--Primary-Tint, #E4F1FF);
    border-bottom: 2px solid var(--Primary-Tint, #E4F1FF);
    padding: 10px 40px
}

.sbtotal-left-box {
    width: calc(100% - 250px);
    float: left;
    text-align: right;
    padding-right: 30px;
    font-size: 26px;
    color: #373737;
    font-weight: 500
}

.deliverycharge {
    display: inline-flex
    ;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
}

.deliverycharge span{
    text-align: left;
    font-size: 11px;
}
.deliverycharge .toottip_poup {
    margin-right: 10px
}

.sbtotal-right-box {
    width: 250px;
    float: left;
    font-size: 22px;
    color: #1d212d;
    letter-spacing: 2.6px;
    text-align: left
}

.promo_input {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.current-blc {
    display: flex;
    align-items: center
}

.current-blc .btn {
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    transition: all .8s ease;
    border-radius: 8px;
    text-shadow: 0 1px 0 #fff;
    margin-left: 10px;
    background: transparent;
    padding: 6px 12px
}

.current-blc h4 {
    font-size: 16px;
    color: #373737;
    line-height: 20px;
    text-align: left
}

.promo_des {
    display: flex;
    align-items: baseline
}

.promo_input .input-group {
    outline: none;
    transition: background-color 5000s ease-in-out 0s;
    font-weight: 400;
    font-size: 16px;
    height: 50px;
    color: gray;
    border-radius: 13px;
    max-width: 340px;
    border: none
}

.promo_input i {
    position: absolute;
    right: 29%;
    top: 34%;
    color: var(--primary-color)
}

.promo_input input {
    position: relative
}

.promo_input .form-control,
.promo_input .form-control:hover,
.promo_input .form-control:focus {
    border: 1px solid var(--primary-color);
    position: relative
}

.promo_input .input-group-text {
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    letter-spacing: .2px
}

.promo_input .input-group-append {
    border: 1px solid var(--primary-color);
    border-top-right-radius: 13px;
    border-bottom-right-radius: 13px
}

.promo_input .input-group-append:hover {
    background-color: #5b8e7d;
    border-color: #5b8e7d;
    color: #fff
}

.promo_input .input-group-text:hover {
    color: #fff
}

.promo_title {
    width: calc(100% - 250px);
    float: left;
    text-align: right;
    padding-right: 30px;
    font-size: 20px;
    color: #373737;
    font-weight: 500
}

.promo_price {
    width: 250px;
    float: left;
    font-size: 22px;
    color: #1d212d;
    letter-spacing: 2.6px;
    text-align: left;
}


.proceed-box .non-veg-btn-box .btn {
    float: right;
    display: inherit;
    max-width: 324px;
    min-width: 324px;
    height: 55px;
    min-height: 53px;
    margin-right: 40px;
    margin-bottom: 30px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);

    padding: 0 16px;
    color: var(--white-color);
    letter-spacing: .64px;
    margin-top: 10px;
    font-size: 19px
}



.proceed-box .non-veg-btn-box {
    float: right;
    display: inherit
}

.proceed-box button {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.proceed-box button {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.proceed-box button {
    float: right;
    display: inherit;
    max-width: 324px;
    min-width: 324px;
    margin-right: 40px;
    margin-bottom: 30px;
    margin-top: 20px;
    border: none;
    background-color: var(--primary-color);
    font-size: 20px;
    font-weight: 800;
}

/* =======
  detial_form
 =======*/
.detial_form {
    padding: 30px 40px;
}

.form-control ,
.form-select{
    min-height: 50px;
    border-radius: 6px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control:focus,
.form-select:focus {
    color: var(--text-color);
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

.sidebar {
    width: 400px;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    height: 100vh;
    transition: transform 0.6s ease;

    transform: translateX(0);

}

.sidebar.closing {
    transform: translateX(100%);

}

.sidebar.hidden {
    display: none;

}


/* USER SIGNUP */

.login-box {
    width: 100%;
    display: block;
    max-width: 500px;
    position: relative;
    margin: auto;
}

.login-form- {
    width: 100%;
    float: left;
}

.login-sub-box {
    width: 100%;
    display: inline-block;
    margin: 30px 0px 50px 0px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: #f2f0ee 0px 1px 0px, #f2f0ee 0px 8px 24px, #f2f0ee 0px 16px 48px;
}

.user-title {
    width: 100%;
    display: inline-block;
    font-size: 30px;

    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);


}

.form-group .primary-button {
    width: 100%;
    max-width: 190px;
    /* min-height: 53px; */
    margin: 20px auto;
    display: block;
}

.login-form-tile {
    width: 100%;
    float: left;
    padding: 40px 50px 40px 50px;
}

.form-icon {
    position: relative;
}

.form-icon span i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    color: var(--secondary-color);
    font-size: 14px;
    cursor: pointer;
}

.form-icon input {
    padding-right: 33px;
}

.forgot-link {
    width: 100%;
    text-align: right;
}

.forgot-text {
    font-size: 14px;
    color: #1E1E1E;
    font-weight: 600;
    transition: all 0.2 linear;
}

.forgot-text:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.card-header {
    background-color: #f0f8ff;
    border: none;
    font-size: 26px;

    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}




.or-box {
    width: 330px;
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

.or-text {
    width: 100px;
    display: inline-block;
    font-size: 16px;
    color: #bebebe;
    background-color: #fff;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.or-border {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ccc;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.signup-bottom-txt-box {
    width: 100%;
    float: left;
    background-color: #f0f8ff;
    padding: 30px 50px 30px 50px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: center;
}

.signup-bottom-txt-box p {
    font-size: 18px;
    color: #444;
    margin-top: 7px;
}

.signup-bottom-txt-box a {

    font-weight: 600;
}

.signup-bottom-txt-box span {

    padding-left: 5px;
    font-weight: 600;
}

.signup-bold-txt {
    font-weight: 600;
}

.signup-bottom-txt-box p:first-child {
    margin: 0;
    color: #333333;
    padding: 0;
}

.signup-bottom-txt-box p a {

    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.2s linear;
    position: relative;
    border-bottom: 2px solid transparent;


}

.signup-bottom-txt-box p a:hover::after {
    width: 0%;
}

.signup-bottom-txt-box p a::after {
    content: "";
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;

}

.signup-bottom-txt-box p a:hover {
    text-decoration: none;
    color: var(--primary-color);
}

.invalid-feedback,
.invalid-feedback div {

    color: #dc3545 !important;
    font-size: 12px;
    font-weight: 500;

}

/* MY ORDERS */
.all-orders {
    margin: 50px 0;
}

.table-title {

    background-color: #f0f8ff;
    padding: 16px 25px;

    border-radius: 8px;
    margin-bottom: 30px;
}

.table-title span i {
    color: var(--primary-color);
    font-size: 26px;
    cursor: pointer;

}

.table-title h1 {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
}

.order-table {
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: #f2f0ee 0px 1px 0px, #f2f0ee 0px 8px 24px, #f2f0ee 0px 16px 48px;
    padding: 20px;
}

.table {
    margin-bottom: 0rem;
}

.table th {
    /* border: none; */
    color: var(--text-color);
    text-transform: capitalize;
    padding: 12px 15px;
}

table.table tr td {

    padding: 12px 15px;
    color: var(--text-color);

}

.view i {
    color: var(--text-color);
    transition: all .3s ease-in-out;
    cursor: pointer;
    font-size: 16px;
    cursor: pointer;
}

.view i:hover {
    color: var(--secondary-color);
}

.table-hover tbody tr:hover {
    background-color: #f5f5f5;

}

/* ORDER DETAILS */
.order-detail-container {
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: #f2f0ee 0px 1px 0px, #f2f0ee 0px 8px 24px, #f2f0ee 0px 16px 48px;
    padding: 40px;
}


.order-header-info {
    margin-bottom: 30px;
}

.order-header-info p {
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 500;
}

.badge-approved {
    background-color: var(--primary-color);
    color: white;
}

.order-info-container {
    display: flex;
    align-items: flex-start;

    box-shadow: 0 5px 34px #00000029;
    padding: 20px 15px;
    gap: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.card-icon span {
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon span i {
    color: var(--white-color);
}

.card-header-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    transition: 0.3s;


    position: relative;
    margin-bottom: 10px;
}

.order-info p {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 400;
}

.order-info p strong {
    font-size: 14px;
}


/* ======= */
.banner{
    background-image: url('../img/Catering-Banner-Image.png');
    height: 300px;
    width: 100%;
 
    background-position: center center;
    background-size: cover;
}
.banner-food-truck{
    background-image: url('../img/Food-Truck-Banner-Image.png');
    height: 350px;
    width: 100%;
 
    background-position: center center;
    background-size: cover;
    position: relative;
}
.carousel-item::before {
    background: none;
}
/* filters sidebar */
.filter-sidebar {
 

    padding: 15px;
    border-radius: 10px;
    background-color: var(--white-color);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    padding: 15px;
    border-radius: 10px;
    background-color: var(--white-color);
    height: 80vh;
    overflow-y: scroll;

  }
  .filter-heading{
    padding: 8px 0px;


    font-size: 19px;
    font-weight: 600;
  }
  .filter-sub-heading{
    padding: 8px 0px;
margin-bottom: 20px;

    font-size: 19px;
    font-weight: 600;
  }
  .add-border{
    border-bottom: 2px solid var(--Primary-Tint, #E4F1FF);
  }
  .filter-group {
    margin-bottom: 20px;
  }
  
  .filter-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .filter-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #a372c7;
    border-radius: 4px;
    background-color: #f5f5f5;
  }
  
  .menu-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  .menu-btn {
    padding: 8px;
    border: 1px solid #a372c7;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #a372c7;
    font-weight: bold;
    cursor: pointer;
  }
  
  .menu-btn:hover {
    background-color: #a372c7;
    color: #fff;
  }
  
  .checkbox-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  input[type="checkbox"] {
    margin-right: 8px;
  }
  

  /* get quote */
.wave-bg{
    background-image: url('../img/svg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}


/* form container */
.form-container{
    background-color: var(--white-color);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: #f2f0ee 0px 1px 0px, #f2f0ee 0px 8px 24px, #f2f0ee 0px 16px 48px;
    margin-bottom: 4rem;
}
.form-container .form-check-inline{
    margin-bottom: 1rem;
    padding-left: 0;
}
.form-header-text h2{
    color: var(--primary-color);
}

.blog-card {
    overflow: hidden;
    background: #fff;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    min-height: 22rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #E4F1FF;
    border-radius: 12px;
    transition: all .6s linear;
    cursor: pointer;
    min-height: 400px;
    position: relative;
  }
  .blog-card_date {
    position: absolute;
    right: 12px;
    top: -22px;
    left: 14px;
    font-size: 12px;
    font-weight: 300;
    color: #484848;
}
  .blog-card .blog-img {
    padding: 10px 10px 0 10px;
    transition: 0.6s ease-in-out;
    height: 180px;
    border-radius: 12px;
  }
  .blog-card img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .blog-card:hover .blog-img {
    transform: scale(1.01);
    /* padding: 0; */
  }
  .blog-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-block: 2rem;
    padding: 0 15px  0 15px ;
    position: relative;
  }
  .blog-title {
    margin-bottom: 0rem;
    font-size: 18px;
    margin-top: 5px;
  }
  .blog-desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
    margin-bottom: 0;
  }
  .blog-card .read-more {
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-size: 14px;
    transition: 0.3s;
    margin-inline-end: 4rem;
    border-bottom: .2rem solid transparent;
    padding: 0;
    color: #2748e6;
    width: fit-content;
    position: absolute;
    left: 15px;
    bottom: 15px;
}
  .blog-card .read-more i {
    transform: rotate(-40deg);
    transition: 0.4s ease-in;
  }
  .blog-card .read-more:hover i {
    transform: rotate(0deg);
    color: #2748e6;
  }
  .blog-card .read-more::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0rem;
    width: 0;
    height: 1px;
    color: #2748e6;
    transform: translateX(-50%);
    background-color: #2748e6;
    transition: all 0.3s linear;
  }
  .blog-card .read-more:hover::after {
    width: 100%;
    color: #2748e6;
  }
  .blog-card .read-more:hover {
    color: #2748e6;
  }
  
  /* general css  */
  
  .text-700{
    font-weight: 700;
  }
  .text-600{
    font-weight: 700;
  }

  /* Blog Detail  */
  .blog-detail-page {
    padding: 0px 0px;
    text-align: center;
  }
  .blog-header {

    color: var(--white-color);
    padding: 10px 0px;
    text-align: center;
  }
  .cover-container {
    height: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(270deg, rgba(1, 0, 247, 0.12) 0%, rgba(106, 50, 204, 0.12) 100%);
    background-size: cover;
    background-position: center;
    padding: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(1, 0, 247, 0.12) 0%, rgba(106, 50, 204, 0.12) 100%);
    
    z-index: 1;
    border-radius: 12px;
}

.blog-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}


.content-bottom-left {
    z-index: 2;
    padding: 55px;
    bottom: 0;
    background-color: var(--white-color);
    position: relative;
    width: 100%;
    max-width: 1000px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  
    margin: auto;
    margin-top: -100px;
    border-radius: 6px;
}

.content-bottom-left .blog-title {
    font-size: 55px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.blog-date {
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    margin-left: 5px;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}
  .blog-content-main {
    max-width: 1000px;
    width: 100%;

    text-align: left;
    background: var(--white-color);
    padding-top:60px ;
  margin: auto;
 
  }
  

  /* blog list */
  .blog-header-section{
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-image: url('../img/blog-cover.jpeg');
 
  }
  
  .overlay-blog-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-title {
    font-size: 3rem;
   font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color:var(--white-color);
  }
  
  .header-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color:var(--white-color);
  }
  
  .search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 40px; 
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
  }
  
  .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
  }
  .blog-list-top-div{
    margin-top: -6rem;
    z-index: 1;
    position: relative;
  }
  
  .form-check-input:focus{
    box-shadow: none;

  }
  .overflow-hide{
    overflow: hidden;
  }
  .middle{
    vertical-align: middle;
  }
  .blog-card_date i{
    margin-right: 5px;
  }