    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .blog-container {
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
    }

    .blog-header {
        background-image: url(/assets/img/blogs/blog-bannner.png);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .blog-header .blog-container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        padding: 60px 32px;
        position: relative;
    }

    .breadcrumb,
    .blog-header .meta {
        position: absolute;
        bottom: 32px;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
    }

    .breadcrumb {
        left: 32px;
    }

    .blog-header .meta {
        right: 32px;
    }

    .blog-header h1 {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 80px;
        line-height: 1.2;
        text-align: center;
        color: #fff;
    }

    .blog-filters {
        display: flex;
        justify-content: space-between;
        gap: 30px;
        padding: 60px 32px;
    }

    .blog-filters .filters {
        display: flex;
        gap: 11px;
        overflow: auto;
    }

    .filters button {
        border: 1px solid #0000003B;
        background-color: transparent;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        border-radius: 6px;
        padding: 18px 38px;
        color: #1B1B1B;
        min-width: 210px;
        transition: all .3s;
    }

    .filters button:hover {
        border: 1px solid #F4F3F3;
        background-color: #F4F3F3;
        color: #005EA2;
    }

    .filters button.active {
        border: 1px solid #F4F3F3;
        background-color: #F4F3F3;
        color: #005EA2;
        font-weight: 700;
    }

    .filter-search {
        position: relative;
        min-width: 300px;
    }

    .filter-search input[type="text"] {
        padding: 18px 60px 18px 15px;
        border-radius: 5px;
        border: 1px solid #C5C5C5;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        color: #565C65;
        width: 100%;
        min-width: 300px;
    }

    button.search-btn {
        position: absolute;
        top: 0;
        right: 7px;
        width: 44px;
        height: 42px;
        background-color: #005EA2;
        border-radius: 6px;
        border: 0;
        transform: translatey(7px);
        transition: all .3s;
    }

    button.search-btn:hover {
        background-color: #162e51;
    }

    .blog-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 25px;
        padding: 0 32px;
    }

    .blog-card {
        width: calc(33% - 13px);
        border: 1px solid #FAFAFA;
        border-radius: 10px;
        background-color: #FAFAFA;
        padding: 20px;
        overflow: hidden;
    }

    .card-img {
        width: 405px;
        height: 207px;
        overflow: hidden;
        border-radius: 5px;
        background-color: #C5C5C5;
    }

    .blog-card img {
        width: 100%;
        height: 100%;
        border-radius: 5px;
    }

    .blog-card .blog-meta {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        color: #565C65;
        margin-top: 30px;
    }

    .blog-meta .meta-blue {
        color: #005EA2;
    }

    .blog-card .blog-title {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.3;
        margin: 20px 0 30px;
    }

    .blog-card .read-more {
        text-align: center;
        border: 0.3px solid #005EA2;
        border-radius: 5px;
        padding: 8px;
        transition: all .3s;
    }

    .blog-card .read-more a {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.5;
        color: #005EA2;
        text-decoration: none;
        transition: all .3s;
    }

    .blog-card .read-more:hover {
        background-color: #005EA2;
    }

    .blog-card .read-more:hover a {
        color: #fff;
    }

    .view-more-button {
        text-align: center;
        padding: 40px 32px 60px;
    }

    .view-more-button button {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 20px;
        color: #fff;
        text-align: center;
        background-color: #005EA2;
        border: 0.3px solid #005EA2;
        border-radius: 5px;
        padding: 17px 30px;
        transition: all .3s;
    }

    .view-more-button button:hover {
        color: #005EA2;
        background-color: #fff;
    }

    /*-----Blog Details-----*/
    .main-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 60px 32px;
    }

    .toc {
        background-color: #FAFAFA;
        border-radius: 10px;
        padding: 20px;
        width: calc(27% - 10px);
        max-height: 350px;
    }

    .toc h4 {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        text-align: left;
        margin-bottom: 40px;
    }

    .toc ul {
        padding-left: 0;
        max-height: 247px;
        overflow: auto;
    }

    .toc ul li {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        list-style: none;
        color: #10213B;
        padding: 10px 0 10px 20px;
        border-left: 4px solid #E0EDF6;
    }

    .toc ul li:last-child {
        padding-bottom: 0;
    }

    .toc ul li.active {
        border-left-color: #005EA2;
    }

    .toc ul li a {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        list-style: none;
        color: #10213B;
        text-decoration: none;
    }

    .blog-article {
        width: calc(50% - 33px);
        padding: 0 30px;
    }

    .blog-article h3 {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .blog-article p {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        color: #1B1B1B;
        margin-bottom: 20px;
    }

    .sidebar {
        width: calc(28% - 26px);
    }

    .sidebar h4 {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 24px;
        line-height: 1.5;
        text-align: left;
        margin: 40px 0 20px;
    }

    .card-item {
        margin-bottom: 40px;
    }

    .card-item:last-child {
        margin-bottom: 0;
    }

    .card-item .item {
        display: flex;
    }

    .card-item .item-img {
        min-width: 80px;
        max-width: 80px;
        min-height: 80px;
        max-height: 80px;
        border-radius: 10px;
        background-color: #C5C5C5;
        overflow: hidden;
    }

    .card-item .item img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
    }

    .card-item .item .text {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 16px;
        line-height: 1.5;
        padding-left: 18px;
    }

    .card-item .meta {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        font-family: Helvetica;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        margin-top: 20px;
    }

    .card-item .meta .meta-blue {
        color: #005EA2;
    }

    .card-item .meta img {
        width: 25px;
        height: 24px;
        background-color: #005EA2;
        border-radius: 5px;
        padding: 5px;
        margin-left: 15px;
        transition: all .3s;
    }

    .card-item .meta img:hover {
        background-color: #162e51;
    }

    .related-posts {
        padding: 0 32px 60px;
    }

    .related-posts h3 {
        font-family: Helvetica;
        font-weight: 700;
        font-size: 24px;
        text-align: left;
        margin-bottom: 30px;
    }

    .related-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .related-grid .card-img {
        width: 300px;
    }

    .related-grid .blog-card {
        width: calc(25% - 15px) !important;
        padding: 16px !important;
    }

    .related-post-arrow {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-bottom: 60px;
    }

    .related-post-arrow .arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background-color: #005EA2;
        border-radius: 5px;
        transition: all .3s;
    }

    .related-post-arrow .arrow svg path {
        fill: #fff;
        transition: all .3s;
    }

    .related-post-arrow .arrow:hover {
        background-color: #E0EDF6A3;
    }

    .related-post-arrow .arrow:hover svg path {
        fill: #005EA2;
    }

    .toc ul::-webkit-scrollbar {
        width: 4px;
    }


    .toc ul::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #E0EDF6;
    }


    .toc ul::-webkit-scrollbar-thumb {
        background: #005EA2;
        border-radius: 10px;
    }


    /*------Responsive----------*/
    @media only screen and (max-width: 1299px) {
        .filters button {
            padding: 18px 15px;
        }
    }

    @media only screen and (max-width: 1199px) {
        .blog-card {
            width: calc(33% - 14px);
        }

        .blog-header h1 {
            font-size: 50px;
            padding-bottom: 20px;
        }
    }

    @media only screen and (max-width: 1024px) {
        .blog-header .blog-container {
            min-height: 300px;
        }

        .blog-grid {
            gap: 20px;
        }

        .filter-search input[type="text"] {
            min-width: 100%;
        }
    }

    @media only screen and (max-width: 991px) {
        .blog-card {
            width: calc(50% - 13px);
        }

        .blog-header h1 {
            font-size: 50px;
        }

        .related-grid .blog-card {
            width: calc(50% - 15px) !important;
            padding: 16px !important;
        }

        .related-grid .card-img {
            width: 100%;
        }

        .main-content {
            gap: 30px;
        }

        .sidebar {
            width: 50%;
        }

        .sidebar {
            width: 50%;
        }
    }

    @media only screen and (max-width: 767px) {
        .blog-header h1 {
            font-size: 30px;
            padding-bottom: 30px;
        }

        .blog-filters {
            flex-direction: column;
            gap: 20px;
            padding: 30px 15px;
        }

        .card-img {
            width: 100%;
        }

        .blog-card .blog-meta {
            margin-top: 20px;
        }

        .blog-card .blog-title {
            font-size: 18px;
            margin: 15px 0 20px;
        }

        .blog-header .blog-container {
            min-height: 300px;
            padding: 60px 15px;
        }

        .blog-header .meta {
            right: auto;
            left: 32px;
            bottom: 60px;
        }
        .blog-header .meta a:hover {
            color:#005EA2 !important;
            text-decoration: none;
        }
        .blog-grid {
            gap: 20px;
            padding: 0 15px;
        }

        .blog-card {
            width: 100%;
        }

        .view-more-button {
            padding: 20px 15px 30px;
        }

        .view-more-button button {
            font-size: 18px;
            padding: 14px 30px;
        }

        .related-posts {
            padding: 0 15px 30px;
        }

        .related-grid .blog-card {
            width: 100% !important;
        }

        .related-post-arrow {
            padding-bottom: 30px;
        }

        .main-content {
            gap: 0;
        }

        .sidebar {
            width: 100%;
        }

        .main-content {
            padding: 30px 15px;
        }

        .toc {
            width: 100%;
            max-height: 100%;
        }

        .blog-article {
            padding: 20px 0;
        }

        .toc h4 {
            margin-bottom: 30px;
        }

        .sidebar h4 {
            margin: 30px 0 20px;
        }

        .blog-filters .filters {
            padding: 0 20px 10px;
        }

        .filters button {
            font-size: 14px;
            padding: 10px 15px;
        }
    }
