.blog {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 0;
    background: var(--bg);
}

.blog_boxes {
    margin: 1rem 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}


.blog_box {
    position: relative;
    width: 20rem;
    height: 27rem;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.color_banner {
    background: #1a237e;
    height: 4rem;
    width: 100%;
}


.image {
    width: auto;
    height: 5rem;
    object-fit: contain;
    margin: -2rem 1rem;
    border-radius: 10px;
}

.container {
    margin: 3rem 1rem 1rem 1rem;
}



.sub_heading {
    font-size: 1.5rem;
}

.dips {
    font-family: var(--normal_fonts);
    margin: 1rem 0 1.5rem 0;
    height: 8rem;
}

.btn {
    text-decoration: none;
    /* padding: 0.5rem 1rem; */
    border-radius: 0.3rem;
    /* background: var(--btn_bg); */
    color: var(--btn_bg);
    cursor: pointer;
    font-family: var(--normal_fonts);
    font-size: 1rem;
    margin: 0 1rem 1rem 1rem;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.2s linear;
}

.btn:hover {
    color: var(--subheading_color);
    transform: scale(1.03);
}

@media screen and (max-width:968px) {
/* 
    .blog_boxes{
        gap: 2rem;
    }
    .blog_box {
        width: 22rem;
        height: 26rem;
    } */

}