 /* Reset some default browser styles */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --website-font-family: Noto Serif Bengali !important;
    --full-website-width: 100%;
    --text-decoration: none;
    /* --full-website-background-color: rgb(253, 253, 253); */
    --full-website-background-color: #ffff;
    --full-website-background-color-1: rgb(255, 255, 255);
    --full-website-margin-top: 20px;
    --full-website-content-max-width: 80rem;
    --web-all-text-color: rgb(20, 20, 20);
    --web-all-border-color: #ddd;
    --all-image-opacite-color: .8;
    --news-image-border-radius: 5px;


    --top-menu-bg-color: #ffff;
    --second-menu-bg-color: rgb(255, 255, 255);
    --second-menu-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    --menu-text-color: rgb(24, 24, 24);
    --menu-font-size: 1.1rem;
    --menu-line-height: 1.5rem;
    --menu-font-weight: 600;
    --menu-padding: 0.4rem 0.9rem;
    --menu-margin-inline-end: 0.75rem;
    --dropdown-menu-background-color: #ffffff;
    --dropdown-menu-text-color: rgb(24, 24, 24);
    --dropdown-menu-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);


    --title-underline-height: 2px;
    --menu-underline-and-text-color-1: #870103;
    --menu-underline-and-text-color-2: #1c90fc;
    --menu-underline-and-text-color-3: #fff;
    --text-underline-transition: background-size .9s cubic-bezier(.215,.61,.355,1), color 0.9s ease;
    --text-underline-background-image: linear-gradient(90deg, currentColor 0, currentColor 94%);


    --news-headline-font-size-1: 1.75rem;
    --news-headline-line-height-1: 1.9rem;
    --news-headline-font-weight-1: 600;
    --news-headline-font-color-1: #121212;

    --news-headline-font-size-2: 1.25rem;
    --news-headline-font-weight-2: 600;
    --news-headline-font-color-2: #2d3134;
    --news-headline-line-height-2:1.9rem;

    --news-headline-font-size-3: 1.125rem;
    --news-headline-font-weight-3: 600;
    --news-headline-font-color-3: #2d3134;
    --news-headline-line-height-3:1.625rem;


    --news-summary-font-size: 1rem;
    --news-summary-line-height: 1.375rem;
    --news-summary-font-weight: 400;
    --news-summary-font-color: #555555;


    --news-category-headline-font-size: 1.4375rem;
    --news-category-headline-line-height: 2rem;
    --news-category-headline-font-weight: 700;
    --news-category-headline-text-color: rgb(20, 20, 20);
    --news-category-headline-border-container-height: 2px;
    --news-category-headline-margin-right: 5px;
    --news-category-headline-title-style-hover-background-color: rgb(184, 0, 0);
    --news-category-headline-title-style-hover-animation: stepProgressBar 1s forwards ease-in-out;

    --video-section-bg-color: rgb(0, 0, 0);
    --video-section-thumbnails-bg-color: #222325;
    --video-thumbnails-section-hover-and-active-bg-color: #333;
    --video-section-headline-and-v-title-color: rgb(255, 255, 255);

    --news-details-headline-font-size: 2rem;
    --news-details-headline-line-height: 2.5rem;
    --news-details-headline-font-weight: 700;
    --news-details-headline-font-color: rgb(20, 20, 20);

    --news-details-image-caption-font-size: 1.0625rem;
    --news-details-image-caption-line-height: 0.875rem;
    --news-details-image-caption-font-color: rgb(84, 86, 88);

    --news-details-summary-font-size: 1.125rem;
    --news-details-summary-line-height: 1.875rem;
    --news-details-summary-font-weight: 400;
    --news-details-summary-font-color: rgb(20, 20, 20);

    --web-content-scroll-to-top-background-color: #870103;
    --web-content-scroll-to-top-color: #ffffff;
    --web-content-scroll-to-top-padding: 12px 13px;
    --web-content-scroll-to-top-border-radius: 50%;
    --web-content-scroll-to-top-font-size: 16px;
    --web-content-scroll-to-top-opacity: 0.7;
    --web-content-scroll-to-top-transition: opacity 0.3s ease;
    --web-content-scroll-to-top-bottom: 50px;
    --web-content-scroll-to-top-right: 50px;


    --footer-bg-color: rgb(34, 34, 34);
    --footer-text-color: #ffffff;
    --footer-menu-font-size: 1.125rem;
    --footer-menu-line-height: 2.125rem;


}
/* border class */
.news-separator-vertical-border {
    border-right: 1px solid #e0e0e0;
    padding: 0px 15px;

}
.news-separator-horizontal-border {
    border-top: 1px solid #e0e0e0;
    /* margin: 15px 0px 10px 0; */
    margin: 15px 0px;
}

/******************** Common class name css here  **********************/
body {
    font-family: var(--website-font-family) !important;
}
.mobile-header {
    display: none;
}

.main-wrapper {
    width: 100%;
}
.main-wrapper-news {
    width: 100%;
    background-color: var(--full-website-background-color);
    display: flex;
    justify-content: center;
    padding: 10px 0px;
    /* margin-top: var(--full-website-margin-top); */
}
.main-wrapper-news-home{
     background-color: var(--full-website-background-color-1) !important;
}
.content {
    max-width: var(--full-website-content-max-width);
    width: 100%;
    display: flex;
    flex-direction: column;
}
.space-for-web{
    display: block;
}
.focusMenuUnderline {
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.focusMenuUnderline.active {
    color: rgb(26, 115, 232);
}

.focusMenuUnderline.active::after {
    position: absolute;
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: rgb(26, 115, 232);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    bottom: -4px;
    left: 0;
}

.focusDropdownMenuUnderline{
    color: inherit;
    transition: color 0.3s ease;
}
.focusDropdownMenuUnderline:hover{
    color: rgb(26, 115, 232);
}
.headlineHoverLink:hover .headTitle{
    color: rgb(26, 115, 232) !important;
}

.news-title-1 {
    color: var(--news-headline-font-color-1);
    font-size: var(--news-headline-font-size-1);
    line-height: var(--news-headline-line-height-1);
    font-weight: var(--news-headline-font-weight-1);
    text-decoration: none;
}
.news-title-2{
    font-size: var(--news-headline-font-size-2);
    line-height: var(--news-headline-line-height-2);
    font-weight: var(--news-headline-font-weight-2);
    color: var(--news-headline-font-color-2);
}
.news-title-3{
    font-size: var(--news-headline-font-size-3);
    line-height: var(--news-headline-line-height-3);
    font-weight: var(--news-headline-font-weight-3);
    color: var(--news-headline-font-color-3);

}
.custom-sty-36803{
    overflow: hidden;
    height: 78px;
}
.text-decoration{
    text-decoration: var(--text-decoration);
    color: #2d3134;
    cursor: pointer;
}
.hover-color:hover{
    color: #1a73e8;
    _color: #8C0202;
}
.border-bottom{
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.border-bottom:last-child{
    border-bottom: none;
    padding-bottom: 0px;
}
.border-bottom-1{
    border-bottom: 1px solid #ddd;
    padding: 15px 0px;
}
.border-bottom-1:last-child{
    border-bottom: none;
}
.news-summary {
    font-size: var(--news-summary-font-size);
    line-height: var(--news-summary-line-height);
}
.news-summary {
    font-family: var(--website-font-family);
    font-weight: var(--news-summary-font-weight);
    font-style: normal;
    margin-top: 10px;
    margin-bottom: 1rem;
    color: var(--news-summary-font-color);
    text-decoration: none;
}
.category-hadline-style{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--news-headline-font-color-1);
    font-size: var(--news-headline-font-size-1);
    border-bottom: 3px solid #870103;
    margin-bottom: 15px;
    text-decoration: none;
    margin: 0px 0px 15px 0px;
    font-weight: bold;
}
.category-hadline-span-style{
    /* margin-left: 10px; */
}

.imageHoverColor:hover img{
    opacity: var(--all-image-opacite-color);
}
.load-data{
    text-align: center;
    margin-bottom: 30px;
}
.load-more-btn {
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    background-color: #1c90fc;
    color: white;
    border-radius: 4px;
    font-family: var(--website-font-family);
    font-size: var(--news-headline-font-size-2);
    font-weight: var(--news-headline-font-weight-2);
}
#loading-icon img {
    vertical-align: middle;
    margin-left: 2px;
}
/******************** Common class name css here  **********************/


/********************** Category headline css *******************************/
/* .title-style {
    display: flex;
    align-items: center;
}
.title-style:nth-child(2):hover {
    background:var(--news-category-headline-title-style-hover-background-color);
    cursor: pointer;
}
.title-text {
    flex: none;

} */
.nhl-cey3go {
    font-size: var(--news-category-headline-font-size);
    line-height: var(--news-category-headline-line-height);
}
.nhl-cey3go {
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: var(--news-category-headline-font-weight);
    color: var(--news-category-headline-text-color);
    padding: 20px 0px;
    margin-right: 5px;
}
.nhl-cey3go a {
    color: var(--news-category-headline-text-color);
    text-decoration: none;
    display: inline-block;
}
.nhl-cey3go span {
    display: inline-block;
    position: relative;
}
.nhl-cey3go svg {
    margin-inline-start: 0.5rem;
    fill: currentcolor;
    position: relative;
    margin: 0px -2px 0px 8px;
}
.nhl-cey3go a:hover, .nhl-cey3go a:focus {
    color: var(--news-category-headline-title-style-hover-background-color);
}
.custom-sty-had-0970{
    margin: 0px 0px 8px 0px;
    text-align: center;
    line-height: 24px;
    padding-bottom: 5px;
}
/********************** Category headline css end *******************************/


/**************************** menu bar css start here **********************************/
.main-wrapper-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background-color: var(--top-menu-bg-color);
    transition: opacity 0.8s ease, transform 0.8s ease;
    opacity: 1;
    transform: translateY(0);
    z-index: 11111111111;
}

.main-wrapper-header.hidden {
    opacity: 0;
    transform: translateY(-100%);
}

.main-wrapper-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--top-menu-bg-color);
    opacity: 1;
    transform: translateY(0);
    z-index: 11111111111;
}

.main-wrapper-header.at-top {
    transition: transform 0.8s ease-in-out;
}
/* Top bar with red background for the logo */
.top-bar {
    background-color: var(--top-menu-bg-color);
    _height: 6rem;
    _line-height: 6rem;
    text-align: left;
}
.logo {
    max-width: var(--full-website-content-max-width);
    display: flex;
    margin: 0 auto;
    position: relative;
    justify-content: space-between;
    align-items: center;

}

.logo a {
    text-decoration: none;
    display: inline-block;
    width: 20%;
    height: auto;
    text-align: left;
}

.logo img {
    vertical-align: middle;
    transition: border-bottom 0.3s ease;
    width: 225px;
}

.web-head-top-ad img{
    width: 100%;
    padding: 10px 0px;
}

.bottom-bar{
    background: var(--second-menu-bg-color);
    height: 48px;
    line-height: 48px;
    /* box-shadow: var(--second-menu-box-shadow); */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.nav-links {
    max-width:var(--full-website-content-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    list-style: none;
    position: relative;
    text-align: center;
}
.nav-links li {
    margin-inline-end: var(--menu-margin-inline-end);
    -webkit-margin-end: var(--menu-margin-inline-end);
}

.nav-links a {
    color: var(--menu-text-color);
    text-decoration: none;
    font-size: var(--menu-font-size);
    line-height: var(--menu-line-height);
    font-weight: var(--menu-font-weight);
    font-style: normal;
    padding: var(--menu-padding);
}

.nav-links li a:hover {
    color: #8C0202;
}

.nav-links li:last-child {
    -webkit-margin-end: 0rem;
}
ul ul {
    list-style-type: none !important;
}
.icon-wrapper {
    cursor: pointer;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0px;
    background-color: var(--dropdown-menu-background-color);
    box-shadow: var(--dropdown-menu-box-shadow);
    padding: 10px 0;
    list-style: none;
    min-width: var(--full-website-content-max-width);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}
.dropdown-menu:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 88.7%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent var(--dropdown-menu-background-color) transparent;
    z-index: 1000;
}
.menu-columns {
    display: grid;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 20px;
    border-top: 1px solid var(--web-all-border-color);
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.menu-columns ul {
    list-style: none;
    padding: 0;
    margin: 0 10px;
}
.menu-columns li a {
    text-decoration: none;
    display: block;
    color: var(--dropdown-menu-text-color);
    font-size: var(--menu-font-size);
    line-height: var(--menu-line-height);
    padding: var(--menu-padding);
}
.menu-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 7px;
    border-top: 1px solid var(--web-all-border-color);
}
.menu-footer a {
    text-decoration: none;
    color: var(--dropdown-menu-text-color);
    font-size: var(--menu-font-size);
    display: flex;
    align-items: center;
}
.menu-footer img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}
.dropdown-menu.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.open_icon_menu{
    vertical-align: middle;
}
/* Container for the search */
.search-container {
    position: absolute;
    display: flex;
    align-items: center;
    right: 0;
}
 .top-bar-right-o234 {
    _display: flex;
    gap: 5px;
    width: 20%;
    text-align: right;
    align-items: center;
    justify-content: end;
}
.topSocialIcon .fa-facebook {
    border: 1px solid #F1F1F1;
    color: #1b4a82;
}
.topSocialIcon .fa-brands {
    padding: 6px 8px 8px 8px;
    font-size: 20px;
    width: 34px;
    height: 34px;
    text-align: center;
    text-decoration: none;
    margin: 5px 1px;
}
.topSocialIcon a {
    cursor: pointer;
}
.topSocialIcon a {
    display: inline-block !important;
}
.borderRadius0 {
    border-radius: 0px !important;
}
.topSocialIcon .fa-twitter {
    border: 1px solid #F1F1F1;
    color: #1DA1F2;
}
.topSocialIcon .fa-linkedin {
    border: 1px solid #F1F1F1;
    color: #003b5f;
}
.topSocialIcon .fa-instagram {
    border: 1px solid #F1F1F1;
    color: #8d1b75;
}
.topSocialIcon .fa-youtube {
    border: 1px solid #F1F1F1;
    color: #c30404;
}
.topSocialIcon .fa-tiktok {
    border: 1px solid #F1F1F1;
    color: #333;
}
.topSocialIcon .fa-telegram {
    border: 1px solid #F1F1F1;
    color: #0088CC;
}
.topSocialIcon .fa-pinterest {
    border: 1px solid #F1F1F1;
    color: #E60023;
}
.topSocialIcon .fa-github {
    border: 1px solid #F1F1F1;
    color: #333;
}
.topSocialIcon .fa-whatsapp {
    border: 1px solid #F1F1F1;
    color: #25D366;
}

.h-color-i:hover{
    color: #000;
}
.open_icon {
    vertical-align: middle;
    _padding: 5px;
    width: 24px;
    height: 24px;
    _border: 1px solid #F1F1F1;
    _margin-top: -4px;
}
.search-icon {
    cursor: pointer;
}
/* Style for the search input */
.search-input {
    display: none;
    position: absolute;
    top: 2px;
    right: 0;
    _max-width: 30rem !important;
    overflow: hidden;
    width: 100%;
    transition: max-width 0.3s ease, width 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    border: 1px solid var(--web-all-border-color);
    border-radius: 4px;
    padding: 0.5rem;
    padding-right: 40px;
    font-size: 1rem;
    color: #000;
    z-index: 10000;
    background: #f1f1f1;
}

.search-input:focus-visible {
    outline: none !important;
}
.close-icon {
    position: absolute;
    top: 10px;
    right: 7px;
    cursor: pointer;
    display: none;
    z-index: 10000;
}

.search-container.active .search-input {
    display: block;
    max-width: var(--full-website-content-max-width);
    width: var(--full-website-content-max-width);
    font-family: var(--website-font-family);
}

.search-container.active .close-icon {
    display: block;
}

.search-container.active .search-icon {
    display: none; /* Hide it */
}
/* .Dsdjs342d{
    text-align: left;
    width: 33.33%;
} */
.date-time{
    font-size: var(--menu-font-size);
    color: #000;
    padding: 0px 0px 10px 20px;
    text-align: left;
    font-weight: 600;
}

.hidden-icon {
    display: none;
}
.close_icon{
    vertical-align: middle;

}
.svg-icon{
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color:#0072b1;
}

@media (max-width: 37.4375rem) {
    .space-for-web{
        display: none;
    }
    .top-bar{
        height: 90px;
    }
    .logo {
        align-items: center !important;
    }
    .search-icon {
        position: absolute;
        right: 0;
        margin-right: 10px !important;
    }
    .logo img {
        width: 60% !important;
    }
    .logo a{
        width: 100%;
    }
    .logo a img {
        _margin-left: 10px !important;
        line-height: 4rem;
    }
    .Dsdjs342d {
        display: none !important;
    }
    .nav-links {
       margin: 0px 10px 0px 36px !important;
       position:initial !important;

    }
    .bottom-bar {
        white-space: nowrap;
        overflow-x: scroll;
        scroll-behavior: auto;
        scrollbar-width: none;
        height: 48px !important;
        line-height: 46px !important;
        /* overflow: hidden !important; */
    }
    .nav-links {
        justify-content: left !important;
    }
    /* .bottom-bar::after {
        content: " ";
        height: 43%;
        width: 3rem;
        position: absolute;
        right: 0px;
        bottom: 0px;
        z-index: 3;
        overflow: hidden;
        pointer-events: none;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    } */
    .date-time {
        font-size: .9rem !important;
    }
    .menu-icon {
        position: absolute;
        background: #fff;
        z-index: 1111;
        line-height: 2.9rem;
        left: 0;
        right: initial;
        padding: 0px 6px;
    }

    .nav-links a {
        padding: 0.25rem 0.25rem !important;
    }
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0px !important;
        right: 0px !important;
        background-color: white;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        padding: 10px 0;
        list-style: none;
        min-width: 400px !important;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        visibility: hidden;
    }
    .menu-columns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        padding: 0px 20px 20px 20px !important;

    }
    .menu-footer {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0px 20px;
        border-top: 1px solid #ddd;
    }
    .dropdown-menu:before {
        content: '';
        position: absolute;
        top: -20px;
        left: 4.4% !important;
        transform: translateX(-50%);
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
        z-index: 1000;
    }

    .search-container.active .search-input {
        max-width: 20rem !important;

    }
    .search-input {
        position: relative !important;
        left: 0px !important;
        right: 0 !important;
    }

    /* .search-container {
        right: 1px !important;
        position: absolute !important;
        background: #fff !important;
        z-index: 1111 !important;
        line-height: 3rem !important;
        padding: 0px 4px !important;
    } */
    /* .close-icon {
        position: absolute !important;
        z-index: 10000;
        right: 4px !important;
    } */

    .main-section {
        display: block !important;
        gap: 10px;
    }
    .feature-news {
        /* flex: none !important; */
        overflow: hidden;
        padding: 0px 0px 0px 0px !important;
        margin: 10px;
        border-right:  none !important;
    }
    /* .small-news-grid {
        gap: 16px;
        height: fit-content;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        margin: 10px;
        border-bottom: 1px solid #ddd !important;
    } */
    /* .small-news-item:not(:nth-last-child(-n+2)) {
        border-bottom: none !important;
    }
    .small-news-grid:nth-child(2) .small-news-item:nth-child(2):before, .small-news-grid:nth-child(2) .small-news-item:nth-child(4):before {
        border-left: none !important;

    } */

    .additional-news-top {
        padding: 0px !important;
        border-top: none !important;
        border-bottom: none !important;
        margin-top: 0px !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    }
    .extra-news-item-top:not(:nth-child(3n)):before {
        border-right: none !important;
    }
    .extra-news-item-top{
        /* border-bottom: 1px solid #ddd !important; */
        margin: 10px !important;
    }

    .extra-news-item-top:first-child, .extra-news-item-top:nth-child(4), .extra-news-item-top:nth-child(7) {
        padding: 0px !important;
    }
    .extra-news-item-top:nth-child(2), .extra-news-item-top:nth-child(5), .extra-news-item-top:nth-child(8) {
        padding: 0px !important;
    }
    .extra-news-item-top:nth-child(3), .extra-news-item-top:nth-child(6), .extra-news-item-top:nth-child(9) {
        padding: 0px !important;
    }

    .extra-news-item-top:last-child {
        border-bottom: none !important;
        display: none;
    }
    .extra-news-item-top:not(:nth-child(5n)):before {
        content: "";
        position: absolute;
        top: 10px;
        right: 0;
        bottom: 10px;
        border-right: 0px !important;
    }
    .custom-sty-02674{
        height: auto !important;
        object-fit: cover;
    }
    .ns-1pjzxpr{
        display: none;
    }
    .title-style {
        margin: 0px 10px !important;
    }
    .nhl-cey3go {
        font-size: 1.3rem !important;
        line-height: 1.6rem !important;
        padding: 10px 0px !important;
    }
    .feature-news-for-your {

        margin: 10px !important;
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }


    .additional-news-bangla {
        margin: 10px;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .additional-album {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .hksg342ndo7-gallery-container {
        display: block !important;
        margin: 10px !important;
    }
    .hksg342ndo7-main-slider {
        margin-right: 0px !important;
        padding-bottom: 5px !important;
        border-bottom: 1px solid #ddd !important;
        margin-bottom: 10px !important;
    }
    .hksg342ndo7-controls {
        width: 24% !important;
    }
    .hksg342ndo7-thumbnail-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding-left: 5px !important;
        padding-right: 5px;
    }
    .video-section{
        margin-top: 5px !important;
        margin-bottom: 20px !important;
    }
    .video-iframe{
        width: 100% !important;
        height: 225px !important;
    }
    .video-gallery {
        display: block !important;
        margin: 0px;
    }
    .video-container {
        width: 100% !important;
        overflow: hidden;
    }
    .thumbnails {
        width: 100% !important;
        max-height: auto !important;
        position: relative;
        background: #222325;
    }
    .thumbnail-container {
        padding: 10px 10px 0px 10px !important;
        /*border-left: 2px solid #870103 !important;*/
        margin-bottom: 5px !important;
    }
    .scroll-to-top {
        bottom: 40px !important;
        right: 30px !important;
    }
    .footer-full-display {
        padding: 0px 10px !important;
    }
    .nful-zctm2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .copy-right {
        grid-template-columns: repeat(1, 1fr) !important;
        display: grid;
        gap: 0px !important;
    }


    .main-wrapper-content {
        display: block !important;
        margin: 0px 8px !important;
    }
    .main-wrapper-news {
        margin-top: 0px !important;
    }
    .news-main h1 {
        font-size: 1.5rem !important;
        padding: .5rem 0px !important;;
        line-height: 2rem !important;

    }

    .nul-1rvtlej {
        display: block !important;
    }
    .s45d44dd {
        width: 100% !important;
        border-left: 3px solid #ddd;
        padding-left: 5px !important;
    }
    .sdfsd453r {
        /* width: 77.5% !important; */
        text-align: left !important;
        margin-top: 15px !important;
    }
    .ndsc-1vjaf6b {
        padding-inline-start: 0px;
        margin-bottom: 0rem !important;
    }
    .st-btn-print {
        top: -40px !important;
    }


    .zctm2-social {
        grid-template-columns: repeat(2, 1fr) !important;
        margin: 10px !important;
        padding: 0px 0px 1.3rem !important;

    }
    .s14imjm8-socia {
        font-size: .9rem !important;
        padding: 5px 0px !important;

    }
    .li-border-style {
        margin-bottom: 1rem !important;
    }


    .archive-navigation {
        display: block !important;
        margin:0px 10px !important;
        padding: 10px 0px 0px 0px !important;
    }
    .filter-controls {
        display: block !important;
    }
    .archive-breadcrumb{
        border-bottom: 1px solid #ddd;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }


    .filter-controls select {
        padding: .1rem 2rem .1rem .30rem !important;
        font-size: 1.12rem !important;
        margin-right: 5px !important;
        margin-bottom: 9px !important;
    }

    .news-container {
        padding: 0px 0px !important;
        margin: 10px !important;
    }
    .news-box h3 {
        font-size: 1.3rem !important;

    }
    .converter-form{
        margin: 10px !important;
    }

    .converter-text37df h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0px !important;
    }
    .bijoy_button, .unicode_button, .reset_button {
        font-size: 14px !important;
        color: #fff;
        padding: 10px 10px !important;
    }

    .nfcrp-cmqtv6 {
        padding: 1rem 0px 0px 0px !important;
    }

    .sl-12fo{
        margin-bottom: 0.5rem !important;
    }
    .fff-23d2f{
        text-align: left !important;
        padding-bottom: 20px !important;
    }
    .fff-23d2f a {
        width: 60% !important;
        line-height: 0px !important;
        padding: 1rem 0px 0px 0px !important;
    }
    .mobile-v-video{
        margin: 10px;
    }
    .more-video {
        padding: 7px 134px !important;
        font-size: 21px;
        cursor: pointer;
        border: none;
        background-color: #870103;
        color: white;
        border-radius: 4px;
        text-decoration: none;
    }

    .st-btn-print{
        display: none !important;
    }

    .tableizer-firstrow th {
        font-size: 11px !important;
        padding: 8px !important;
    }

    .table-body-font td {
        font-size: 10px !important;
        padding: 8px !important;
    }
    .asdf-14d{
       margin: 10px !important;
    }
    .choti-h1{
        font-size: 1em !important;
        color: #fff;
        padding: 3px 12px !important;
        background: linear-gradient(45deg, #870103, #ff7979) !important;
        margin: 0px;
    }
    .phone-view-class{
        _margin: 10px !important;
    }

    .border-class {
        border: 1px solid #ddd !important;
    }


}

/**************************** menu bar css end here **********************************/



/**************************** footer section css start here **********************************/
.footer-full-display{
    background-color: var(--footer-bg-color);
    font-size: var(--footer-menu-font-size);
    line-height: var(--footer-menu-line-height);
    font-style: normal;
    font-weight: 400;
    padding: 0px 0.5rem;
}
.nfd-n6enek {
    max-width: var(--full-website-content-max-width);
    margin: 0px auto;
    padding-top: 0.5rem;

}
.nful-zctm2 {
    grid-template-rows: repeat(3, auto);
}

.nful-zctm2 {
    column-gap: 1rem;
    grid-template-columns: repeat(6, 1fr);
    column-count: 5;
}
.nful-zctm2 {
    display: grid;
    /* grid-auto-flow: column; */
}
.nful-zctm2 {
    border-bottom: 0.0625rem solid var(--web-all-border-color);
    column-count: 6;
    margin: 0px;
    list-style-type: none;
    padding: 0px 0px 1.5rem;
}
.nful-zctm2 > li:first-of-type {
    border-bottom: 0.0625rem solid var(--web-all-border-color);
    padding: 0.5rem 0px;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
    width: 100%;
    column-span: all;
    text-align: center;
}
.nfuli-a32bmp {
    min-width: 50%;
    column-gap: 1rem;
    break-inside: avoid-column;
    color: var(--footer-text-color);
    font-size: var(--footer-menu-font-size);
    line-height: var(--footer-menu-line-height);
}
.nfulia-14imjm8 {
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: 700;
    color: var(--footer-text-color);
    padding: 0.75rem 0px;
    text-decoration: none;
    display: block;

}
.nfulia-14imjm8 {
    font-style: normal;
    font-weight: 700;
    color: var(--footer-text-color);
    padding: 0.75rem 0px;
    text-decoration: none;
    display: block;
}
.nfulia-14imjm8:hover, .nfulia-14imjm8:focus {
    text-decoration: underline;
}
.nfcrp-cmqtv6 {
    color: var(--footer-text-color);
    margin: 0px;
    padding: 1rem 0px;
}
.nfcrp-cmqtv6 a {
    padding: 0px;
}
.copy-right{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    display: grid;
}
.sl-12fo{
    _margin-bottom: 1.5rem;
}
.fff-23d2f{
    text-align: right;
}
/**************************** footer section css end here **********************************/


/********************** home page show news section css start here ***********************/
.main-section {
    border: 1px solid #ddd;
    padding: 10px;
    width: 55%;
    background: #ffff;
}
.news-top-section{
    display: flex;
    gap: 20px;
}
.left-side-bar{
    border: 1px solid #ddd;
    padding: 10px;
    width: 23%;
    background: #ffff;
}
.item-1-tlsb-img{
    width: 100% !important;
    height: 160px;
    object-fit: cover;
}
.item-2-child-link{
    text-decoration: none;
    display: flex;
    align-items: center;

}
.item-2-child-img{
    width: 40% !important;
    height: auto;
    padding-right: 10px;
}
.feature-news-141frgd{
    display: flex;
    _align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.feature-news-141frgd img{
    width: 100%;
}
.nh-1tj0lg4qr63{
    padding-left: 2px !important;
}
.small-news-grid{
    padding-top: 13px;
    position: relative;
    overflow: hidden;
    height: 365px;

}
.small-news-grid::before {
    content: "";
    position: absolute;
    background-color: var(--web-all-border-color);
    height: 1px;
    display: block;
    width: 100%;
    top: 62%;
}
.small-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* First 4 items → normal (1 column each) */
/* Last 2 items → span 2 columns each */
.small-news-item:nth-child(n+5) {
    grid-column: span 2;
    display: flex;
    /* align-items: center; */
}
.small-news-item:nth-child(n+5) .custom-sty-36803 {
    height: auto !important;
}
.small-news-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}
.small-news-item {
    position: relative;

}
.small-news-item:hover .text-decoration{
    color: rgb(26, 115, 232);
}

.small-news-item:nth-last-child(-n+2) .hyte2522d{
    padding-right: 10px;
    width: 100%;
}
.small-news-item:nth-last-child(-n+2) .news-title-3{
    width: 100%;
}

.small-news-item::before {
    content: "";
    position: absolute;
    background-color: var(--web-all-border-color);
    height: 100%;
    display: block;
    width: 1px;
    top: 0px;
    left: -11px;
    right: 10px !important;
}

/* Tablet (3 items per row) */
@media (max-width: 1024px) {
    .small-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .small-news-item:nth-child(n+5) {
        grid-column: span 1; /* reset, so they don’t look broken */
        display: block;
    }
}

/* Mobile (2 items per row) */
@media (max-width: 768px) {
    .small-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .small-news-item:nth-child(n+5) {
        grid-column: span 1;
    }
    .small-news-grid{
        height: auto !important;
    }

}

/* Extra small (1 per row) */
@media (max-width: 480px) {
    .small-news-grid {
        grid-template-columns: 1fr;
    }
    .small-news-grid{
        height: auto !important;
    }
}
@media(max-width: 900px) {
    .htieg-10003 {
        grid-template-columns: 1fr;
    }
}
/* right sidebar css here */
.right-side-bar{
    width: 23.1%;
}
.right-side-bar-ad img{
    width: 100%;
    margin-bottom: 20px;
}

/* category (national) news css home page start here */
.htieg-394125{
    display: flex;
    gap: 15px;
}
.htieg-190234{
    background: #fff;
    width: 77.9%;
}
.htieg-082323df{
    width: 23.1%;
    margin-top: 63px;
}
.htieg-10003 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    padding-bottom: 15px;
}
.htieg-10003 > * {
    border-right: 1px solid #e0e0e0;
    padding: 0 15px;
}
.htieg-10003 > *:first-child {
    padding-left: 0px;
}
.htieg-10003 > *:nth-child(4n) { border-right: none;padding-right: 0px; }
.htieg-12564 {
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}
.htieg-10003 > *:not(.htieg-10004) > .htieg-10004:last-child .htieg-12564 {
    border-bottom: none;
}
.htieg-10003 > .htieg-10004 .htieg-12564 {
    border-bottom: none;
}
.htieg-10004 img.htieg-10005 {
    width: 100%;
    margin-bottom: 5px;
}
.htieg-10006 {
    font-size: 1rem;
    font-weight: normal;
    color: #000;
    margin: 6px 0px;
    display: flex;
    align-items: center;
}

.htieg-10006::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f017";
    display: inline-block;
    color: #1a73e8;
    font-size: 20px;
    margin-right: 6px;
}
/* category (national) news css home page end here */

/* category (politics) news css home page start here */
.xwrt-4282{
    display: flex;
    gap: 20px;
}
.xwrt-0654{
    width: 77.9%;
    background: #ffff;
}
.xwrt-3849{
    display: flex;
    gap: 15px;
    _padding: 0px 15px;
}
.xwrt-2457{
    width: 55%;
    height: 470px;
    position: relative;
    overflow: hidden;
}
.xwrt-4272{
    width: 45%;
}

.xwrt-6095{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.xwrt-2457::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, transparent 64.87%, 53.06%, #ffff); */
    z-index: 0;
    width: 90%;
    margin: 0 auto;
    pointer-events: none;
}
.position-style {
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    z-index: 2;
    padding: 16px 16px 0px 16px;
    background: #ffff;
    border-radius: 10px;
}
.xwrt-dw47{
    display: flex;
    gap: 10px;
}
.first-itme-pt:first-child{
    padding-top: 0px !important;
}
.coustom-summary-1{
    margin-bottom: 0px !important;
}
.fa-play{
    color: #1a73e8;
}
/* category (politics) news css home page end here */

/* category (country-news) news css home page start here */
.jzmv-gf347{
    background: #fff;
}
.jzmv-kle463{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    _gap: 20px;
    padding: 0px 0px 15px 0px;
}
.custom-padding-045:nth-child(4),
.custom-padding-045:nth-child(8)
{
  padding-left: 15px !important;
}
.custom-padding-045:first-child,
.custom-padding-045:nth-child(5) {
  padding-left: 0;
}
.jzmv-nrs36{
    width: 100%;
    height: auto;
    object-fit: cover;
}
/* category (country-news) news css home page end here */

/* category (world, sports, education, trade) news css home page start here */
.qwto-34634{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.qwto-0283{
    background: #ffff;
}
.qwto-9359{
    padding: 0px 0px;
}
.qwto-6095{
    width: 100%;
    object-fit: cover;
}
.qwto-9302{
    display: flex;
    align-items: center;
}
.qwto-60030{
    width: 30%;
    height: 70px;
    object-fit: cover;
    margin-right: 10px;
}
.qwto-9892{
    width: 70%;
}
/* category (world, sports, education, trade) news css home page end here */

/* category (world) news css home page start here */
.wzmv-jt0567{
    background: #ffff;
    padding-bottom: 20px;
}
.wzmv-u543 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0px 0px;

}
.wzmv-24yh56{
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}
.wzmv-df634{
    width: 100%;
    object-fit: cover;
}
.fswte-6764{
    border-right: 1px solid #ddd;
    padding: 0px 15px;
    margin: 20px 0px;
    height: 93%;
}
.wzmv-u543 .wzmv-24yh56:nth-child(-n+4) .fswte-6764 {
    margin-top: 0px !important;
}
/* Remove right border from 3rd & 6th item */
.wzmv-u543 .wzmv-24yh56:nth-child(4) .fswte-6764,
.wzmv-u543 .wzmv-24yh56:nth-child(8) .fswte-6764 {
    border-right: none;
    padding-right: 0px !important;
}
.wzmv-u543 .wzmv-24yh56:nth-child(1) .fswte-6764,
.wzmv-u543 .wzmv-24yh56:nth-child(5) .fswte-6764 {
    padding-left: 0px !important;
}

/* Remove bottom border from last 4 items */
.wzmv-u543 .wzmv-24yh56:nth-last-child(-n+4) {
    border-bottom: none;
}

/* category (world) news css home page end here */


/* category (sports) news css home page start here */
.xwrt-efq102{
    display: flex;
    gap: 10px;
}
.xwrt-lh346{
    width: 30%;
}
.xwrt-pqw45{
    width: 70%;
}
.xwrt-qr826{
    width: 100%;
}
/* category (sports) news css home page end here */



/* category (entertainment) news css home page start here */
.zgjh-eyg-3647{
    background: #ffff;
}
.zgjh-35cf{
    display: flex;
    padding: 0px 0px 15px 0px;
}
.zgjh-43sj{
    width: 25%;
}
.zgjh-34sh{
    width: 50%;
}
.gjh-95fd{
    width: 25%;
}

.zgjh-99bv{
    width: 100%;
    height: 416px;
    object-fit: cover;
}
.zgjh-66lk{
    height: 416px;
    position: relative;
    overflow: hidden;
}
.zgjh-90hd{
    width: 100%;
    height: 208px;
    object-fit: cover;
}
.zgjh-68sd{
    height: 208px;
    position: relative;
    overflow: hidden;
}
.zgjh-66lk::after,
.zgjh-68sd::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 12.87%, 75.06%, #000);
    z-index: 0;
    pointer-events: none;
}
.position-zgjh-54sk{
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
    color: #ffff;
}
.zgjh-66lk img,
.zgjh-68sd img {
    transition: transform 0.5s ease;
}
.zgjh-66lk:hover img,
.zgjh-68sd:hover img {
    transform: scale(1.1);
}
/* category (entertainment) news css home page end here */

/* all-photo-albums news css home page start here */
.hksg342ndo7-gallery-section{
    background: #ffff !important;
}
.hksg342ndo7-gallery-container {
    display: flex;
    margin: auto;
    padding: 0px 0px 15px 0px;
}

.hksg342ndo7-main-slider {
    flex: 1.5;
    position: relative;
    margin-right: 10px;
}

.hksg342ndo7-main-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: auto;
}

.hksg342ndo7-main-image img {
    width: 100%;
}

.hksg342ndo7-caption {
    bottom: 0;
    color: #000000;
    width: 100%;
    border-radius: 0 0 8px 8px;
}
.hksg342ndo7-caption p {
    position: absolute;
    bottom: 9%;
    background: #0000009e;
    width: 100%;
    color: #fff;
    padding: 6px;
    font-size: 18px;
}


.hksg342ndo7-controls {
    position: absolute;
    top: 3%;
    right: 20px;
    width: 20%;
    display: flex;
    justify-content: space-between;
}

.hksg342ndo7-thumbnail-container {
    flex: .9;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 10px;
}

.hksg342ndo7-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hksg342ndo7-thumbnail-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    margin-bottom: 5px;
}

.hksg342ndo7-thumbnail-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hksg342ndo7-thumbnail-image:hover img {
    transform: scale(1.1);
}

.hksg342ndo7-camera-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgb(255 0 0 / 60%);
    padding: 4px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hksg342ndo7-thumbnail a {
    font-family: var(--website-font-family);
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: rgb(20, 20, 20);
    cursor: pointer;
    margin-top: 5px;
}

.hksg342ndo7-thumbnail span {
    font-family: var(--website-font-family);
    font-size: 14px;
    color: #333;
}

.hksg342ndo7-controls button {
    background: rgb(255 0 0 / 60%);
    color: #fff;
    border: none;
    padding: 7px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    line-height: 0px;
}

.hksg342ndo7-controls button:hover {
    background: rgb(255 0 0 / 80%);
}

@media (max-width: 37.4375rem) {
    .hksg342ndo7-controls {
        right: 35px !important;
    }

    .hksg342ndo7-controls button {
        margin-right: 5px !important;
    }

    .hksg342ndo7-thumbnail-image {
        height: auto !important;
    }
    .hksg342ndo7-caption p {
    bottom: 15% !important;
    background: rgb(0 0 0 / 70%) !important;
    }

}
/* all-photo-albums news css home page end here */


/********************** news-single-v1 page more news section css start here ***********************/
.main-wrapper-content {
    display: flex;
    gap: 25px;
}
.left-side-0745f{
    width: 20%;
}
.news-main {
    width: 58%;
    overflow: hidden;

}
.news-image img {
    width: 100%;
    object-fit: cover;
    height: auto;
}
.image-credit-border {
    border-bottom: 1px solid var(--web-all-border-color);
    padding-bottom: 10px;
}
.ndsc-1vjaf6b {
    padding-inline-start: 0px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #ddd;
}
.nul-1rvtlej{
    display: flex;
    align-items: end;
}
.s45d44dd{
    width: 100%;
    border-left: 3px solid var(--web-all-border-color);
    padding-left: 10px !important;
}
.sdfsd453r{
    width: 100%;
    text-align: right;
}
.nsd-m04vo2 {
    clip-path: inset(100%);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    margin: 0px;
}

.nul-1rvtlej {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.nah-kr9jm9 {
    font-size: var(--news-details-summary-font-size);
    line-height: var(--news-details-summary-line-height);
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: 700;
    color: rgb(20, 20, 20);
    display: inline-block;
    vertical-align: middle;
    padding-top: 0px;
    padding-bottom: 0.25rem;
    padding-inline-end: 2.75rem;
}
.nth-1qsxwj2 {
    font-size: 1rem;
    line-height: 1.375rem;
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: 700;
    color: rgb(84, 86, 88);
}

.ndsc-1vjaf6b div {
    padding: 0px;
}

.nddp-19j92fr {
    display: block;
    width: initial;
    margin: 0px;
}

.nddcp-12k5sdr p {
    font-size: var(--news-details-summary-font-size);
    line-height: var(--news-details-summary-line-height);
    font-family: var(--website-font-family);
    font-weight: var(--news-details-summary-font-weight);
    font-style: normal;
    color: var(--news-details-summary-font-color);
    padding-bottom: .7rem;
    margin: 0px;
}

.additional-news-top {
    justify-content: space-between;
    max-width: var(--full-website-content-max-width);
    margin: 0 auto;
    padding-top: 15px;
    display: grid;
    overflow: hidden;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    position: relative;
    background: #fffdf6;
}
.extra-news-item-top {
    flex: 1;
    _padding: 0px 10px;
    position: relative;
}

/* .extra-news-item-top:not(:nth-child(5n)):before {
    content: "";
    position: absolute;
    top: 10px;
    right: 0;
    bottom: 10px;
    border-right: 1px solid var(--web-all-border-color);
} */
.extra-news-item-top:not(:nth-last-child(-n+5)) {
    border-bottom: 1px solid var(--web-all-border-color);
}

.news-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border: 1px dashed #9b1717;
    padding: 15px 10px;
    background-color: #fffdf9;
    position: relative;
    border-radius: 5px;
    margin: 15px 0px;

}
.news-card .thumbnail {
    flex-shrink: 0;
    border-radius: 5px;
    max-width: 120px !important;
    height: 70px;
    box-shadow: 0px 1px 8px #70707096;
    margin-right: 10px;
    overflow: hidden;
    z-index: 1;
}
.news-card .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;

}
.news-card .content-c {
    flex: 1;
}
.heading-container {
    position: absolute;
    top: -17px;
    left: 12px;
    background: #fffdf9;
}
.heading {
    color: #870103;
    font-size: var(--news-details-summary-font-size);
    line-height: var(--news-details-summary-line-height);
    font-family: var(--website-font-family);
    font-weight: bold;
    margin: 0;
    padding: 0px 3px;
}
.news-card .content-c .description {
    margin-top: 5px;
    font-size: var(--news-details-summary-font-size);
    line-height: 1.8rem;
    font-family: var(--website-font-family);
    font-weight: 500;
    color: var(--news-details-summary-font-color);
}
.news-uk8dsi {
    color: var(--news-details-summary-font-color);
    text-decoration: none;
}
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin: 15px 0 15px 0;
}
.tag {
    display: inline-block;
    background-color: #f2f2f2;
    color: #000;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Noto Serif Bengali !important;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.tag:hover {
    background-color: #e0e0e0;
}

.comment-section {
    margin: auto;
}
.comment-border{
    border: 1px solid #ccc;
    margin: auto;
}
.comment-section h3 {
    font-size: 1.125rem;
    color: #870103;
    margin-bottom: 10px;
    font-family: Noto Serif Bengali !important;
    border-left: 2px solid #870103;
    background-color: #f2f2f2;
}
.comment-section span {
    padding-left: 8px;
}

.pagination {

    display: none;

}
.image {
    margin-bottom: 10px !important;
}
.image img {
    width: 100% !important;
}
.image figcaption {
    border-bottom: 1px solid var(--web-all-border-color) !important;
    padding-bottom: 5px !important;
}
.media .st-video-share-buttons {
    display: none !important;
}

.more-news{
    margin-top: 13px;
}
.more-news h3 {
    font-size: 21px;
    color: #870103;
    font-family: Noto Serif Bengali !important;
    border-left: 2px solid #870103;
    background-color: #f2f2f2;
    padding: 5px;
}
.hero-4953df{
    max-width: 622px;
    margin: 1.333rem auto 0.8889rem;
}
.ti-h4543{
    border-bottom: 1px solid #ddd;
}
.nah-s566326{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 7px;
}
.nah-kr9jm969 {
    font-size: var(--news-details-summary-font-size);
    line-height: var(--news-details-summary-line-height);
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: 700;
    color: rgb(20, 20, 20);
}
.img-563257{
    width: 50px;
    border-radius: 50%;
    border: 2px solid #ED1C24;
}
.nah-a3534324{
    text-decoration: none;
}
.archive-navigation {
    border-bottom: none !important;
}
/* .custom-sty-02674{
    height: 140px;
    object-fit: cover;
} */
/********************** news details page side bar section css start here ***********************/
.sidebar {
    width: 22%;
    padding: 1rem 0px;
}

.ltn-g47oqm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0px;
    position: relative;
    z-index: 0;
    color: rgb(20, 20, 20);
}
.e1m6nvxw0 {
    font-size: 1.2rem !important;
    line-height: 2.5rem !important;
    cursor: pointer;
}
.active-tab {
    color: #ffffff !important;
    _border-bottom: 4px solid #000000 !important;
    background: #870103 !important;
}

.e1m6nvxw0 {
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
}
/* .e1m6nvxw0.active-tab {
    color: #1C90FC;
    border-bottom-color: #1C90FC;
} */

.trending-articles__list{
    border: 1px solid var(--web-all-border-color);
    margin-bottom: 20px;
}
.trending-articles__list li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--web-all-border-color);
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

.trending-articles__list :last-child {
    border-bottom: none;
}
.theme-aje .article-trending {
    display: flex;
    flex-wrap: wrap;
}
.trending-articles__list :last-child {
    border-bottom: none;
}
.article-trending__content {
    flex-basis: 40%;
    flex-grow: 1;
}
.trending-articles__list :last-child {
    border-bottom: none;
}
.article-trending h3 {
    margin-bottom: 0;
}

.trending-articles__list :last-child {
    border-bottom: none;
}

.article-trending a {
    text-decoration: none;
}
.ltn-g47oqm {
    margin-top: 0px;
    position: relative;
    z-index: 0;
    color: rgb(20, 20, 20);
    text-align: center;
    /* background: #ddd; */
    margin-bottom: 0px;
    border-bottom: 1px solid #ddd;
}
.e1m6nvxw0{
    font-size: 1.4375rem;
    line-height: 2.5rem;
}
.tab-content{
    background: rgb(255, 253, 246);
}
.news-hover-card {
    position: relative;
    display: inline-block;
    width: 100%;
    _overflow: hidden;
}

.news-hover-card .news-image {
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.news-hover-card .headTitle {
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
}

.news-hover-card:hover .headTitle {
    opacity: 0;
    _height: 120px;

}

.news-hover-card:hover .news-image {
    opacity: 1;
}



.fa-bullhorn:before {
    content: "\f0a1";

}
.st-btn-print:hover {
    opacity: .8;
    top: -4px;
}
.st-btn-print {
    transition: opacity 0.2s ease-in, top 0.2s ease-in;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: inline-block;
    height: 40px;
    margin-right: 8px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    top: 0;
    vertical-align: top;
    white-space: nowrap;
    margin-left: 8px;
}
i.fa-print{
    font-size: 18px;
}
.print-logo{
    display: none;
    text-align: center;
}

.print-footer{
    display: none;
    text-align: center;
}

@media print {
    @page {
        size: A4;
    }

    body * {
        visibility: hidden;
    }

    #printSection, #printSection * {
        visibility: visible;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .print-logo {
        display: block !important;
        border-bottom: 2px solid #ddd;
        margin-bottom: 5px;
    }

    .print-footer {
        display: block !important;
        padding: 10px 0;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        margin-bottom: 5px;
    }

    .no-print {
        display: none !important;
    }

    #printSection {
        page-break-before: always;
        page-break-after: always;
    }

    table {
        page-break-inside: auto;
    }

    tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }

}

/********************** news-single-v1 page more news section css end here ***********************/


/********************** home page another feature news section css start here ***********************/
 .another-feature-news {
    flex: 2;
    overflow: hidden;
    position: relative;
}
.another-small-news-grid {
    flex: 1;
    height: fit-content;
    overflow: hidden;
}
.another-small-news-grid-side {
    flex: 1;
    height: fit-content;
    overflow: hidden;
}
.another-small-news-item{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.another-small-news-item-side{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.another-feature-news img {
    width: 100%;
    height: 430px;
    border-radius: var(--news-image-border-radius);
}
.another-small-news-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: var(--news-image-border-radius);
}
.another-small-news-item-side img{
    width: 100%;
    height: 428px;
    object-fit: cover;
    border-radius: var(--news-image-border-radius);
}
/********************** home page another feature news section css end here ***********************/


/********************** home page video news section css start here ***********************/
.video-section{
    margin-top: 5px;
    margin-bottom: 50px;
}
.video-iframe{
    width: 100%;
    height: 450px;
}
.video-gallery {
    display: flex;
    gap: 10px;
}

.video-container {
    width: 60%;
    overflow: hidden;

}
.thumbnails {
    width: 40%;
    position: relative;
    background: var(--video-section-thumbnails-bg-color);
}

.thumbnail-container {
    position: relative;
    display: flex;
    padding: 10px;
}
.thumbnail-container:hover {
    border-left: 2px solid #870103;
    background: var(--video-thumbnails-section-hover-and-active-bg-color);
    padding-left: 8px;
    overflow: hidden;
}

.thumbnail-container.active {
    border-left: 2px solid #870103;
    background-color: var(--video-thumbnails-section-hover-and-active-bg-color);
    padding-left: 8px;
}

.thumbnail {
    width: 30%;
    height: auto;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    top: 47%;
    left: 17%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-color: rgba(184, 0, 0, 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    opacity: 1;
}

.play-icon::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 13px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.thumbnail-title {
    margin-top: 0px;
    color: #fff;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.6rem;
    font-style: normal;
    font-weight: 500;
    font-family: var(--website-font-family);
    width: 70%;
    margin-left: 7px;
    cursor: pointer;
}
.video-gallery #st-el-1 .st-btn {
    height: 35px !important;
    margin-right: 8px !important;
    padding: 0 7px !important;
}

.video-gallery #st-el-1 .st-btn > img {
    display: inline-block;
    height: 20px;
    width: 20px;
    position: relative;
    top: 8px !important;
    vertical-align: top;
}

.more-video {
    padding: 7px 457px;
    font-size: 21px;
    cursor: pointer;
    border: none;
    background-color: #870103;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}
.more-video:hover {
    background-color: #8a0202;
}

/********************** home page video news section css end here ***********************/



/********************** Our social media section css start here ***********************/
.zctm2-social {
    display: grid;
    column-gap: 1rem;
    grid-template-rows: repeat(3, auto);
    grid-template-columns: repeat(5, 1fr);
    column-count: 6;
    margin: 0px;
    list-style-type: none;
    padding: 0px 0px 15.3rem;
}
.zctm2-social > li:first-of-type {
    border-bottom: 0.0625rem solid var(--web-all-border-color);
    padding: 0.5rem 0px;
    margin-bottom: 1.5rem;
    grid-column: 1 / -1;
    width: 100%;
    column-span: all;
}

.a32bmp-social{
    min-width: 50%;
    column-gap: 1rem;
    break-inside: avoid-column;
    color: rgb(0 0 0);
    font-size: var(--news-headline-font-size-2);
    line-height: var(--news-headline-line-height-2);
}
.s14imjm8-socia{
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: 500;
    color: rgb(0, 0, 0);
    padding: 0.75rem 0px;
    text-decoration: none;
    display: block;

}
.li-border-style{
    margin-bottom: 3rem;
}
i.fa-square-facebook {
    color: #3b5998;
    font-size: 20px !important;
}
i.fa-youtube {
    color: #FF0000;
    font-size: 20px !important;
}
i.fa-tiktok {
    color: #000;
    font-size: 20px !important;
}
i.fa-linkedin {
    color: #0072b1;
    font-size: 20px !important;
}
i.fa-square-whatsapp {
    color: #19bd03;
    font-size: 20px !important;
}
i.fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px !important;
}
i.fa-twitter {
    color: #00acee;
    font-size: 20px !important;
}
/********************** Our social media section css end here ***********************/

/********************** archive section css start here ***********************/
.archive-navigation {
    display: flex;
    align-items: center;
    padding: 10px 0px 20px 0px;
    border-bottom: 1px solid var(--web-all-border-color);
    font-family: Arial, sans-serif;
    justify-content: space-between;
    font-family: var(--website-font-family);
}
.fa-house:before {
    content: "\f015";
    font-family: "Font Awesome 6 Free";
    color: #1c90fc;
    font-size: 1rem;
}
.nav-links .fa-house:before{
    color: #000 !important;
}
.location-viwe::before{
    content: "\261E";
    font-size: 2rem;
    line-height: 2rem;
    color: #1c90fc;
}

.breadcrumb {
    font-size: 1.125rem;
    color: #1c90fc;
    margin-right: 20px;
    font-weight: 700;
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-controls select {
    padding: .1rem 2.25rem .1rem .30rem;
    font-family: var(--website-font-family);
    font-size: 1.125rem;
    /* line-height: 2.125rem; */
    border: 1px solid var(--web-all-border-color);
    border-radius: 5px;
    cursor: pointer;
    background-color: #ffffff;
    color: #333;
    margin-right: 20px;
}

.filter-controls select:focus {
    outline: none;
    border-color: #870103;
}
.submit-button {
    font-family: var(--website-font-family);
    padding: 0.2rem 2.25rem .2rem 2.25rem;
    font-size: 1.125rem;
    background-color: #870103;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-button:hover {
    background-color: #8f0202;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px 0px;
    font-family: Arial, sans-serif;
}

.news-box {
    border: 1px solid var(--web-all-border-color);
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.news-box h3 {
    font-size: var(--news-category-headline-font-size);
    line-height: 2rem;
    background-color: var(--web-all-border-color);
    color: var(--news-category-headline-text-color);
    padding: 8px;
    margin: -10px -10px 10px -10px;
    font-family: var(--website-font-family);
    font-style: normal;
    font-weight: var(--news-category-headline-font-weight);
}

.news-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.news-box ul li {
    font-family: var(--website-font-family);
    line-height: 2.125rem;
    color: rgb(84, 86, 88);
    padding: 5px 0;
    border-bottom: 1px solid var(--web-all-border-color);
}
.news-box ul li a {
    text-decoration: none;
    color: rgb(84, 86, 88);
    font-size: var(--news-summary-font-size);
}

.news-box ul li:last-child {
    border-bottom: none;
}

.news-box ul li::before {
    content: "\261E";
    padding-right: 10px;
    font-size: 1.5rem;
}
.no-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
}

.no-news i {
    font-size: 50px;
    color: #dc3545;
    margin-bottom: 10px;
}

.no-news p {
    font-size: 18px;
    color: #555;
    font-family: Noto Serif Bengali !important;
}
.no-news-icon {
    font-size: 23px;
    color: #ff6b6b;
    animation: blink 1.5s infinite alternate;
}

.custom-design-0035{
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    background: #ffff;
}
.news-separator-horizontal-border-for-mobile {
   display: none;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
/********************** archive section css end here ***********************/

/********************* scroll-to-top window icon css start ***********************/
.scroll-to-top {
    position: fixed;
    bottom: var(--web-content-scroll-to-top-bottom);
    right: var(--web-content-scroll-to-top-right);
    display: none;
    background-color: var(--web-content-scroll-to-top-background-color);
    color: var(--web-content-scroll-to-top-color);
    border: none;
    padding: var(--web-content-scroll-to-top-padding);
    border-radius: var(--web-content-scroll-to-top-border-radius);
    cursor: pointer;
    font-size: var(--web-content-scroll-to-top-font-size);
    z-index: 1000;
    opacity: var(--web-content-scroll-to-top-opacity);
    transition: var(--web-content-scroll-to-top-transition);
    line-height: 0px;
}
.scroll-to-top:hover {
    opacity: 1;
}
/********************* scroll-to-top window icon css end***********************/

/********************* web virsion display none css start***********************/
.mobile-version-show-news{
    display: none;
}
.mobile-version-8911{
    display: none;
}

.web-view-class{
    display: block !important;
}
.phone-view-class{
    display: none !important;
}

/********************* web virsion display none css end***********************/

/* Tablet (3 items per row) */
@media (max-width: 1024px) {
    .small-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .small-news-item:nth-child(n+5) {
        grid-column: span 1;
        display: block;
    }
}

/* Mobile (2 items per row) */
@media (max-width: 768px) {
    .custom-sty-pt-120{
        padding-top: 125px;
    }
    .custom-sty-had-0970{
        margin: 0px 0px 8px 0px;
        text-align: start;
        line-height: 24px;
        padding-bottom: 5px;
    }
    .space-for-web{
        display: none;
    }
    .main-wrapper-news-home{
        background-color: #ffff !important;
        padding-top: 125px;
    }
    .news-separator-horizontal-border-for-mobile {
        border-top: 1px solid #ddd;
        margin: 15px 0px;
        display:block;
    }
    .news-title-2{
        padding-left: 5px;
    }

    .logo {
        align-items: center !important;
    }
    .search-icon {
        margin-right: 10px !important;
    }
    .ads img{
        width: 100%;
        padding: 0px 10px;
    }
    .news-top-section {
        display: block !important;
        padding: 0px 0px;
    }
    .nh-1tj0lg4qr63 {
        padding-left: 5px !important;
    }
    .web-version-show-news{
        display: none;
    }
    .mobile-version-show-news{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .mobile-ads{
        display: none;
    }
    .htieg-394125{
        padding: 0px;
    }
    .htieg-10003 > * {
        border-right: none;
        padding: 0px;
    }
    .htieg-005621{
        padding-left: 5px;
    }
    .htieg-10006{
        padding-left: 5px;
    }
    .news-summary{
        padding-left: 5px;
    }
    .htieg-10004{
        border-bottom: none;
    }
    .htieg-1000m{
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
    }
    .htieg-1000-b-none-m{
        border-bottom: none;
    }
    .htieg-10004-mobile{
        margin-top: 15px;
    }
    .htieg-97651{
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 15px;
    }

    .htieg-12564 {
        border-bottom: none;
        padding: 0px 0;
    }
    .category-hadline-span-style{
        margin: 0px 5px 0px 5px;
    }
    .category-hadline-style {
        margin: 0px 0px 10px 0px;
    }
    .fa-chevron-right{
        margin-right: 5px;
    }
    .left-side-bar {
        border: none;
        padding: 0px;
        width: 100% !important;
        background: #ffff;
    }
    .item-1-tlsb-img{
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    .main-section {
        border: none;
        padding: 0px;
        width: 100% !important;
        background: #ffff;
    }
    .feature-news-141frgd {
        display: block !important;
        align-items: center;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }
    .small-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .custom-sty-36803{
        height: auto !important;
        padding-left: 5px;
    }
    .small-news-item:nth-child(n+5) {
        grid-column: span 1;
    }
    .small-news-item img {
        width: 100%;
        height: auto !important;
        object-fit: cover;
    }
    .small-news-item::before {
        content: "";
        position: absolute;
        background-color: var(--web-all-border-color) !important;
        height: 100%;
        display: block;
        width: 0px;
        top: 0px;
        left: -11px;
        right: 0px !important;
    }
    .small-news-grid::before {
        content: "";
        position: absolute;
        background-color: var(--web-all-border-color);
        height: 0px;
        display: block !important;
        width: 100%;
        top: 34%;
    }
    .small-news-grid::after {
        content: "";
        position: absolute;
        background-color: var(--web-all-border-color);
        height: 0px;
        display: block;
        width: 100%;
        top: 67.8%;
    }

    .item-2-tlsb{
        padding-left: 5px;
        padding-right: 5px;
    }

    .right-side-bar {
        width: 100% !important;
        margin-top: 10px;
        padding: 0px 5px;
    }

    .custom-design-0035 {
        border: none;
        padding: 0px;
        width: 100%;
        background: #ffff;
    }


    .xwrt-4282 {
        display: block;
        padding: 0px;
    }
    .xwrt-0654 {
        width: 100%;
        background: #ffff;
    }
    .xwrt-3849 {
        display: block;
        padding: 0px;
    }
    .xwrt-2457 {
        width: 100%;
        height: 340px;
    }
    .xwrt-6095 {
        width: 100%;
        height: auto;
    }
    .position-style {
        left: 12px;
        right: 12px;
        padding: 12px 12px 0px 12px;

    }
    .xwrt-4272 {
        width: 100%;
        padding: 5px;
    }
    .jzmv-256-gds{
        padding: 0px;
    }
    .jzmv-gf347 {

    }
    .jzmv-kle463 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        _gap: 15px;
        padding: 0px 5px 0px 5px;
    }
    .jzmv-kle463 .news-title-3{
        padding-left: 5px;
    }
    .qwto-34634 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
        padding: 0px;
    }
    .qwto-9359{
        padding: 0px;
    }
    .qwto-90175{
        padding: 5px;
    }
    .wzmv-02417-dsg{
        padding: 0px;
    }
    .wzmv-u543 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 0px;
        gap: 15px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .wzmv-u543 .news-title-3{
        padding-left: 5px;
    }
    .fswte-6764 {
        border-right: none;
        padding: 0px;
        margin: 0px;
        height: auto;
    }
    .wzmv-24yh56 {
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
        overflow: hidden;
    }
    .wzmv-u543 .wzmv-24yh56:nth-last-child(-n+4) {
        border-bottom: 1px solid #ddd !important;
    }
    .wzmv-u543 .wzmv-24yh56:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .mobile-version-8911{
        display: block;
    }
    .web-version-3253{
        display: none;
    }
    .zgjh-eyg-971-z{
        padding: 0px;
    }
    .zgjh-35cf {
        display: block;
        padding: 0px 0px 10px 0px;
    }
    .zgjh-34sh {
        width: 100%;
        margin-bottom: 15px;
    }
    .zgjh-43sj {
        display: flex;
        gap: 15px;
        width: 100%;
        margin-bottom: 15px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .gjh-95fd {
        display: flex;
        gap: 15px;
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    .zgjh-66lk {
        height: 300px;
    }
    .zgjh-68sd {
        height: 150px;
    }
    .position-zgjh-54sk {
        left: 5px;
        right: 5px;
    }
    .hksg342ndo7-gallery-section-0726{
        padding: 0px;
    }
    .hksg342ndo7-gallery-container {
        padding: 0px 0px 0px 0px;
    }
    .hksg342ndo7-gallery-container {
        margin: 0px !important;
    }
    .hksg342ndo7-thumbnail-image img {
        height: 120px;
    }
    .hksg342ndo7-thumbnail .news-title-3{
        padding-left: 5px;
    }


    .topSocialIcon{
        display:block;
    }
    .topSocialIcon .fa-brands {
        padding: 5px 2px 2px 2px;
        font-size: 16px;
        width: 28px;
        height: 28px;
        text-align: center;
        text-decoration: none;
        /* margin: 5px 1px; */
        /* top: 0; */
    }
    .top-bar-right-o234 {
        display: none;
        /* display: flex;
        gap: 5px;
        width: 55.33% !important;
        text-align: right;
        align-items: center;
        justify-content: end; */
    }
    .logo .custom-m-364  {
        height: 100px !important;
    }
    .nav-links li:last-child {
        -webkit-margin-end: inherit !important;
    }
    .web-view-class{
        display: none !important;
    }
    .phone-view-class{
        display: block !important;
    }
    .left-side-0745f{
        width: 100%;
    }
    .iakdI-92S {
        display: block !important;
        align-items: start;
    }
    .custom-sty-02674 {
        width: 100% !important;
        height: auto;
        margin-right: 5px;
    }

    .left-side-0745f .news-separator-horizontal-border{
        display: none !important;
    }

    .news-main{
        width: 100% !important;
    }
    
    .hero-4953df {
        margin: .6rem auto 0.8889rem;
    }
    .image-credit-border{
        padding-bottom: 10px;
        text-align: center;
        font-size:18px;
    }
    
    .custom-sty-98734gf {
        width: 100% !important;
        font-size: 1.125rem !important;
        line-height: 1.625rem !important;
    }


}

/* Extra small (1 per row) */
@media (max-width: 480px) {
    .logo {
        align-items: center !important;
    }
    .search-icon {
        margin-right: 10px !important;
    }
    /* .small-news-grid {
        grid-template-columns: 1fr;
    } */
}
@media(max-width: 900px) {
    .logo {
        align-items: center !important;
    }
    .search-icon {
        margin-right: 10px !important;
    }
    .htieg-10003 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .main-wrapper-header { display: none; }
    .mobile-header {
        display: block;
        background: #fff;
        position: relative;
        z-index: 1200;
        _font-family: "Noto Sans Bengali", sans-serif;
    }

    .mobile-top-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        _padding: 0px 5px;
        padding-right: 5px;
        _box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-bottom: 1px solid #e0e0e0;
        line-height: 0px;
    }

    .mobile-logo img { height: 65px; }

    .mobile-icons {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .mobile-menu-toggle {
        _z-index: 111111111;
    }

    /* Search Box */
    .mobile-search-box {
        position: fixed;
        top: -80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: top 0.35s ease;
        z-index: 1500;
        padding: 12px 15px;
    }
    .mobile-search-box.active { top: 0; }

    .search-form {
        display: flex;
        align-items: center;
        background: #f5f5f5;
        border-radius: 8px;
        overflow: hidden;
        padding: 4px 10px;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        font-size: 15px;
        padding: 8px 6px;
        outline: none;
    }

    .search-btn {
        background: #8C0202;
        color: #fff;
        border: none;
        border-radius: 6px;
        padding: 6px 10px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    .search-btn:hover { background: #8C0202; }

    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100dvh;
        background: #fff;
        box-shadow: -4px 0 12px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        z-index: 1600;
        overflow-y: auto;
        padding: 18px;
    }
    .mobile-menu.open { right: 0; }

    .mobile-menu-header {
        border-bottom: 3px solid #e9e9e9;
        padding-bottom: 15px;
        margin-bottom: 5px;
        color: #870103;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-close {
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .mobile-menu-close:hover {
        transform: rotate(90deg);
    }
    .mobile-date span{
        font-size: 18px;
        font-weight: 600;
    }

    .mobile-menu-links {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu-links li { margin-bottom: 0px; }

    .mobile-menu-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        font-weight: 600;
        padding: 8px 10px;
        border-radius: 8px;
        transition: background 0.3s ease, color 0.3s ease;
    }
    .mobile-menu-links a:hover {
        background: #8C0202;
        color: #fff;
    }

    .mobile-menu-footer {
        border-top: 3px solid #eee;
        margin-top: 10px;
        padding-top: 20px;
        padding-bottom: 20px;
        /*display: flex;*/
        /*flex-direction: column;*/
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .mobile-menu-footer a {
        color: #444;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s;
    }
    .mobile-menu-footer a:hover { color: #8C0202; }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1400;
    }
    .overlay.active { opacity: 1; visibility: visible; }

    .hidden { display: none; }

    .mobile-category-scroll {
        overflow-x: auto;
        white-space: nowrap;
        background-color: #fff;
        border-bottom: 1px solid #e0e0e0;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    
    .mobile-category-scroll::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .category-scroll-wrapper {
        display: inline-flex;
        padding: 5px 10px;
    }

    .category-item {
        display: inline-block;
        margin-right: 8px;
        padding: 5px 8px;
        background: #f5f5f5;
        font-size: 18px;
        font-weight: 600;
        color: #222;
        text-decoration: none;
        flex-shrink: 0;
        transition: background 0.3s, color 0.3s;
    }

    .category-item:hover {
        background: #870103;
        color: #fff;
    }

    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        transition: opacity 0.8s ease, transform 0.8s ease;
        transform: translateY(0);
        z-index: 1212121;

    }
    .mobile-header.hidden {
        transform: translateY(-100%);
    }


}
