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

body {
    color: var(--text-color);
    background-color: var(--body-bg-color);
}


/* ============= Global CSS ==================== */

a {
    text-decoration: none !important;
}

ul,
li,
ol {
    list-style: none;
}

.red-line-hr {
    display: flex;
    align-items: center;
    gap: 12px;
}

.red-line-hr::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--primary-color);
}

.desktop-view {
    display: inline-block;
}

.mobile-view {
    display: none;
}

.primary-btn,
.secondary-btn {
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 13px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    font-weight: 500;
    font-family: var(--font-roboto);
    color: var(--text-white);
}

.secondary-btn {
    font-size: 15px;
    background-color: var(--secondary-color);
}

@media (min-width:1141px) {
    .container {
        max-width: 1140px;
        padding: 0;
    }

    .header-nav-main.sticky-nav {
        position: fixed;
        top: 0;
        z-index: 999;
        width: 1140px;
    }
}

/* ============= Global CSS ==================== */


/* ============ Header CSS ==================== */

.site-header {
    /* background-color: var(--text-white); */
    z-index: 1030;
    padding-top: 20px;
    /* border-bottom: 1px solid var(--text-color); */
}

.site-header .top-bar {
    /* background-color: var(--text-white); */
    padding: 10px;
    gap: 0.7rem;
}

.site-header .top-bar span,
.site-header .top-bar span a {
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 1.2;
    color: var(--text-color);
    font-weight: 600;
}


.site-header .top-bar div.highlight-text a {
    color: var(--primary-color);
}


.site-header .top-bar div.highlight-text {
    position: relative;
    height: 30px;
    overflow: hidden;
    flex: 1;
}

.site-header .top-bar div.highlight-text span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.site-header .top-bar div.highlight-text span.active {
    opacity: 1;
    visibility: visible;
}

.site-header .top-bar div.highlight-text a {
    text-decoration: none;
}

.site-header .header-logo {
    padding: 1rem 0;
    outline: none;
    border: none;
}

.site-header .header-logo img {
    height: 100px;
    width: 100%;
    outline: none;
    border: none;
}

.site-header .navbar {
    background-color: var(--header-bg-color);
    border-top: 4px solid var(--primary-color);
    padding: 0 1rem;
    min-height: 50px;
}


.site-header .navbar .home-link {
    border-radius: 0;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
}

.site-header .navbar ul li a.active {
    color: var(--text-white) !important;
    background-color: var(--primary-color);
}

.site-header .navbar .home-link i {
    font-size: 24px;
}

.site-header .navbar ul li a {
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    padding: 13px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.site-header.header-dark .navbar ul li a{
    color: var(--text-white);
}

.site-header .navbar ul li a span {
    color: var(--text-white);
    font-family: var(--font-roboto);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.site-header .navbar ul li a:hover {
    color: var(--text-white);
    background-color: var(--primary-color);
}

/* ============ Header CSS =================== */


/* ============ Footer CSS =================== */


.footer-main {
    background: var(--footer-bg-color);
    color: var(--text-color);
    position: relative;
}

.footer-main.footer-dark{
    color: var(--text-white);
}

.footer-main .footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 4rem 0;
}

.footer-main .footer-widget-title {
    padding: 15px 0;
}

.footer-main .footer-widget-title h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--font-roboto);
    /* font-family: var(--font-oswald); */
}

.footer-main.footer-dark .footer-widget-title h3{
    color: var(--text-white);
}

.footer-main .footer-post-item {
    display: flex;
    gap: 8px;
    padding: 10px;
    align-items: center;
}

.footer-main .footer-post-thumb {
    height: 95px;
    width: 25%;
}

.footer-main .footer-post-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.footer-main .footer-post-body {
    flex: 1;
}

.footer-main .footer-post-title {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-roboto);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    /* line-height: 1.2em; */
    line-height: 1.3rem;
    transition: .3s;
}

.footer-main.footer-dark .footer-post-title{
    color: var(--text-white);
}

.footer-main .footer-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: var(--text-color);
}

.footer-main.footer-dark .footer-post-meta{
    color: var(--text-white);
}

.footer-main .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main .footer-nav-list a {
    font-size: 16px;
    font-family: var(--font-roboto);
    font-weight: 500;
    transition: .3s;
    padding: 8px 0;
    width: 100%;
    display: block;
    text-transform: capitalize !important;
    color: var(--text-color);
}

.footer-main.footer-dark .footer-nav-list a{
    color: var(--text-white);
}

.footer-main .footer-nav-list a.active {
    color: var(--primary-color);
}

.footer-main .footer-bottom {
    padding: 10px;
}

.footer-main .footer-bottom .footer-bottom-left {
    font-family: var(--font-roboto);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
}

.footer-main.footer-dark .footer-bottom .footer-bottom-left{
    color: var(--text-white);
}

.footer-main .footer-bottom .footer-bottom-right a {
    margin: 0 8px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: var(--text-color);
}

.footer-main.footer-dark .footer-bottom .footer-bottom-right a{
    color: var(--text-white);
}

.footer-main .footer-nav-list a.home-link i {
    display: none;
}

.footer-main .footer-nav-list a span.mobile-view {
    display: flex !important;
}


/* ============ Footer CSS =================== */


/* =========== Sidebar CSS ================ */



.news-sidebar {
    background: var(--body-bg-color);
}

.news-sidebar .news-sidebar-tabs .nav {
    background: var(--primary-color);
}

.news-sidebar .news-sidebar-tabs .nav-item {
    flex: 1;
}

.news-sidebar .news-sidebar-tabs .nav-link {
    border-radius: 0;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    padding: 14px;
    font-weight: 500;
    background: var(--text-color);
    font-family: var(--font-roboto);
    color: var(--text-white);
}

.body-dark .news-sidebar .news-sidebar-tabs .nav-link {
    background: var(--text-white);
    color: var(--primary-color);
}


.news-sidebar .news-sidebar-tabs .nav-link.active {
    background-color: var(--primary-color);
    box-shadow: none;
}

.body-dark .news-sidebar .news-sidebar-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--text-white)
}

.news-sidebar .sidebar-news-list {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #d5d8dc; */
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--accent-color);
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);

}

.news-sidebar .sidebar-news-item {
    display: flex;
    /* align-items: flex-start; */
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.news-sidebar .sidebar-news-image {
    width: 90px;
    height: 90px;
    overflow: hidden;
}

.news-sidebar .sidebar-news-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.news-sidebar .sidebar-news-content {
    flex: 1;
}

.news-sidebar .sidebar-news-content h3 {
    margin-bottom: 10px;
    font-size: 14px;
    font-family: var(--font-roboto);
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-sidebar .sidebar-news-content h3 a {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    text-decoration: none;
}

.news-sidebar .sidebar-news-date span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-family: var(--font-roboto);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.news-sidebar .sidebar-news-date i {
    font-size: 12px;
}

.news-sidebar .tab-pane {
    animation: fadeIn .35s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (min-width:992px) {
    .desktop-sidebar {
        display: block;
    }

    .mobile-sidebar {
        display: none;
    }
}

@media (max-width:991.98px) {
    .desktop-sidebar {
        display: none;
    }

    .mobile-sidebar {
        display: block;
    }
}


/* ========== Sidebar Css ============== */

/* ============ Home CSS =================== */

.featured-news-section {
    padding-bottom: 2rem;
}

.featured-news-section .featured-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.featured-news-section .featured-news-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.featured-news-section .featured-news-card {
    position: relative;
    overflow: hidden;
    /* height: 100%; */
}

.featured-news-section .featured-news-large {
    height: 360px;
}

.featured-news-section .featured-news-right .featured-news-card {
    height: 170px;
}

.featured-news-section .featured-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}


.featured-news-section .featured-news-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF00 0%, #000000 100%);
    opacity: 0.5;
}

.featured-news-section .featured-news-right .featured-news-overlay {
    background-image: linear-gradient(0deg, #FFFFFF00 0%, #000000 50%, #000000 100%);
}

.featured-news-section .featured-news-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 2;
}

.featured-news-section .featured-news-large .featured-news-content {
    padding: 0.3rem 0.5rem;
}

.featured-news-section .featured-news-right .featured-news-content {
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    right: 0;
    width: 80%;
}

.featured-news-section .featured-news-category {
    margin-bottom: 20px;
}

.featured-news-section .featured-news-category a {
    display: inline-block;
    background: var(--primary-color);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: var(--text-white);
    padding: 0.25em 1em 0.25em 1em;
    border-radius: 5px 5px 5px 5px;
}

.featured-news-section .featured-news-title {
    margin: 0;
}

.featured-news-section .featured-news-title a {
    color: var(--text-white);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    font-family: var(--font-roboto);
}

.featured-news-section .featured-news-large .featured-news-title a {
    font-size: 22px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-news-section .featured-news-right .featured-news-title a {
    font-size: 16px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-news-section .featured-news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    font-family: var(--font-roboto);
}


/* ---------- News Section Box ---------------*/


.news-section .new-features-boxes {
    padding: 10px 0;
}

.news-section .news-section-heading {
    padding: 15px 0;

}

.news-section .news-section-heading h2 {
    margin: 0;
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}

.news-section .news-feature-image {
    position: relative;
    height: 250px;
}

.news-section .news-feature-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.news-section .news-feature-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: var(--font-roboto);
    font-weight: 600;
    color: var(--text-color);
}

.news-section .news-feature-content h3 a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.news-section .news-feature-meta span {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-roboto);
    line-height: 18px;
}

.news-section .news-feature-content p {
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: var(--font-roboto);
     display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-section .view-all-btn {
    margin: 1.5rem 0 2rem 0;
}

.news-section .view-all-btn a i {
    font-size: 13px;
    margin-left: 8px;
}


.news-section .news-feature-content {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    align-items: start;
    justify-content: start;
}

.latest-news-box .news-section-heading {
    margin: 10px 0;
}

.latest-news-box .news-section-heading h2 {
    padding: 15px 0;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: var(--secondary-color);
    line-height: 18px;
    margin-bottom: 0;
}

.tag-title-box .tag-box {
    position: absolute;
    left: 7px;
    top: 7px;
    background-color: var(--primary-color);
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: var(--text-white);
    padding: 0.25em 1em 0.25em 1em;
    border-radius: 0px 0px 0px 0px;
}


/* ---------- News Section Box ---------------*/

/* ---------- News category section Box ---------------*/


/* ---------- News category section Box ---------------*/



.news-category-section .news-category-heading h2 {
    margin: 0;
    padding: 15px 0;
    font-family: var(--font-roboto);
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    color: var(--text-color);
}

.news-category-section .news-category-card {
    height: 170px;
    overflow: hidden;
    /* padding: 10px 0; */
}

.news-category-section .news-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.news-category-section .news-category-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    /* background-image: linear-gradient(180deg, #FFFFFF00 0%, #000000 100%); */
    background-image: linear-gradient(0deg, #FFFFFF00 0%, #000000 50%, #000000 100%);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.news-category-section .news-category-content {
    position: absolute;
    left: 51%;
    right: 0px;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 85%;
}

.news-category-section .news-category-content h3 {
    margin: 0;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.21);
    color: var(--text-white);
    font-family: var(--font-roboto);
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-category-section .news-category-content h3 a {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}


.news-category-section .news-category-date {
    margin-top: 20px;
    font-family: var(--font-roboto);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 400;
    gap: 8px;
}

.news-category-section .news-category-date i {
    font-size: 12px;
}

.news-category-section .news-category-btn {
    margin-top: 2rem;
}


/* ============ Home CSS =================== */


/* ============ Single Category Page CSS =================== */


.layout-with-ads main{
    padding-top: 0;
}

.layout-with-ads .layout-box-single {
    display: flex;
    flex-direction: column;
}

.layout-with-ads .layout-box-single .post-category {
    order: 1;
    display: none;
}

.layout-with-ads .layout-box-single .post-title {
    order: 4;
}

.layout-with-ads .layout-box-single .post-date {
    order: 3;
}

.layout-with-ads .layout-box-single .post-featured-image {
    order: 2;
    padding: 0;
    margin-bottom: 20px;
}

.layout-with-ads .layout-box-single .post-featured-image img{
    height: 100px;
    object-fit: cover;
}

.single-post .post-category {
    margin-bottom: 1rem;
}

.single-post .post-category a {
    background-color: var(--primary-color) !important;
    font-size: 14px;
    color: var(--text-white);
    padding: 0.25em 1em 0.25em 1em;
    border-radius: 5px;
    text-align: center;
    font-family: var(--font-roboto);
    font-weight: 400;
    line-height: 21px;
}

.single-post h1.post-title {
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
    font-size: 1.7rem;
}

.single-post .highlight_content h2 {
    display: none;
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4,
.single-post .post-content h5,
.single-post .post-content h6 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4,
.single-post .post-content h5,
.single-post .post-content h6,
.single-post .post-content p,
.single-post .post-content ul li,
.single-post .post-content ol li {
    color: var(--text-color);
    font-family: var(--font-roboto);
    line-height: 24px;
    font-weight: 400;
}

.single-post .post-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.single-post .post-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
}


.single-post .post-date {
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.single-post .post-featured-image {
    padding: 30px 0;
}

.single-post .post-featured-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
}


.single-post .post-content ul,
.single-post .post-content ol {
    padding-left: 0;
    list-style: none;
}


.single-post .post-content table {
    background-color: transparent;
    width: 100%;
    margin-bottom: 15px;
    font-size: .9em;
    border-spacing: 0;
    border-collapse: collapse
}

.single-post .post-content table td,
.single-post .post-content table th {
    padding: 15px;
    line-height: 1.5;
    vertical-align: top;
    border: 1px solid hsla(0, 0%, 50.2%, .5019607843137255)
}

.single-post .post-content table th {
    font-weight: 700;
    text-align: center;
}

.single-post .post-content table tfoot th,
.single-post .post-content table thead th {
    font-size: 1em
}

.single-post .post-content table caption+thead tr:first-child td,
.single-post .post-content table caption+thead tr:first-child th,
.single-post .post-content table colgroup+thead tr:first-child td,
.single-post .post-content table colgroup+thead tr:first-child th,
.single-post .post-content table thead:first-child tr:first-child td,
.single-post .post-content table thead:first-child tr:first-child th {
    border-top: 1px solid hsla(0, 0%, 50.2%, .5019607843137255)
}

.single-post .post-content table tbody>tr:nth-child(odd)>td,
.single-post .post-content table tbody>tr:nth-child(odd)>th {
    background-color: hsla(0, 0%, 50.2%, .07058823529411765)
}

.single-post .post-content table tbody tr:hover>td,
.single-post .post-content table tbody tr:hover>th {
    background-color: hsla(0, 0%, 50.2%, .10196078431372549)
}

.single-post .post-content table tbody+tbody {
    border-top: 2px solid hsla(0, 0%, 50.2%, .5019607843137255)
}


/* ---------- You May Interested Section ------------ */

.related-post-section {
    padding-top: 2rem;
}

.related-post-section .related-post-heading {
    margin-bottom: 30px;
}

.related-post-section .related-post-heading h2 {
    margin: 0;
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

.related-post-section .related-post-card {
    position: relative;
    overflow: hidden;
    height: 170px;
}

.related-post-section .related-post-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.related-post-section .related-post-overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #FFFFFF00 0%, #000000 100%);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.related-post-section .related-post-content {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 85%;
}

.related-post-section .related-post-content h3 {
    margin: 0;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.21);
    color: var(--text-white);
    font-family: var(--font-roboto);
    font-weight: 600;
    line-height: 1;
}

.related-post-section .related-post-content h3 a {
    text-decoration: none;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
}

.related-post-section .related-post-date {
    gap: 5px;
    margin-top: 20px;
    color: var(--text-white);
    font-size: 12px;
    font-family: var(--font-roboto);
    line-height: 18px;
    font-weight: 400;
}

.related-post-section .related-post-date i {
    font-size: 12px;
}

/* ============ Single Category Page CSS =================== */


/* ============ Category Page CSS =================== */


.category-post-list-section .category-post-list-heading h2 {
    margin: 0;
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    padding: 15px 0;
}

.category-post-list-section .category-post-list-box {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    height: 100%;
}

.category-post-list-section .category-post-list-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.category-post-list-section .category-post-list-content h3 {
    margin: 16px 0 8px 0;
    color: var(--text-color);
    font-family: var(--font-roboto);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
}

.category-post-list-section .category-post-list-content h3 a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.category-post-list-section .category-post-list-date {
    gap: 8px;
    font-family: var(--font-roboto);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 1rem;
}

.category-post-list-section .category-post-list-date i {
    font-size: 12px;
}

.category-post-list-section .category-post-list-content p {
    margin: 0;
    font-family: var(--font-roboto);
    color: var(--text-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: break-word;
}

.category-mini-posts {
    padding: 20px 0;
}

.category-mini-posts .category-post-list-section {
    height: 100%;
}

.category-mini-posts .category-post-list-section .category-post-list-box {
    padding: 0;
}

.category-mini-posts .category-post-list-section .category-post-list-content {
    padding: 1rem;
}

/* @media (max-width:991px) {

    .category-post-list-section {
        padding: 60px 0;
    }

    .category-post-list-section .category-post-list-heading h2 {
        font-size: 2.8rem;
    }

    .category-post-list-section .category-post-list-image img {
        height: 420px;
    }

    .category-post-list-section .category-post-list-content {
        padding: 24px;
    }

    .category-post-list-section .category-post-list-content h3 a {
        font-size: 3rem;
    }

    .category-post-list-section .category-post-list-content p {
        font-size: 1.8rem;
    }

} */


/* @media (max-width:767px) {

    .category-post-list-section {
        padding: 50px 0;
    }

    .category-post-list-section .category-post-list-heading {
        margin-bottom: 20px;
    }

    .category-post-list-section .category-post-list-heading h2 {
        font-size: 2.2rem;
    }

    .category-post-list-section .category-post-list-image img {
        height: 250px;
    }

    .category-post-list-section .category-post-list-content {
        padding: 20px;
    }

    .category-post-list-section .category-post-list-content h3 a {
        font-size: 2.2rem;
    }

    .category-post-list-section .category-post-list-date {
        margin-top: 12px;
        font-size: 1.3rem;
    }

    .category-post-list-section .category-post-list-content p {
        margin-top: 18px;
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .category-post-list-section .category-post-list-btn {
        margin-top: 20px;
    }

    .category-post-list-section .category-post-list-btn a {
        padding: 14px 28px;
        font-size: 1.6rem;
    }

} */

/* ============ Category Page CSS =================== */


/* ============== Common CSS for static pages ================ */

.common-content-pages h1 {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--font-roboto);
    margin-bottom: 1rem;
}

.wp-singular h2 {
    font-family: var(--font-roboto);
    font-size: 1.5rem;
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 1rem;
}

.wp-singular h3 {
    font-size: 1.3rem;
    font-family: var(--font-roboto);
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 1rem;
}

.common-content-pages p,
.common-content-pages ul li {
    font-size: 16px;
    font-family: var(--font-roboto);
    font-weight: 400;
    color: var(--text-color);
}

.common-content-pages ul li {
    list-style: disc;
}

.common-content-pages ol li {
    list-style: decimal;
}

.common-content-pages ul li,
.common-content-pages ol li {
    margin-bottom: 5px;
}


.common-content-pages a {
    color: var(--primary-color);
}

/* ============== Common CSS for static pages ================ */

/* ============ Responsive CSS =================== */

@media (max-width:1140px) {
    .site-header .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media(min-width:768px) and (max-width:1024px) {

    .container {
        max-width: 95%;
        padding-left: 0;
        padding-right: 0;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: inline-block;
    }

    .site-header .navbar .home-link {
        width: 100%;
        justify-content: start;
    }

    .site-header .navbar {
        padding-left: 0;
        padding-right: 0;
    }


    header .navbar .navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none;
    }

    header .navbar .navbar-toggler i {
        font-size: 23px;
    }

    header .navbar .navbar-toggler:focus i {
        color: var(--primary-color);
    }

    header .navbar .navbar-toggler .navbar-toggler-icon {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .site-header #mainNavbar {
        position: absolute;
        top: 47px;
        z-index: 999;
        width: 100%;
        background-color: var(--accent-color);
    }

    .site-header .top-bar div.highlight-text span a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }


    .footer-main .footer-bottom {
        border-top: 1px solid #665656;
    }

    .featured-news-section .featured-news-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-news-section .featured-news-grid {
        grid-template-columns: 1fr;
    }

    .news-section .news-feature-image img {
        min-height: 250px;
    }

    .news-sidebar .sidebar-news-image {
        width: 40%;
    }

    .news-sidebar .sidebar-news-content {
        flex: auto;
        width: 59.98%;
    }

    .news-sidebar .sidebar-news-item {
        align-items: center;
    }
}

@media(max-width:991.98px) {
    .news-cat-main-box {
        gap: 40px;
    }

    .news-sidebar .news-sidebar-tabs .nav-link {
        padding: 10px;
    }
}

@media(max-width:767px) {

    .container {
        padding: 0 10px;
    }

    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: inline-block;
    }

    .site-header .navbar .home-link {
        width: 100%;
        justify-content: start;
    }

    .site-header .navbar {
        padding-left: 0;
        padding-right: 0;
    }

    .site-header .header-logo img {
        height: 70px;
    }

    header .navbar .navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none;
    }

    header .navbar .navbar-toggler i {
        font-size: 23px;
    }

    header .navbar .navbar-toggler:focus i {
        color: var(--primary-color);
    }

    header .navbar .navbar-toggler .navbar-toggler-icon {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .site-header #mainNavbar {
        position: absolute;
        top: 47px;
        z-index: 999;
        width: 100%;
        background-color: var(--accent-color);
    }

    .site-header .top-bar {
        flex-direction: column;
        justify-content: start !important;
        text-align: left !important;
        align-items: start !important;
    }

    .site-header .top-bar div.highlight-text {
        width: 90%;
        height: auto !important;
        overflow: visible;
    }

    .site-header .top-bar div.highlight-text span a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer-main .footer-nav-list a {
        font-size: 14px;
    }

    .footer-main .footer-bottom .footer-bottom-right a,
    .footer-main .footer-bottom .footer-bottom-left {
        font-size: 12px;
    }

    .footer-main .footer-top {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }


    .footer-main .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #665656;
    }

    .footer-main .footer-bottom-right {
        justify-content: center;
    }

    .footer-main .footer-post-thumb img {
        object-fit: contain;
    }


    .featured-news-section .featured-news-grid {
        grid-template-columns: 1fr;
    }


    .featured-news-section .featured-news-right {
        grid-template-columns: 1fr;
    }

    .featured-news-section .featured-news-right .featured-news-content {
        top: 50%;
    }

    .featured-news-section .featured-news-large .featured-news-content {
        left: 10px;
        bottom: 18px;
        width: 95%;
    }

    .news-section .news-feature-content {
        margin: 15px 0;
    }

    .news-section .new-features-boxes .col-lg-6 {
        padding: 0;
    }

    .news-section .news-feature-wrapper {
        align-items: center;
        justify-content: center;
    }

    .news-cat-main-box {
        gap: 40px;
    }

    .single-post h1.post-title {
        font-size: 24px;
    }

}

/* ============ Responsive CSS =================== */