    /* blog page */

    .recent-posts-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .post-card {
        width: 33.33%;
    }

    .blog_img img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    .blog_title {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .post-card-inner a {
        text-decoration: underline;
    }

    .post-card-inner {
        border: 1px solid #ddd;
        margin: 10px;
        padding: 20px;
        height: 450px;
    }

    .blog_btn a {
        color: #ed1b24;
    }

    .post_title_content {
        font-size: 16px;
        color: #000;
        font-weight: 400;
    }

    .post_title_inner h1 {
        font-size: 40px !important;
        font-weight: 300;
        text-transform: uppercase;
    }

    .post_title_img img {
        height: 500px !important;
        object-fit: cover;
        margin-left: 0;
        width: 100% !important;
    }

    .post_title_content a {
        color: #024387;
    }

    .post_title_content img {
        width: 100% !important;
        padding: 10px 0px !important;
    }
    /* single page post*/

    .recent-articles {
        max-width: 700px;
        margin: 0 auto;
        font-family: Arial, sans-serif;
    }

    .recent-articles-title {
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
        font-size: 1.2em;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .article-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .article-item img {
        width: 100px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 15px;
    }

    .article-content {
        flex: 1;
    }

    .article-title {
        margin: 0 0 5px;
        font-weight: bold;
        font-size: 1em;
    }

    .read-more {
        color: red;
        font-size: 14px;
        text-decoration: none;
    }

    .read-more:hover {
        text-decoration: underline;
    }
    /* blog page end*/

    @media all and (min-width: 320px) and (max-width: 767px) {
        .blog_img img {
            height: 250px;
        }
        .post-card-inner {
            height: 400px;
            padding: 10px;
        }
        .post-card {
            width: 100% !important;
        }
        .post_title_img img {
            height: 350px !important;
        }
        .post_title_inner h1 {
            font-size: 30px !important;
        }
    }

    @media all and (min-width: 481px) and (max-width: 767px) {
        .post-card {
            width: 50% !important;
        }
    }

    @media all and (min-width: 768px) and (max-width: 980px) {
        .blog_img img {
            height: 250px;
        }
        .post-card-inner {
            height: 400px;
        }
        .post-card {
            width: 50% !important;
        }
    }

    @media only screen and (min-width: 981px) and (max-width: 1024px) {
        .blog_img img {
            height: 250px;
        }
        .post-card-inner {
            height: 400px;
        }
    }

    @media all and (min-width: 1025px) and (max-width: 1140px) {
        .blog_img img {
            height: 250px;
        }
        .post-card-inner {
            height: 400px;
        }
    }

    @media all and (min-width: 1141px) and (max-width: 1280px) {}

    @media all and (min-width: 1281px) and (max-width: 1440px) {}

    @media all and (min-width: 1441px) and (max-width: 1680px) {}

    @media all and (min-width: 1681px) and (max-width: 1880px) {}

    @media all and (min-width: 981px) and (max-width: 3000px) {}