body {
    font-family: Arial;
}

.blogs {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero {
    text-align: center;
    padding-top: 20px;
    background-color: #598896;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.blog-hero h2 {
    font-size: 32px;
    color: #ffffff;
}

.blogsContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding-bottom: 32px;
    max-width: 1700px;
}


/* Blog Artical Content Css */

.blogContent {
    max-width: 1700px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding: 32px 0px;
    font-family: Arial;
}

@media only screen and (max-width: 768px) {
    .blogContent {
        width: 90%;
    }

    .blogHeading {
        font-size: 28px !important;
    }
}


.blogHeading {
    text-align: center;
    font-size: 48px;
    margin-bottom: 10px;
    padding-bottom: 0px;
}

.blogTitle-underline {
    background-color: #598896;
    height: 5px;
    width: 120px;
    border-radius: 999px;
    display: block;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Action Bar */


.blogActions-container {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 20px;
}

.blogActions-icon span {
    transition: all 0.3s ease;
    color: #598896;
    margin: 20px;
    font-size: 42px;
}

.blogActions-icon span:hover {
    color: #f0c12a;
}