@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-padding-top: var(--scroll-padding, 100px);
}

body {
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.5s ease;
    overflow-x: hidden;
}

:root {
    --primary-font: 'Poppins', sans-serif;
    --secodary-font: 'Roboto', sans-serif;
    --primary-color: #143464;
    --bg-color: #E6EFFF;
}

main {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    isolation: isolate;
    transition: all 0.5s ease-in-out;
}

nav {
    position: fixed;
    width: 100%;
    z-index: 9999;
    /* background-color: transparent; */
    transition: all 0.2s ease-in-out;
    isolation: isolate;
}

@media screen and (max-width:576px) {
    nav {
        background-color: var(--bg-color);
    }
}

#menubar {
    display: none;
}

.navbg-active .nav-list li a {
    color: black;
}

@media screen and (max-width:768px) {
    #menubar {
        display: flex;
    }

    .navbar .nav-list {
        position: absolute;
        flex-direction: column;
        background-color: var(--bg-color);
        top: 0;
        right: -100%;
        height: 100vh;
        width: 50%;
        z-index: -1;
        padding: 5rem 0px;
        transition: all 0.5s ease-in-out;
    }

    .nav-list li a {
        color: black !important;
    }

    .nav-backgrund::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #0000005b;
        z-index: 5555;
        transition: all 0.5s ease-in-out;
    }

    .navba-active {
        right: 0 !important;
    }



}

@media screen and (max-width:576px) {
    .navbar .nav-list {
        width: 100%;
    }

}

#menubar svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    height: fit-content;
    width: 80px;
}

.active svg {
    transform: rotate(90deg);
}

path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

path:nth-child(1) {
    transform-origin: 36% 40%;
}

path:nth-child(2) {
    stroke-dasharray: 29 299;
}

path:nth-child(3) {
    transform-origin: 35% 63%;
}

path:nth-child(4) {
    stroke-dasharray: 29 299;
}

path:nth-child(5) {
    transform-origin: 61% 52%;
}

path:nth-child(6) {
    transform-origin: 62% 52%;
}

.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}


.navbg-active {
    background-color: var(--bg-color);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}



#logo {
    max-width: 150px;
}

#logo>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.nav-list li a {
    color: black;
}

/* hero section css */
#hero {
    /* height: 700px; */
    background-color: #E6EFFF;
}

.slider-holder {
    position: relative;
    width: 100%;
    height: 100%;
}

#carouselExampleDark {
    margin: 2rem 0px;
    width: 100%;
}

/* .s-prodcut {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease;
}

.s-prodcut.s-active{
    visibility: visible;
    opacity: 1;
    transition: 0.5s ease;
} */

.s-prodcut {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: auto auto;
    position: relative;
}


.s-img-holder {
    /* background-color: bisque; */
    grid-row: 1/ 2;
}

.working .product-img-holder {
    grid-row: 1/ -1;
    width: 300px;
    height: 100%;
}

.s-img-holder {
    width: 500px;
    height: 500px;
}

.s-text-area,
.working .product-text-area {
    grid-template: 2;
}

.working .pro-btn {
    grid-column: 2 / -1;
    grid-row: 2;
    width: fit-content;
}

#rice-btn {
    position: absolute;
    grid-column: 2 / -1;
    grid-row: 2;
    width: fit-content;
    top: -100px;
}

.s-img-holder>img {
    /* object-fit: cover; */
    /* width: 100%; */
    height: auto;
}




.carousel-indicators {
    position: relative !important;
    margin: 0;
}

.carousel-controls {
    background-color: #979797;
    /* position: absolute; */
    /* left: 50%; */
    /* bottom: 40px; */
    /* width: 100%; */
    width: fit-content;
    border-radius: 100px;
    overflow: hidden;

}

@media screen and (max-width:1200px) {
    #rice-btn {
        position: static;
    }
}

@media screen and (max-width:992px) {
    .carousel-controls {
        margin: auto;
    }

    .s-prodcut {
        grid-template-columns: repeat(1, auto);
        grid-template-rows: auto;
    }

    .s-img-holder {
        /* background-color: bisque; */
        grid-column: 1 / -1;
        grid-row: 1;
        width: 500px;
        height: 500px;
    }

    .s-text-area {
        grid-template: 1 / -1;
    }

    #rice-btn {
        /* position: absolute; */
        grid-column: 1 / -1;
        grid-row: auto;
        width: fit-content;
        top: -100px;
    }


}

@media screen and (max-width:576px) {
    .carousel-controls {
        width: 100%;
    }
}

.carousel-indicators button {
    height: 80px !important;
    width: 160px !important;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-indent: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}



.carousel-indicators button>img {
    width: 30%;
    height: 100%;
    object-fit: contain;
}

.carousel-indicators p {
    /* width: fit-content; */
    font-size: 1rem;
    color: white;
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color) !important;
}

@media screen and (max-width: 576px) {
    .carousel-indicators button {
        height: 60px !important;
        width: 100px !important;
        background-size: contain;
        flex-direction: column;
        padding: 0.5rem 0rem !important;
    }


    .carousel-indicators p {
        font-size: 0.8rem;
    }

    /* .carousel-dark .carousel-indicators [data-bs-target]{
        padding: 0px 0.3rem;
    } */
}

/* .carousel-indicators #slide-btn-1{
    position: absolute;
    background-image: url("../images/products\ images/rice-icon.png");
    width: 100%;
    height: 100%;z-index: 555;
    background-size: cover;
    background-repeat: no-repeat;
} */





.s-text-header {
    position: relative;
}

.s-text-header span {
    position: absolute;
    left: 0;
    font-size: 15px;
    font-weight: 400;
    bottom: -20px;

}

.s-text-area h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 !important;
    text-transform: uppercase !important;
}



.s-text-area p {
    text-align: justify;
}

@media screen and (max-width:576px) {
    .s-text-area p {
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
        display: -moz-box;
        overflow: hidden;
    }


    .s-text-area h1 {
        font-size: 2rem;
    }
}

/* .s-text-area .Enqury-btn,
.trand-item-btn, .product-enq-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
} */

.com-btn {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    outline: 2px solid var(--primary-color);
    transition: all 0.2s linear;
}

.com-btn:hover {
    color: var(--primary-color) !important;
    background-color: white !important;
    outline: 2px solid var(--primary-color);
}





.pointers-holder {
    isolation: isolate;
    margin-left: auto;
    border-radius: 100px;
    outline: 2px solid var(--primary-color);
    position: relative;
    width: fit-content;
    margin-left: auto;
}

.pointers-holder li {
    width: 150px;
}

.pointers-holder li a {
    height: 100%;
}

/* .pointers-holder li.slide-active{
    background-color: white;
} */

.pointers-img-holder {
    width: 50px;
}

.pointers-img-holder>img {
    width: 100%;
    object-fit: cover;
}

/* .slide {
    position: absolute;
    width: 150px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    z-index: -1;
    transition: 0.5 ease;
    opacity: 0;
} */

/* .pointers-holder li {
    transition: 0.3s ease-in-out;
}

.pointers-holder li a {
    color: black;
}

.pointers-holder li.slide-active a {
    color: white;
    transition: 0.3s ease-in-out;
}

.pointers-holder li:nth-child(1).slide-active~.slide {
    left: 0;
    opacity: 1;
}

.pointers-holder li:nth-child(2).slide-active~.slide {
    left: 150px;
    opacity: 1;
}

.pointers-holder li:nth-child(3).slide-active~.slide {
    left: 300px;
    opacity: 1;
}

.pointers-holder li:nth-child(4).slide-active~.slide {
    left: 450px;
    opacity: 1;
} */

@media screen and (max-width:1200px) {


    #hero {
        height: auto;
    }

    .s-img-holder {
        max-width: 300px;
        max-height: 300px;
    }

    .s-img-holder>img {
        object-fit: cover;
        width: 100%;
    }

    .s-text-area h1 {
        font-size: 2.1rem;
    }

}

/* tranding-products section*/

h3 {
    font-weight: 700 !important;
    color: var(--primary-color);
}

.trand-prodcuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-auto-rows: 6rem; */
    grid-gap: 2rem;
}

.view-more-btn {
    background-color: white !important;
    outline: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    transition: all 0.2s linear;
}

.view-more-btn:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    outline: none !important;
}

@media screen and (max-width:1200px) {
    .trand-prodcuts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:576px) {
    .trand-prodcuts {
        grid-template-columns: repeat(1, 1fr);
    }

    /* .product-name {
        font-size: 1rem;
    } */
}

.trand-item {
    background-color: #ffffff;
    /* height: 400px; */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.product-name {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -moz-box;

}

.trand-img-holder {
    width: 100%;
    height: 200px;
}

.trand-img-holder>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.trand-text span,
.product-text-area span {
    text-align: end;
    font-size: 0.7rem;
}


.trand-text p {
    /* color: white; */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -moz-box;

    font-size: 0.8rem;


}

/* item selection holder section*/

.items-sel-holder {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 20px;
}

.devider {
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--bg-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:576px) {
    .items-sel-holder {
        grid-template-columns: 1fr;
    }

    .devider {
        transform: translate(-50%, -50%) rotate(90deg);
    }
}

.items-sel-holder .items {
    position: relative;
    background-color: black;
    max-height: 500px;
    overflow: hidden;
}

/* .items-sel-holder .items::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    
    z-index: 10;
} */

.items>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}


.items .item-text-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    background-color: rgba(0, 0, 0, 0.486);
    transition: all 0.5s ease-in-out;
}

.item-text-area h1 {
    font-weight: 800;
    letter-spacing: 20px;
    transition: all 0.5s ease-in-out;
}

.food-item:hover .item-text-area {
    top: 0;
}

.food-item:hover .item-text-area h1 {

    letter-spacing: 3px;
}

@media screen and (max-width:768px) {

    .item-text-area h1 {
        font-size: 1.6rem;
    }
}




.item-text-area .Explore-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
}





/* category section styling */
.category-holder {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

}

@media screen and (max-width:576px) {
    body {
        font-size: 13px !important;
    }

    .category-holder {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cat {
    cursor: pointer;
}


.cat-img-holder {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 100px;
}

@media screen and (max-width:1200px) {
    .cat-img-holder {
        width: 100px;
        height: 100px;
    }

    .cat-heading h5 {
        font-size: 1rem;
    }
}

.cat-img-holder>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* footer section */

footer {
    margin-top: auto;
    background-color: var(--bg-color);
}

.f-head-text p {
    text-align: justify;
}

.footer-head-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width:1200px) {
    .footer-head-section {
        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
}

.footer-head-section h5 {
    font-weight: 700;
}

.contact {
    display: grid;
    grid-template-columns: 50px 1fr;
}

.c-icon-holder {
    margin-right: 1rem;
    /* outline: 2px solid; */
    text-align: center;
}

.contact .fa-location-dot,
.contact .fa-envelope,
.contact .fa-phone {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact p {
    font-size: 1rem;
    /* color: white; */
}

.social-icons {
    width: 40px;
    height: 40px;
    outline: 3px solid var(--primary-color);
    isolation: isolate;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.social-icons a:hover {
    color: rgb(3, 3, 3);
}

.social-icons:hover {
    outline: 3px solid rgb(0, 0, 0);
}

.f-right-side a {
    color: var(--primary-color);
}

.f-right-side a:hover {
    color: black;
}

.footer-head-section,
.footer-navlist ul li a {
    color: var(--primary-color);
}

@media screen and (max-width:576px) {
    .c-icon-holder svg {
        width: 20px;
        height: 20px;
    }

    .footer-navlist ul li a {
        font-size: 1rem;
    }
}

@media screen and (max-width:1200px) {
    .f-logo-holder {
        position: relative;
        padding: 2rem 0rem;
    }

    .f-logo-holder::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: var(--primary-color);
        top: 0;
    }

    .f-logo-holder::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        background-color: var(--primary-color);
        bottom: 0;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------- Styling for About us page ----------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------------*/


#page-title-sction {
    position: relative;
    height: 300px;
    overflow: hidden;
    isolation: isolate;
}

#page-title-sction::after {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.486);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    /* z-index: -1; */
    top: 0;
    left: 0;
    z-index: -1;
}

#page-title-sction::before {
    content: "";
    position: absolute;
    background-image: url("../images/page\ title\ bg.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    z-index: -1;
}

#aboutus-main {
    background-color: var(--primary-color);
    margin: 5rem 0px;
}

.aboutus-text-area-holder {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 5rem;
}



.aboutus-text-area h1,
.aboutus-text-area p {
    color: var(--bg-color);
}

.getintouch-btn {
    background-color: var(--bg-color);
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.about-img-sec {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    transform: translateY(-5rem);
}

.about-img-sec>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.getintouch-btn:hover {
    color: var(--bg-color);
    background-color: var(--primary-color);
    outline: 2px solid var(--bg-color);
}

.aboutus-text-area h1 {
    font-weight: 700;
}

.aboutus-text-area p {
    text-align: justify;
}

@media screen and (max-width:576px) {

    #aboutus-main {
        margin: 1rem 0rem;
    }

    .aboutus-text-area-holder {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-us-img-holder {
        display: flex;
        justify-content: center;
    }

    .about-img-sec {
        transform: translateY(0px);
    }

    .getintouch-btn {
        width: 100%;
        text-align: center;
    }
}

/* Contact us section styling */

#contact-seaction {
    /* background-color: var(--bg-color); */
    color: white;
    /* margin: 5rem 0px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
}

.contact-holder {
    position: relative;
    background-color: var(--primary-color);
    isolation: isolate;
}


.contact-holder::before {
    content: ">";
    position: absolute;
    width: 100px;
    height: 125px;
    border-radius: 100%;
    background-color: var(--primary-color);
    right: -25px;
    top: 51%;
    z-index: -1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    font-size: 2rem;
}

.input-holders {
    margin-bottom: 2rem;
}

.submit-btn:focus:not(:focus-visible) {
    outline: 2px solid var(--bg-color) !important;
}

/* .contact-holder{
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 2rem;
} */

.contact-info-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--primary-color);
}

@media screen and (max-width:576px) {
    .contact-info-text {
        grid-template-columns: 1fr;
    }
}

.form-holder form input,
.form-holder form textarea {
    background-color: transparent;
    border: none;
    outline: 2px solid var(--bg-color);
    border-radius: 5px;
    color: white;
}

.form-holder form input::placeholder,
.form-holder form textarea::placeholder {
    color: var(--bg-color);
    opacity: 0.5;
}



/* .accordion {
    width: 70%;
} */

.accordion-button {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-radius: 10px 10px 0px 0px !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* .accordion-button-activetd{
    border-radius: 10px !important;
} */
.accordion-button:target {

    border-radius: 10px !important;
}

.accordion-body {
    background-color: var(--bg-color) !important;
    border-radius: 0px 0px 10px 10px;
}


.accordion-item {
    border: none !important;
}

.accordion-button:not(.collapsed)::after {

    background-image: url("../images/Contact\ us\ images/angle-up-solid.svg") !important;
    color: white !important;
}

.accordion-button::after {
    background-image: url("../images/Contact\ us\ images/angle-up-solid.svg") !important;
}

@media screen and (max-width:1024px) {
    #contact-seaction {
        grid-template-columns: 1fr;
    }

    .contact-holder::before {
        top: auto;
        bottom: -40px;
        right: auto;
        transform: rotate(90deg);
    }

}




/*----------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------- Styling for Products page ----------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------------*/
/* .grid-1 span{
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #E6EFFF;
} */
.grid {
    outline: 2px solid black;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 2px;
}

.grid img {
    width: 20px;
    height: auto;
}

.p-sidebar-holder {
    position: sticky;
    /* top: 50px; */
    background-color: var(--bg-color);
    color: var(--primary-color);
    border-radius: 20px;
}

@media screen and (max-width:576px) {
    .p-sidebar-holder {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* grid-template-columns: repeat(); */
    }

    .categories-fillter-sec {
        position: absolute;
        background-color: var(--bg-color);
        padding: 0rem 2rem;
        right: 0;
        top: 120px;
        border-radius: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        overflow: hidden;
        height: 0px;
        transition: all 0.2s linear;

    }

    .filter-active {
        padding: 2rem 2rem;
        height: auto;
        transition: all 0.2s linear;
    }

    /* .categories-fillter-sec h5{
        position: relative;
    }
    .categories-fillter-sec h5::before{
        position: absolute;
        content: "";
        width: 100%;
        height: 2px ;
        background-color: #979797;
        bottom: -10px;
        left: 0;
    } */
}

.search-section input {
    font-size: 0.8rem;
    width: 100%;
    border: 0;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.search-section input::placeholder {
    font-size: 0.8rem;
}

.layout-orientation {
    display: flex;
}

#filter-icon {
    display: none;
    background-color: var(--bg-color);
    padding: 0.5rem 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.fillter-btns button {
    border-radius: 5px;
    background-color: transparent;
    /* color: white; */
    outline: 1px solid var(--primary-color);
    border: none;
    font-size: 0.8rem;
}

.fillter-btns-active {
    outline: 1px solid var(--primary-color);
    background-color: #143464 !important;
    color: white !important;
}




.grid-btns-holder button:focus,
.btn-active {
    background-color: #143464;
    outline: 2px solid var(--primary-color) !important;
}

.products-list-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.2rem;
    transition: all 0.5s ease;
}



.product {
    background-color: white;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.5s ease;
}

.working {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
}

.noResult {
    display: none;
}

.pro-active {
    display: flex;
}

/* .product-img-holder {
    width: 100%;
    /* height: 250px; */
/* background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
} */

.product-img-holder {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* background-size: contain;*/
}



.product-text-area p {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -moz-box;
    overflow: hidden;

}



#popup-box,
#non-food-item-popup {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
}

/* #popup-box{
    display: flex;
} */

#non-food-item-popup {
    /* display: flex !important; */
    justify-content: center;
    align-items: center;
}

.products-title-area {
    background-color: var(--bg-color);
}

.products-title-area span {
    font-size: 0.8rem;
}

.non-food-item-popup-holder h1 {
    color: white;
    line-height: 3rem;
    text-align: center;
    text-shadow: -1px 5px 10px rgba(0, 0, 0, 0.459);
}

.open {
    display: flex !important;
}

.e-check-box[type=checkbox] {
    width: 20px;
    height: 20px;

}

.img-text-area p {
    font-size: 0.8rem;
}

.e-main-img-holder {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.product-name-area {
    outline: 1px solid black;
    border-radius: 5px;
    background-color: #e9e9e9;
}

/* .enquiry-img-holder {
    height: 100%;
} */

.e-main-img-holder>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-repeat: no-repeat;
}

.enquiry-img-holder {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.enquiry-form {
    position: relative;
}

#close-btn,
.nfip-btn {
    display: inline-block;
    width: fit-content;
    position: absolute;
    right: 25px;
}

.nfip-btn {
    top: 50px;
}

@media screen and (max-width:576px) {
    .enquiry-img-sec {
        display: none;
    }

    #close-btn {
        position: relative;
        margin-left: auto;
        margin-bottom: 1rem;
    }

    /* .nfip-btn{
        position: absolute;
    } */
    .e-main-img-holder {
        height: 200px;
    }

    .img-text-area {
        text-align: center;
    }

    .img-text-area h4 {
        font-size: 2rem;
    }

    .layout-orientation {
        display: none !important;
    }

    .products-list-holder {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .product-img-holder {
        height: auto;
    }

    #filter-icon {
        display: flex;
        /* font-size: calc(100% - 80px); */
        font-size: 1rem;
        justify-content: center;
        align-items: center;
        padding: 0.3rem 1rem;
    }



    .f-btn {
        width: fit-content;
    }
}