@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-white: white;
    --color-black: #3b4238;
    --color-light-grey: #eef0ed;
    --color-green: green;
    --color-dark-green: rgb(0, 58, 0);
    --color-blue: rgb(77, 172, 220);
    --color-dark-grey: #dbdddb;
}

/* slider-hidden */
.hidden {
    display: none;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;


}

/* Hide the up and down arrows in number input */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* FLOATS */
.ez-float-right {
    float: right;
}

.ez-float-left {
    float: left;
}

.ez-clear-right {
    clear: right;
}

.ez-clear-left {
    clear: left;
}

.ez-clear-both {
    clear: both;
}

/* DISPLAY */
.ez-none {
    display: none;
}

.ez-flex {
    display: flex;
}

.ez-grid {
    display: grid;
}

.ez-dtable {
    display: table;
}

.ez-block {
    display: block;
}

.ez-inline {
    display: inline;
}

.ez-inline-block {
    display: inline-block;
}

.ez-inline-flex {
    display: inline-flex;
}

/* POSITIONS */
.ez-static {
    position: static;
}

.ez-relative {
    position: relative;
}

.ez-absolute {
    position: absolute;
}

.ez-fixed {
    position: fixed;
}

.ez-sticky {
    position: sticky;
}

/* OVERFLOW */
.ez-visible {
    overflow: visible;
}

.ez-hidden {
    overflow: hidden;
}

/* BORDER-STYLE */
.ez-border-solid {
    border-style: solid;
}

.ez-border-none {
    border-style: none;
}

.ez-border-hidden {
    border-style: hidden;
}

.ez-border-dashed {
    border-style: dashed;
}

.ez-border-outline {
    outline: none;
}


/* BORDER-WIDTH */
.ez-border-0 {
    border-width: 0;
}

.ez-border-1 {
    border-width: 1px;
}

.ez-border-2 {
    border-width: 2px;
}

/* BORDER-COLOR */
.ez-border-primary {
    border-color: #dbdfd8;
}

.ez-border-gray {
    border: 1px solid gray;
}

.ezborder-top {
    border-top: #dbdfd8;
}

.ez-border-light-grey {
    border: 1px solid var(--color-light-grey);
}

.ez-border-right {
    border-right: 1px solid var(--color-light-grey);
}

/* BORDER-REDIUS */
.ez-rounded-none {
    border-radius: none;
}

.ez-rounded-2 {
    border-radius: 0.125rem;
}

.ez-rounded-4 {
    border-radius: 0.25rem;
}

.ez-rounded-6 {
    border-radius: 0.375rem;
}

.ez-rounded-8 {
    border-radius: 0.5rem;
}

.ez-rounded-tlr {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
}

.ez-rounded-blr {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.ez-rounded-tl-bl {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.ez-rounded-tr-br {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

/* FONT WEIGHT */
.ez-font-thin {
    font-weight: 100;
}

.ez-extralight {
    font-weight: 200;
}

.ez-font-light {
    font-weight: 300;
}

.ez-font-normal {
    font-weight: 400;
}

.ez-font-medium {
    font-weight: 500;
}

.ez-font-semibold {
    font-weight: 600;
}

.ez-font-bold {
    font-weight: 700;
}

.ez-font-extrabold {
    font-weight: 800;
}

.ez-font-black {
    font-weight: 900;
}

/* JUSTIFY CONTENT */
.ez-justify-start {
    justify-content: start;
}

.ez-justify-end {
    justify-content: end;
}

.ez-justify-center {
    justify-content: center;
}

.ez-justify-between {
    justify-content: space-between;
}

.ez-justify-around {
    justify-content: space-around;
}

.ez-justify-evenly {
    justify-content: space-evenly;
}

/*ALIGN ITEMS  */
.ez-items-start {
    align-items: start;
}

.ez-items-end {
    align-items: end;
}

.ez-items-center {
    align-items: center;
}

.ez-items-baseline {
    align-items: baseline;
}

/* FLEX-DIRECTION */
.ez-flex-row {
    flex-direction: row;
}

.ez-flex-row-reverse {
    flex-direction: row-reverse;
}

.ez-flex-col {
    flex-direction: column;
}

.ez-flex-col-reverse {
    flex-direction: column-reverse;
}

/* TEXT ALIGN */
.ez-text-start {
    text-align: start;
}

.ez-text-end {
    text-align: end;
}

.ez-text-left {
    text-align: left;
}

.ez-text-right {
    text-align: right;
}

.ez-text-center {
    text-align: center;
}

.ez-text-decrection {
    text-decoration: underline;
}

/* PADDING */
.ez-p-0 {
    padding: 0px;
}

.ez-p-16 {
    padding: 1rem;
}

.ez-pt-0 {
    padding-top: 0px;
}

.ez-pt-18 {
    padding-top: 1.5rem;
}

.ez-pr-0 {
    padding-right: 0px;
}

.ez-pb-0 {
    padding-bottom: 0px;
}

.ez-pl-0 {
    padding-left: 0px;
}

.ez-p-1 {
    padding: 0.125rem;
}

.ez-pt-16 {
    padding-top: 1rem;
}

.ez-pt-2 {
    padding-top: 0.125rem;
}

.ez-pr-1 {
    padding-right: 0.125rem;
}

.ez-pb-1 {
    padding-bottom: 0.125rem;
}

/* 2px */
.ez-pb-10 {
    padding-bottom: 0.625rem;
}

.ez-pl-1 {
    padding-left: 0.125rem;
}

.ez-pl-2 {
    padding-left: .5rem;
}

.ez-pl-4 {
    padding-left: 0.25rem;
}

.ez-pl-5 {
    padding-left: 1rem;
}

.ez-px-0 {
    padding-left: 0px;
    padding-right: 0px;
}

.ez-py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.ez-px-6 {
    padding-left: 0.375rem;
    /* 6px */
    padding-right: 0.375rem;
    /* 6px */
}

.ez-py-6 {
    padding-top: 0.375rem;
    /* 6px */
    padding-bottom: 0.375rem;
}

.ez-px-12 {
    padding-left: 0.75rem;
    /* 12px */
    padding-right: 0.75rem;
}

.ez-py-12 {
    padding-top: 0.75rem;
    /* 12px */
    padding-bottom: 0.75rem;
}

/*LINE-HEIGHT  */
.ez-lh-12 {
    line-height: .75rem;
}

.ez-lh-16 {
    line-height: 1rem;
}

.ez-lh-20 {
    line-height: 1.25rem;
}

/* FONT-SIZE */
.ez-fs-sm {
    font-size: 0.60rem;
}

.ez-fs-1 {
    font-size: 0.75rem;
}

/* 12px */
.ez-fs-2 {
    font-size: 0.875rem;
}

/* 14px */
.ez-fs-3 {
    font-size: 1rem;
}

/* 16px */
.ez-fs-lg {
    font-size: 1.125rem;
}

/* 18px */
.ez-fs-xl {
    font-size: 1.25rem;
}

/* 20px */
.ez-2fxl {
    font-size: 1.5rem;
}

/* 24px */
.ez-3fxl {
    font-size: 1.875rem;
}

/* .ez-4fxl {
    font-size: 2.25rem;
} */

.ez-text-xs {
    font-size: 0.75rem;
    /* 12px */
    line-height: 1rem;
    /* 16px */
}

.ez-text-sm {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.25rem;
    /* 20px */
}

.ez-text-base {
    font-size: 1rem;
    /* 16px */
    line-height: 1.5rem;
    /* 24px */
}

/*COLOR */
.ez-primary-color {
    color: #298200;
}

.ez-secondery-color {
    color: #cf3700
}

.ez-light-black {
    color: #3b4238;
}

.ez-color-black {
    color: #272c25;
}

.ez-color-white {
    color: #ffffff
}

.ez-c-black {
    color: var(--color-black);
}

/* BACKGROUND-COLOR */
.ez-bg-primary {
    background-color: #eef0ed;
}

.ez-bg-light-gray {
    background-color: #eef0ef;
}

.ez-bg-white {
    background-color: #ffffff;
}

.ez-bg-green {
    background-color: var(--color-green);
}

.ez-bg-grey {
    background-color: var(--color-light-grey);
}

/* WIDTH */
.ez-w-0 {
    width: 0px;
}

.ez-w-px {
    width: 1px;
}

.ez-w-2 {
    width: 0.125rem;
}

.ez-w-4 {
    width: 0.25rem;
}

.ez-w-6 {
    width: 0.375rem;
}

.ez-w-8 {
    width: 0.5rem;
}

.ez-w-10 {
    width: 0.625rem;
}

.ez-w-12 {
    width: 0.75rem;
}

.ez-w-14 {
    width: 0.875rem;
}

.ez-w-16 {
    width: 1rem;
}

.ez-w-20 {
    width: 1.25rem;
}

.ez-w-full {
    width: 100%
}

.ez-w-auto {
    width: auto;
}

/* MAX-WIDTH */
.ez-max-w-full {
    max-width: 100%;
}

.ez-max-w-0 {
    max-width: 0;
}

.ez-max-w-10 {
    max-width: 0.625rem;
}

.ez-max-w-12 {
    max-width: 0.75rem;
}

/* HEIGHT */
.ez-h-full {
    height: 100%;
}

.ez-h-0 {
    height: 0;
}

.ez-h-8 {
    height: 2rem;
}

.ez-h-10 {
    height: 0.625rem;
}

.ez-h-12 {
    height: 0.75rem;
}

.ez-h-16 {
    height: 1rem;
}

.ez-h-30 {
    height: 3rem;
}

.ez-h-auto {
    height: auto;
}

/* MAX-HEIGHT */
.ez-max-h-full {
    max-height: 100%;
}

.ez-max-h-0 {
    max-height: 0;
}

.ez-max-h-10 {
    max-height: 0.625rem;
}

.ez-max-h-12 {
    max-height: 0.75rem;
}

.ez-h-12 {
    height: 3rem;
}

/* FLEX-WRAP */
.ez-flex-wrap {
    flex-wrap: wrap;
}

.ez-flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.ez-flex-nowrap {
    flex-wrap: nowrap;
}

/* MARGIN */
.ez-m-0 {
    margin: 0;
}

.ez-m-auto {
    margin: auto;
}

.ez-mt-0 {
    margin-top: 0;
}

.ez-ml-0 {
    margin-left: 0;
}

.ez-mr-0 {
    margin-right: 0;
}

.ez-mb-0 {
    margin-bottom: 0;
}

.ez-mt-4 {
    margin-top: 0.25rem;
}

.ez-mr-1 {
    margin-right: 0.25rem;
}

.ez-mr-2 {
    margin-right: 0.5rem;
}

.ez-mr-3 {
    margin-right: 0.75rem;
}

.ez-mr-4 {
    margin-right: 1rem;
}

.ez-mr-5 {
    margin-right: 1.25rem;
}

.ez-mr-6 {
    margin-right: 1.5rem;
}

.ez-mr-7 {
    margin-right: 1.75rem;
}

.ez-mr-8 {
    margin-right: 2rem;
}

.ez-mr-9 {
    margin-right: 2.25rem;
}

.ez-mr-10 {
    margin-right: 2.5rem;
}

.ez-mt-6 {
    margin-top: 1.5rem;
}

.ez-mt-4 {
    margin-top: 1rem;
}

.ez-mt-2 {
    margin-top: 0.5rem;
}

.ez-ml-2 {
    margin-left: .5rem;
}

.ez-ml-6 {
    margin-left: 1.5rem;
}

.ez-ml-7 {
    margin-left: 3rem;
}

.ez-ml-10 {
    margin-left: 2.5rem;
}

.ez-mb-1 {
    margin-bottom: .25rem;
}

.ez-mb-2 {
    margin-bottom: .5rem;
}

.ez-mb-3 {
    margin-bottom: .75rem;
}

.ez-mb-4 {
    margin-bottom: 1rem;
}

.ez-mb-5 {
    margin-bottom: 1.25rem;
}

.ez-mb-6 {
    margin-bottom: 1.5rem;
}

.ez-mb-7 {
    margin-bottom: 1.75rem;
}

.ez-mb-8 {
    margin-bottom: 2rem;
}

.ez-mx-4 {
    margin-left: 0.25rem;
    /* 4px */
    margin-right: 0.25rem;
    /* 4px */
}

.ez-my-1 {
    margin-top: 0.25rem;
    /* 4px */
    margin-bottom: 0.25rem;
    /* 4px */
}

/*BOX-SIZING  */
.ez-box-border {
    box-sizing: border-box;
}

.ez-box-content {
    box-sizing: content-box;
}

.ez-boder-box {
    box-sizing: border-box;
}

/* GRID */
.ez-image-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ez-image-grid3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ez-image-grid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.ez-image-grid8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.ez-image-grid10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

a {
    text-decoration: none;
    font-size: .8rem;
    color: white;
}

/* GAP */
.ez-gap-16 {
    gap: 1rem;
}

/* Z-INDEX */
.ez-z-50 {
    z-index: 50;
}

.ez-z-100 {
    z-index: 100;
}

.ez-z-auto {
    z-index: auto;
}

a,
button,
image {
    cursor: pointer;
}

/*CONTAINER */
.ez-container {
    padding: 0 7%;
}

.ez-banerslider-start {
    padding: 0 7%;
}

.ez-clearicon {
    display: none;
    position: absolute;
    right: 8%;
    padding: 10px;
    opacity: 0.5;
    cursor: pointer;
}

.ez-clearicon:hover {
    opacity: 1.0;
}


.ez-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.ez-flexssss {
    flex: 0 0 100%;
}

.ez-slide {
    width: 100%;
    object-fit: cover;
}

.ez-dots {
    bottom: 4%;
}

.ez-dot {
    border-radius: 50%;
    background: rgba(56, 56, 56, .6);
    margin: 0 5px;
    cursor: pointer;
    box-shadow: 0 0 5px #fff;
    color: transparent;
}

.ez-dot.active {
    background-color: white;
}

.ez-baner-half-color {
    background: linear-gradient(to bottom, var(--color-light-grey) 50%, #ffffff 50%);
}

.ez-imageslider-container {
    padding-top: 24px;
    /* margin-bottom: 40px; */
}

#slider-wrapper {
    transition: transform 0.5s ease-in-out;
    gap: 5px;
}

.ez-slider-item:first-child {
    margin-left: 0px;
}

.ez-slider-item {
    width: calc(100% / 4 - 10px);
    flex: 0 0 auto;
    margin-left: 10px;
    border: 1px solid #8080803d;
    background-color: #f8f8f7;
}

.ez-adminbutton {
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
}

.slider-item-img {
    object-fit: cover;
}

.slider-item-img img {
    height: 230px;
}

.ez-slider-item>a.slider-item-img>.ez-slider-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: max-content;
    margin: 0 auto;
    background-color: white;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    padding: 10px 25px 8px;
    color: #000000;
    text-align: center;
    font-size: 14px;
    align-items: center;
    white-space: nowrap;
    font-weight: 600;
}

.ez-brand-start {
    justify-content: flex-start;
}

.ez-offer-info {
    padding: 15px 15px;
}

.ez-advertsment-offers:hover {
    text-decoration: underline;
}

.ez-adverts-slider .ez-chevron_right {
    top: 50%;
    right: 0;
    border: 0.06510416666666667vw solid rgb(174, 176, 173);
    background-color: rgb(255, 255, 255);
    transform: translatey(-50%);
    width: 1.8rem;
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}

.icon-right-open:before {
    margin-left: 0;
}

.ez-adverts-slider .ez-chevron_left {
    top: 50%;
    left: 0;
    border: 0.06510416666666667vw solid rgb(174, 176, 173);
    background-color: rgb(255, 255, 255);
    transform: translatey(-50%);
    width: 1.8rem;
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.card-wrapper {
    transition: transform 0.3s ease-in-out;
    display: flex;
    background: transparent;
    justify-content: space-between;
    gap: 10px;
    scroll-snap-align: center;
    width: fit-content;
    animation: scroll-images 10s linear infinite;
}

.card-slider-main {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.card-slider-main::-webkit-scrollbar,
.card-slider::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.icon-left-open:before {
    margin-left: 0;
}

.ez-product-image {
    height: 140px;
}

.ez-descrption-contioner {
    row-gap: 8px;
}

#product_slider-wrapper {
    transition: transform 0.5s ease-in-out;
}

.ez-slider-price {
    margin-top: 5px;
    margin-bottom: 15px;
}

.ez-best-sell-card {
    /* width: calc(100% / 7); */
    flex: 0 0 auto;
}

.ez-productimage img {
    border: 1px solid transparent;
}

.ez-productimage img:hover {
    border: 1px solid gray;
}

.ez-best-sell-card img {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
}

.ez-best-sell-card img {
    border: 1px solid transparent;
}

.ez-best-sell-card img:hover {
    border: 1px solid #d3d3d3;
}

.ez-product-description {
    margin-top: 5px;
    height: 48px;
    width: 150px;
}

.ez-best-prd {
    font-weight: 600;
}

.ez-popular-heading h2 {
    font-weight: 600;
}

.ez-food-media h2 {
    font-weight: 600;
}

.ez-product-description:hover {
    color: #141414;
}

.ez-food-image {
    object-fit: contain;
}

#product-container {
    width: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

#product_slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.ez-productimage {
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.vender-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.card-wrapper {
    transition: transform 0.3s ease-in-out;
    display: flex;
    background: transparent;
    justify-content: space-between;
    gap: 10px;
    scroll-snap-align: center;
    width: fit-content;
    animation: scroll-images 10s linear infinite;
}

.vender-slider::-webkit-scrollbar,
.card-slider::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.ez-best-arrow .ez-next {
    top: 50%;
    right: 0;
    border: 0.06510416666666667vw solid rgb(174, 176, 173);
    background-color: rgb(255, 255, 255);
    transform: translatey(-50%);
    width: 1.8rem;
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
}

.ez-best-arrow .ez-prev {
    /* display: none; */
    top: 50%;
    left: 0;
    border: 0.06510416666666667vw solid rgb(174, 176, 173);
    background-color: rgb(255, 255, 255);
    transform: translatey(-50%);
    width: 1.8rem;
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
}

.ez-brand-item {
    background-color: rgb(248, 248, 247);
    width: 9rem;
}

.ez-brand-image {
    width: 8rem;
    height: 4rem;
    mix-blend-mode: darken;
    object-fit: contain;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
    background-color: white;
}

.ez-read-more {
    padding: 0 24px 20px;
    display: inline-block;
}

.ez-read-more:hover {
    color: #141414;
}

.ez-food-Descrption {
    padding: 16px 24px 0;
    font-weight: 500;
}

#vender-slider {
    transition: transform 0.5s ease-in-out;
}

.ez-vendercard {
    /* width: calc(100% / 7); */
    flex: 0 0 auto;

}

.ez-vendercard img {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
}

.ez-brand .ez-right {
    top: 50%;
    right: 0;
    border: 0.06510416666666667vw solid rgb(174, 176, 173);
    background-color: rgb(255, 255, 255);
    transform: translatey(-50%);
    width: 1.8rem;
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
}

.ez-brand .ez-left {
    /* display: none; */
    top: 50%;
    left: 0;
    border: 0.06510416666666667vw solid rgb(174, 176, 173);
    background-color: rgb(255, 255, 255);
    transform: translatey(-50%);
    width: 1.8rem;
    font-size: 1.125rem;
    outline: none;
    cursor: pointer;
}

.ez-qrimage {
    height: 100%;
    width: 50%;
    border-radius: 7px;
    object-fit: contain;
    cursor: pointer;
}

/* media QUERY */

@media only screen and (min-width: 946px) {
    .ez-navabr-conatainer {
        padding: 0 3%;
    }

    .ez-container {
        padding: 0 3%;
    }


    .ez-verticalnavbar-style {
        font-size: 1vw;
    }

    /* .custom-select {
        display: none;
    } */

    /* .ez-container-medio {
        column-gap: 20px;
    } santhosh testing heder  */

    .ez-imageslider-container {
        padding-top: 24px;
    }

}

@media only screen and (min-width: 1300px) {
    .ez-navabr-conatainer {
        padding: 0 7%;
    }

    .ez-container {
        padding: 0 7%;
    }

    .ez-verticalnavbar-style {
        font-size: 0.825rem;
    }

    .ez-imageslider-container {
        padding-top: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ez-container {
        padding: 0 3%
    }

    .ez-pl-2 {
        padding: 0;
    }
}



@media (max-width: 320px) {
    .ez-promotion-banner {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 15px;
    }

    .ez-media-arrow {
        display: none;
    }

    .ez-slider img {
        border-image-source: url('C:\Users\santh\Downloads\EzeebiImage\Vollrath_081224_SM.webp');
    }

    .ez-slider-item {
        width: auto;
    }

    #product_slider-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ez-best-arrow {
        display: none;
    }

    .ez-3fxl {
        font-size: 18px;
    }

    .ez-brand-start {
        gap: 15px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;

    }

    .ez-food-media {
        text-align: center;
        text-wrap: nowrap;

    }

    .ez-image-grid3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    #vender-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ez-brand {
        display: none;
    }

    .ez-pl-2 {
        padding: 0;
    }


}

@media (min-width: 320px) and (max-width: 420px) {
    .ez-promotion-banner {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }

    .ez-media-arrow {
        display: none;
    }

    .ez-slider-item {
        width: auto;
    }

    #product_slider-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ez-best-arrow {
        display: none;
    }

    .ez-3fxl {
        font-size: 20px;
    }

    .ez-brand-start {
        gap: 15px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;
    }

    .ez-food-media {
        text-align: center;
        text-wrap: nowrap;

    }

    .ez-image-grid3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    #vender-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ez-brand {
        display: none;
    }

    .ez-banerslider-start {
        margin-bottom: 20px;
    }

    .ez-pl-2 {
        padding: 0;
    }

    .ez-ezeebi-logo {
        color: white;
        margin-top: 0rem;
        font-size: 20px;
    }

    .ez-media-menu {
        font-size: 20px;
    }


}

@media (min-width: 420px) and (max-width: 787px) {
    .ez-promotion-banner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ez-media-arrow {
        display: none;
    }

    .ez-slider-item {
        width: auto;
    }

    #product_slider-wrapper {
        display: flex;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ez-best-arrow {
        display: none;
    }

    .ez-brand-start {
        gap: 20px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        display: grid;
    }

    .ez-brand-item {
        width: 8rem;
    }

    .ez-image-grid3 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .ez-food-media {
        text-align: center;
        text-wrap: nowrap;
    }

    .ez-banerslider-start {
        margin-bottom: 20px;
    }

    #vender-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ez-brand {
        display: none;
    }

    .ez-pl-2 {
        padding: 0;
    }
}

@media (min-width: 570px) and (max-width: 787px) {
    .ez-brand-start {
        gap: 20px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        display: grid;
    }

    .ez-brand-item {
        width: 8rem;
    }

    .ez-image-grid3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ez-pl-2 {
        padding: 0;
    }

}


@media (min-width: 787px) and (max-width: 1024px) {
    .ez-promotion-banner {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .ez-adminbutton {
        display: none;
    }

    .ez-media-arrow {
        display: none;
    }

    .ez-slider-item {
        width: auto;
    }

    .ez-container {
        padding: 0 3%;
    }

    .ez-banerslider-start {
        padding: 0 3%;
        margin-bottom: 20px;
    }

    .ez-navabr-conatainer {
        padding: 0 3%;
    }

    .ez-pl-2 {
        padding: 0;
    }
}

@media (min-width:1024px) and (max-width: 1440px) {
    .ez-promotion-banner {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 10px;
    }

    .slider-item-img .img {
        height: 170px;
        object-fit: cover;
    }

    .ez-media-arrow {
        display: none;
    }

    .ez-slider-item {
        width: auto;
    }

    .ez-navabr-conatainer {
        padding: 0 3%;
    }

    .ez-banerslider-start {
        padding: 0 3%;
        margin-bottom: 20px;
    }

    .ez-container {
        padding: 0 3%;
    }

    .ez-pl-2 {
        padding: 0;
    }

    .ez-adminbutton {
        display: none;
    }
}
