.category-tabs ul {
    display: flex;
    flex-wrap: wrap;
    margin: -7px;
}

.category-tabs ul li {
    list-style-type: none;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #111827;
    text-align: center;
    padding: 10px 24px;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.20);
    margin: 7px;
    transition: all 0.6s;
    cursor: pointer;
}

.blog-list-section .blog-grid {
    margin-top: 40px;
}

.category-tabs ul li.active,.category-tabs ul li:hover {
    background: rgba(17, 24, 39, 0.08);
    border: 1px solid rgba(17, 24, 39, 0.08);
}
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

.blog-card {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.blog-card .blog-items {
    position: relative;
    padding-bottom: 65.25%;
    overflow: hidden;
}
.blog-card .blog-items img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition:  all 0.6s;
}
.blog-card .blog-box:hover  .blog-items img{
    transform: scale(1.1);
}
.blog-box {
    display: flex;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(17, 24, 39, 0.10);
    background: rgba(17, 24, 39, 0.02);
    overflow: hidden;
    flex-direction: column;
}
.blog-content {
    padding: 20px 20px 40px 20px;
    position: relative;
    flex-grow: 1;
}
.blog-content .link-btn {
    position: absolute;
    bottom: 20px;
    color: #0176D3;
}
.blog-content h2 {
    font-size: 20px;
    line-height: 144%;
}
.blog-content span.date {
    padding-left: 25px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: rgba(17, 24, 39, 0.80);
    display: block;
    margin-bottom: 10px;
    background-image: url(../images/calendar.svg);
    background-repeat: no-repeat;
    background-position: center left;
}

@media only screen and (max-width:1199px){
    .blog-grid {
        margin: 0 -10px -20px;
    }

    .blog-card {
        padding: 0 10px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width:991px){
    .blog-card {
        width: 50%;
    }
}
@media only screen and (max-width:767px){
   .blog-card {
        width: 100%;
    }
    .category-tabs ul {
        margin: -5px;
    }
    .category-tabs ul li {
        margin: 5px;
    }
    .category-tabs ul li {
        font-size: 14px;;
        padding: 10px 10px;
    }
}