@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.product-slider-container {
    padding: 2rem 5rem;

}

.product-category {
    text-align: center;
}

.product-category h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.brand-slider {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-slider ul li img {
    width: 100%;
    cursor: pointer;
    opacity: 0.9;
    margin: auto;
}

.brand-slider ul {
    list-style: none;
}

.brand-slider ul li {
    text-decoration: none;
}

.box {
    width: 150px;
    height: 350px;
    background-color: #1e1e26;
    box-shadow: 2px 10px 12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: 20px 10px;
}



.brand-slider ul li img:hover {
    opacity: 10;
}

@media (max-width: 800px) {
    .product-slider-container {
        padding: 1rem 2rem;
    }


}

@media (max-width: 600px) {
    .product-slider-container {
        padding: 1rem 1rem;
    }


}
