.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -8px -16px;
}

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

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px -16px;
}

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

.blog-card-box {
    position: relative;
    min-height: 417px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    padding: 30px;
    display: flex;
}

.blog-card-box .features-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
}

.blog-card-box .features-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .6s;
}

.blog-card-box:hover img {
    transform: scale(1.1);
}

.blog-card-box:before {
    content: "";
    display: block;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 38.46%, rgba(0, 0, 0, 0.90) 100%);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.blog-card-box .content-box {
    height: inherit;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.blog-card-box .content-box .tag {
    width: fit-content;
}

.blog-card-box .content-box .decp {
    color: #FFFBFB;
    font-family: Sora;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    padding-bottom: 12px;
    position: relative;
}

.blog-card-box .content-box .decp:before {
    content: "";
    display: block;
    width: 25px;
    height: 6px;
    background: #00C4A8;
    position: absolute;
    bottom: 0;
}

@media only screen and (max-width:1199px) {}

@media only screen and (max-width:991px) {
    .blog-card {
        width: 50%;
    }
}

@media only screen and (max-width:767px) {
    .blog-card-box {
        /* min-height: 340px; */
        min-height: 400px;
        padding: 20px;
    }
}

@media only screen and (max-width:575px) {
    .blog-card {
        width: 100%;
        /*  max-width: 320px; */
    }
}