/* Our Blogs */
#blog-heading-section{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    align-items: center;
}
#blog-heading-section h2{
    font-size: 40px;
    color: #fff;
    text-align: center;
}
#blog-card-container{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blog-card-inner-container{
    height: fit-content;
    width: 100%;
    max-width: 1200px;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Blog Card */
#blog-card-box{
    height: 380px;
    width: 280px;
    border: 1px solid white;
    border-radius: 10px;
    transition: all 0.5s;
    flex-direction: column;
    display: flex;
    justify-content: center;
    overflow: hidden;
    align-items: center;
}
#blog-card-box:hover{
    box-shadow: none;
    border: 1px solid #3b82f6;
}
#blog-card-box img{
    height: 250px;
    width: 100%;
    object-fit: fill;
}
#blog-card-box h2{
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    padding: 5px 10px;
    color: #fff;
}
#blog-card-box p{
    font-size: small;
    color: #3b82f6;
    padding: 10px 10px;
    margin: 0;
    text-align: left;
}