.maincontanerofblog{
    width: 100% ;
    margin: 0 auto;
    background: #f7faff;
}

.blogcontainer{
    width: 80%;
    margin: 0 auto;
    position: relative;
    
}
.innerblogboxx{
    width: 98%;
    margin: 0 auto;
   position: relative;
}
.divisionbox{
    
    margin: 0 auto;
   flex-wrap:nowrap;
    overflow-x: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.blogblogingcard{
/* background: #fff; */
width:  200px;
height: 200px;
border-radius: 15px;
flex: 0 0 auto;
margin: 15px auto 20px;
padding: 15px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* slider */
.sliderbutton{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
   
}

/* common button style */
.leftbutton,
.rightbutton{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 14px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;
}
/* hover effect */
.leftbutton:hover,
.rightbutton:hover{
    background: #000;
    transform: scale(1.1);
}


@media (max-width: 680px) {
    .blogblogingcard{
        width:  150px;
        height: 150px;
    }
    .blogcontainer{
        width: 100%;
    }
}


.blogcatname{
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activeblog{
    border: 1px solid rgb(212, 212, 255);
    overflow: hidden;
}