.section-blogs .searchbar-div {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-blogs .search-bar {
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    border-radius: 60px;
    border-color: rgba(129, 96, 221);
    padding: 10px;
}
.section-blogs .search-bar input {
    background: transparent;
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 18px;
    color: #fff;
    padding-left: 15px;
}
.section-blogs ::placeholder {
    color: whitesmoke;
}
.section-blogs .search-bar button {
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.section-blogs .ul-list li {
    padding: 3px 12px;
    margin: 0 18px 10px 0;
    cursor:pointer !important;
}
.section-blogs .ul-list li:last-child {
    margin-right: 0;
}
.section-blogs .active, .section-blogs .ul-list li:hover {
    background-color: #dedede;
}
.section-blogs .active span, .section-blogs .ul-list li:hover span {
    color: black !important;
}

.section-blogs .blog-category {
    color: black !important;
    background-color: #dedede;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 5px;
}
.section-blogs .blog-content {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    height: 85px;
}
.section-blogs .blog-btn {
    width: 200px;
    height: 50px;
}

.section-blogs .page-link {
    display: grid;
    width: 40px;
    place-content: center;
    height: 40px;
    text-align: center;
    border-radius: 50% !important;
    background-color: #333333;
    border: 0;
    font-size: 15px;
    font-family: 'Poppins-bold'; 
    margin: 0px 30px;
}
.section-blogs .page-link span {
    font-size: 25px;
    font-family: 'Poppins-bold';
}
.section-blogs .page-btn, .section-blogs .page-link.active {
    background-color: #9d00ff !important;
}