/*main slider css*/
#carouselMain{
    width:100%;
     aspect-ratio:  10/ 4;
    overflow:hidden;
    background:var(--background_color);
}
#carouselMain .carousel-inner{
    height:100%;
    position:relative;
}
#carouselMain .carousel-item{
    position:relative;
    height:100%;
}
#carouselMain .carousel-item img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    max-height:100%;
    max-width:100%;
    height:190%;
    width:100%;
}
.category_items_div{
    display:flex;
    overflow-y:auto;
    column-gap:20px;
    margin-top:10px;
    padding:10px;
}
.category_items_div::-webkit-scrollbar{
    height:5px;
} 
.category_item_div{
    padding:3px 20px;
    cursor:pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius:5px;
    font-weight:bold;
    background:var(--black_light);
    color:#fff;
    /*min-width:150px;*/
    text-align:center;
    
}
@media screen and (max-width: 768px) {
    /*main slider css*/
    #carouselMain{
    margin-bottom:10px;
}
#carouselMain .carousel-indicators{
    display:none;
}
.category_items_div{
    margin-top:0px;
}
.category_item_div{
    font-size:16px;
    font-weight:400;
}
}