#blog-header-section{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blog-header-inner-section{
    height: 500px;
    width: 100%;
    background: url(/Images/blog-header-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: border-box;
  
}

@media (max-width: 600px) {

#blog-header-inner-section {
    height: 200px;
    object-fit: cover;
    border: 1px solid red;
}
}
/* 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: #00326b;
    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: 350px;
    width: 250px;
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 1px 1px 5px gray;
    padding: 10px;
    transition: all 0.5s;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blog-card-box:hover{
    border: 1px solid #00326b;
    box-shadow: none;
}
#blog-card-box img{
    height: 250px;
    width: 100%;
    border-radius: 10px;
}
#blog-card-box h2{
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    color: #00326b;
}
#blog-card-box p{
    font-size: small;
    color: gray;
    margin: 0;
    padding: 0;
    text-align: left;
}