.our-products-section {
    /* position: absolute;
    
    left: 0px;
    width: 100%;
    height: calc(100vh - 60px);*/
    top: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    transition: 0.5s ease-in-out;
    z-index: 5;
}

.our-products-section.active {
    top: 0px;
}

.our-products-section .heading-wrapper {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.our-products-section .heading-wrapper h2 {
    font-size: 25px;
    font-family: sans-serif;
    color: gray;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.infinite-scroll-carousel-space {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

/* Track container */
.infinite-scroll-track-wrapper {
    height: 200px;
    width: 100%;
    background-color: white;
    display: flex;
}

#infiniteScrollTrack_leftToRight {
    transform: translateX(-100%);
    opacity: 0;
}

#infiniteScrollTrack_rightToLeft {
    transform: translateX(100%);
    opacity: 0;
}

.infinite-scroll-track {
    height: 100%;
    width: 100%;
    background: #fafafa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    background-image: url("../../images/product-section-bg2.jpg");
    background-size: contain;
    background-position-x: center;
    background-position-y: center;
}

.infinite-scroll-track .inner-track {
    width: max-content;
    height: 90%;
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;

}

.inner-track.track1 {
    transform: translateX(-50%);
    animation: infinite-scroll-animation 60s linear infinite;
}

.inner-track.track2 {
    transform: translateX(0%);
    animation: infinite-scroll-animation-reverse 65s linear infinite;
}

.card-space {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.card-space>img {
    height: 100%;
    width: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgb(0 0 0 / 5%);
    transition: transform 0.3s ease;
}

.infinite-scroll-track:hover .card-space>img {
    transform: scale(0.95);
}

.infinite-scroll-track .card-space>img:hover {
    transform: scale(1.05);
}

.our-products-section .explore-btn-wrapper {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-products-section .explore-btn-wrapper .explore-btn {
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.bg-spices-decor {
    z-index: -1;
    position: absolute;
    height: 500px;
    width: 500px;
    bottom: -240px;
    transform: rotate(90deg);
    opacity: 0.5;
}

.bg-spices-decor>img.back {
    filter: blur(5px);
    bottom: -250px;
}

.bg-spices-decor.left {
    margin: 0px auto;
}

.bg-spices-decor.right {
    display: none;
    right: -250px;
}

.bg-spices-decor>img {
    position: absolute;
    top: 0%;
    left: 0px;
    max-height: 500px;
    max-width: 500px;
    opacity: 0;
    transform: translateX(100%);
}


/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {

    .our-products-section .heading-wrapper {
        height: 130px;
    }

    .our-products-section .heading-wrapper h2 {
        font-size: 52px;
    }

    .bg-spices-decor.left {
        margin: 0px;
        left: -250px;
    }

    .bg-spices-decor.right {
        display: block;
    }
}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    /* .our-products-section {
        height: 100vh;
    } */

    .our-products-section .heading-wrapper {
        padding: 100px 20px 20px 20px;
        align-items: center;
        height: auto;
    }

    .our-products-section .heading-wrapper h2 {
        font-size: 52px;
    }

    .infinite-scroll-track-wrapper {
        width: 80%;
    }

    .infinite-scroll-track {
        border-radius: 25px;
        -webkit-mask-image: linear-gradient(to right,
                transparent 0%,
                black 25%,
                black 75%,
                transparent 100%);

        mask-image: linear-gradient(to right,
                transparent 0%,
                black 25%,
                black 75%,
                transparent 100%);
    }

    .infinite-scroll-track .inner-track {
        width: max-content;
    }

    .card-space {
        width: 250px;
    }

    .bg-spices-decor.left {
        margin: 0px;
        left: -250px;
    }

    .bg-spices-decor.right {
        display: block;
    }
}