.category_detail-container{
    width: 100%;
    height: auto;
    padding: 20px;
    box-sizing: border-box;
    /* background-color: aqua; */
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
}
.category_detail_box{
    width: 300px;
    height: auto;
    /* background-color: burlywood; */
    margin: 10px auto;
}
.category_detail-container a{
    margin-right: 20px;
}
.img-contaier{
    width: 100%;
    height: 350px;
    background-color:#cee8ec;
    border: 5px solid rgb(35, 155, 185);
    border-top-right-radius: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.img-contaier img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category_detail_box h4{
    width: 100%;
    border: 5px solid white;
    color: white;
    background-color: rgb(35, 155, 185);
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}