<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: SolaimanLipi;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/solaimanlipi_20-04-07.eot) format("embedded-opentype"), url(../fonts/solaimanlipi_20-04-07.woff) format("woff"), url(../fonts/solaimanlipi_20-04-07.ttf) format("truetype"), url(../fonts/solaimanlipi_20-04-07.svg) format("svg");
    font-display: swap
}


:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #E03C31;
    --red-dark: #b30f0f;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #28daf6;
    --white: #fff;
    --black: #000;
    --black2: #222222;
    --black3: #333333;
    --black4: #454545;
    --shadeofgray: #ddd;
    --gray: #6c757d;
    --gray-2: #f5f5f5;
    --gray74: #bdbdbd;
    --gray-light: #E2E1E1;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    --white-black-gradient: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 46%, rgba(0, 0, 0, 1) 100%);
}


* {
    font-family: SolaimanLipi, Arial, Helvetica, sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

::selection {
    background-color: var(--black);
    color: var(--white);
}

p {
    margin: 0;
}

li {

    list-style-type: none;
}

li a {
    text-decoration: none;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: var(--dark);
}

hr {
    margin: .5rem 0;
}



/* === End Common Style === */

/* === Start Header Style === */

/* #header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
} */

/* === Start Top Header Style === */

.top-header {
    padding: 5px 0;
}

.date p {
    color: var(--dark4);
    font-weight: 500;
    margin-right: 10px;
}

.social-icon {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.e-paper {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark4);
}

.e-paper:hover {
    color: var(--red);
}

/* === End Top Header Style === */

/* === Start Header Style === */

.header {
    background-color: var(--black2);
    box-shadow: var(--box-shadow);
    position: sticky;
}

.header .navbar {
    padding: 0;
}


.navbar-toggler:focus {
    box-shadow: none;
}


.header .nav-link {
    color: var(--white);
    font-size: 20px;
    padding: 5px 15px;
    padding-top: 3px;

}

.header .nav-link:hover,
.dropdown-item:hover {
    color: var(--red);
}

.home-icon {
    fill: var(--white);
    font-size: 20px;
}

.home-icon:hover {
    fill: #e03c31;
}



.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--red);
}

.homeIcon {
    color: var(--white);
    font-size: 30px;
    margin-right: 10px;
}

/* === Mega Menu === */

.drop-area {
    position: static;

}

.mega-area {
    position: absolute;
    width: 100%;
    top: 35px;
    left: 0;
    box-shadow: var(--box-shadow);
}

.dropdown-item:hover {
    background-color: var(--black2);
    color: var(--white);
}

.dropdown-item:focus {
    background-color: var(--black2);
    color: var(--white);
}

/* === Dropdown on Hover === */

.dropdown:hover&gt;.dropdown-menu {
    display: block;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all;
    -moz-transition: all;
    -ms-transition: all;
    -o-transition: all;
}

/* === Search Box === */

.search-box {
    position: absolute;
    right: -20px;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.search-box:hover {
    width: 100%;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.search-box:hover input {
    display: block;
}

.search-box:hover .search-icon {
    fill: var(--gray);
}

.search-box input {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid var(--black);
    font-size: 18px;
    color: var(--gray);
    padding: 0 10px;
    display: none;
}

.search-icon {
    position: absolute;
    right: 10px;
    fill: var(--white);
    background-color: transparent;
}

/* === End Header Style === */

.min-height {
    min-height: calc(100vh - 283px);
}

/* === Start Main Style === */


/* === Common Style === */


.form-control:focus {
    box-shadow: none;
    border-color: var(--red);
}

.form-select:focus {
    box-shadow: none;
    border-color: var(--red);
}

.btn-red {
    background-color: var(--red);
    color: var(--white);
    border: 1px solid transparent;
}

.btn-red:hover {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--red);
}


.card {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.category-title {
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.category-title h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

.category-title .see-all a {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.category-title .see-all:hover * {
    color: var(--red);
    fill: var(--red);
}

.news-img {
    border: 1px solid var(--black3);
}

.news-title {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.news:hover .news-title {
    color: var(--red) !important;
}

.cat-lead-title {
    font-size: 25px !important;
}

.news-img {
    overflow: hidden;
}

.news-img img {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.news:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.news-border {
    border: 0.5px solid var(--black4);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.news-border-right {
    border-right: 0.5px solid var(--black4);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.news-top-body {
    padding: 10px 0 0;
}

.news-top-body h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}


.horizontal-news .news-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    padding: 0 5px;
    margin-bottom: 0;
}

/* === Start Breadcrumb Style === */

.breadcrumb-section {
    background-color: var(--gray-2);
}

.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-section .breadcrumb-home-icon {
    fill: var(--red);
    font-size: 18px;
    margin-right: 5px;
}

.breadcrumb-section .breadcrumb-item {
    margin-top: 3px;
    font-size: 18px;
    color: var(--red)
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--red)
}

.breadcrumb-section .breadcrumb-item.active:hover {
    color: var(--red)
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    color: var(--red);
}

.breadcrumb-section .breadcrumb-item:hover {
    color: var(--red);

}

.breadcrumb-section .breadcrumb-item:first-child {
    margin-top: 0;
}

.breadcrumb-section .breadcrumb-item:first-child .breadcrumb-home-icon:hover {
    fill: var(--red);
}


/* === End Breadcrumb Style === */

/* === Start Pagination Style === */

.pagination {
    background-color: var(--gray-light);
}

.pagination .page-link {
    background-color: transparent;
}

.pagination-section .page-item.active .page-link {
    background-color: var(--black2);
    color: var(--white);
    border: 0;

}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.pagination-section .page-link {
    color: var(--black2);
    border: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}


.pagination-section .page-link:hover {
    color: var(--white);
    background-color: var(--black2);
}

.pagination-section .page-link:focus {
    box-shadow: none;
    background-color: none;
    color: none;
}


/* === End Pagination Style === */

/* === End Common Style === */


/* === Ad Style === */
.long-ad {
    margin: 10px 0;
}

.long-ad img {
    width: 100%;
    border: 1px solid var(--red);
}

.squire-ad {
    margin-top: 10px;
}

.squire-ad img {
    width: 100%;
    border: 1px solid var(--red);
}

/* === End Ad Style === */

/* === Start Featured Style === */

.featured-news {
    padding: 20px 0;

}

.top-featured .card {
    border: 1px solid var(--black);
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.top-featured .news-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0;
}

.top-featured .news-body {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

.youtube {
    background: var(--white-black-gradient);
    padding: 10px;
}

/* === End Featured Style === */

/* === Start National Style === */
.latestNews-maxView .nav-link {
    background-color: var(--black2);
    color: var(--white);
}

.latestNews-maxView .nav-link.active {
    background-color: var(--red);
    color: var(--white);
}

.latestNews-maxView .tab-content {
    height: 490px;
}

/* === End National Style === */

/* === Start Bangladesh Style === */

.map {
    padding: 0 60px;
}

.st0 {
    opacity: 0.7;
}

.st1 {
    fill: #80c2eb;
}

.st2 {
    fill: none;
}

.st3 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st4 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st5 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st6 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st7 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st8 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st9 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st10 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st11 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st13 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.25;
    stroke-miterlimit: 10;
}

.st14 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.75;
    stroke-miterlimit: 10;
}

.st15 {
    fill: #be241e;
    stroke: #ffffff;
    stroke-width: 0.25;
    stroke-miterlimit: 10;
}

.st16 {
    enable-background: new;
}

.st17 {
    fill: #ffffff;
}

.st18 {
    opacity: 0.34;
}

.st19 {
    fill: #d5d5d5;
}

#rangpur:hover path {
    fill: #9a1515;
}

#rangpur:hover path.st17 {
    fill: #fff;
}

#rangpur:hover path.st19 {
    fill: #d5d5d5;
}

#mymensingh:hover path {
    fill: #9a1515;
}

#mymensingh:hover path.st17 {
    fill: #fff;
}

#mymensingh:hover path.st19 {
    fill: #d5d5d5;
}

#sylhet:hover path {
    fill: #9a1515;
}

#sylhet:hover path.st17 {
    fill: #fff;
}

#sylhet:hover path.st19 {
    fill: #d5d5d5;
}

#rajshahi:hover path {
    fill: #9a1515;
}

#rajshahi:hover path.st17 {
    fill: #fff;
}

#rajshahi:hover path.st19 {
    fill: #d5d5d5;
}

#khulna:hover path {
    fill: #9a1515;
}

#khulna:hover path.st17 {
    fill: #fff;
}

#khulna:hover path.st19 {
    fill: #d5d5d5;
}

#borishal:hover path {
    fill: #9a1515;
}

#borishal:hover path.st17 {
    fill: #fff;
}

#borishal:hover path.st19 {
    fill: #d5d5d5;
}

#chittagong:hover path {
    fill: #9a1515;
}

#chittagong:hover path.st17 {
    fill: #fff;
}

#chittagong:hover path.st19 {
    fill: #d5d5d5;
}

#dhaka:hover path {
    fill: #9a1515;
}

#dhaka:hover path.st17 {
    fill: #fff;
}

#dhaka:hover path.st19 {
    fill: #d5d5d5;
}

/* === End Bangladesh Style === */

/* === Start Photo Gallery Style === */

.gallery {
    background-color: var(--black2);
}

.photo-gallery .card {
    background: transparent;
}

.photo-gallery .cat-lead-title {
    color: var(--white);
}

.photo-gallery .news-title {
    color: var(--white);
}


/* === Start View Page Style === */

.news-view .news-title h1 {
    font-size: 38px;
}

.news-writter-details .icon {
    border: 2px solid var(--red);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    padding: 2px;

}

.news-writter-details .icon img {
    padding: 3px;
}

.news-writter-details .writter-details p {
    fill: var(--red);
    font-size: 16px;
}

.news-writter-details .writter-details p span {
    margin-right: 5px;
}

button.social-icon {
    background-color: transparent !important;
}

.news-body .news-caption {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    margin-left: 20px;
}

.news-body p {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.8;
    text-align: justify;
}




/* === Start Archive Style === */

.active.start-date.active.end-date.available {
    background-color: var(--red);
}

.applyBtn {
    background-color: var(--red);
}

.overlay-category {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    padding: 2px 10px;

}

.overlay-category span {
    color: var(--white);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.archive .news-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0;
}

/* === Start Footer Style === */


.footer {
    background-color: var(--gray-light);
    color: var(--white);
    padding: 20px 0 0;
    border-top: 1px solid var(--black);
}

.important-links a {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--black);
    padding: 5px 10px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.important-links a:hover {
    background-color: var(--white);
    color: var(--red);
    font-weight: 700;
}

.footer-info {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.editor {
    font-size: 20px;
    font-weight: 700;
    color: var(--black2);
}

.editor-name {
    font-size: 25px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
}

.footer-info p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

.footer-info p span {
    font-weight: 600;
}

.footer-info a {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.footer-info a:hover {
    color: var(--red);
}

.copyWrite {
    background-color: var(--black);
}

.copyWrite small a {
    color: var(--white);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.copyWrite small a:hover {
    color: var(--red);
}

/* === Start Responsive Style === */

/* === Responsive xl Style === */
@media only screen and (max-width: 1200px) {}

/* === Responsive lg Style === */
@media only screen and (max-width: 992px) {
    .min-height {
        min-height: calc(100vh - 372px);
    }

    .navbar {
        width: 90%;
    }

    .search-box {
        top: 0;
    }
}

/* === Responsive md Style === */
@media only screen and (max-width: 768px) {
    .min-height {
        min-height: calc(100vh - 420px);
    }

    .news-border-right {
        border-right: none;
    }

    .archive .news-title {
        font-size: 16px;
    }
}

/* === Responsive sm Style === */
@media only screen and (max-width: 576px) {
    .min-height {
        min-height: calc(100vh - 511px);
    }
}</pre></body></html>