html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0 none;
    font-family: inherit;
    font-size: var(--gblfs);
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0 none;
    padding: 0;
    vertical-align: baseline;
	font-family: var(--gblfnt);
}
:root {
	--gblfnt: "Noto Serif Bengali", serif;
    --df: flex;
    --center: center;
	--start: start;
    --white: #fff;
	--ltgray: #eeeeee;
	--graybg: #e5e5e5;
	--adtxt: #7f7f7f;
	--gray: #dddddd;
	--navbgcolor: #ededed;
    --dgray: #262626;
    --sbdrgray: #aaaaaa;
    --black: #000;
    --redcolor: #DE0303;
    --prelative: relative;
    --pabsolute: absolute;
	 --px: 100px;
	 --fs16: 16px;
	--fs18: 18px;
	--gblfs: 20px;
	--fs22: 22px;
	--fs24: 24px;
	--fs30: 30px;
	--fs32: 32px;
	--fs36: 36px;
	--fs40: 40px;
	--fs48: 48px;
	--fs56: 56px;
	--br5: 5px;
	--br8: 8px;
	--br10: 10px;
	--br16: 16px;
	--pad24: 24px;
}

.df_centercontent {
    display: var(--df);
    justify-content: var(--center);
    align-items: var(--center)
}

figure, picture {
    position: var(--prelative);
}

figure img {
    display: block;
    width: auto;
}
picture img {
    display: block;
    width: 100%;
}

body {
    font-size: var(--gblfs);
    color: var(--black);
	background-color: var(--graybg);
	-webkit-font-smoothing: antialiased;
}
li{
	list-style: none;
}
a{
	text-decoration: none !important;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	color: var(--black);
	font-family: var(--gblfnt);
}
a:hover {
    color: var(--redcolor);
}

.gblbtn {
    background: linear-gradient(180deg, #DE0303 0%, #DE0303 100%);
    display: inline-block;
    font-size: var(--fs16);
    text-align: var(--center);
    color: var(--white);
    border-radius: 40px;
    position: relative;
    padding: 7px 25px;
    margin-top: 10px;
}
.gblbtn:hover {
    background: linear-gradient(180deg, #DE0303 0%, #930000 100%);
    color: var(--white);
}

p {
    font-size: var(--gblfs);
    line-height: 120%;
    margin-top: 5px;
}
.clearfix{
	clear: both;
}
h2 {
    font-size: var(--fs48);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
    line-height: 120%;
}
h3 {
    font-size: var(--fs32);
    margin-bottom: 10px;
    display: block;
    line-height: 120%;
	font-weight: 600;
}
h4 {
    font-size: var(--fs25);
    display: block;
    line-height: 120%;
    font-weight: 600;
}
h5{
	font-size: var(--fs22);
}
.fnt24{
	font-size: 24px;
	font-weight: 500;
}
.media {
    display: var(--df);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.mt-16{
	margin-top: 16px;
}
.mb-16{
	margin-bottom: 16px;
}
.mt-24{
	margin-top: 24px;
}
.mb-24{
	margin-bottom: 24px;
}
.mt-40{
	margin: 40px 0;
}

.nwstxtellips {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.nwstxtvl-1{
	-webkit-line-clamp:1
}
.nwstxtvl-2{
	-webkit-line-clamp:2
}
.nwstxtvl-3{
	-webkit-line-clamp:3
}
.nwstxtvl-4{
	-webkit-line-clamp:4
}
.nwstxtvl-5{
	-webkit-line-clamp:5
}

.desk_on{
	display: block !important;
}
.mobile_on{
	display: none !important;
}


.gray_gradientbg {
    background: linear-gradient(180deg, #FFFFFF 0%, #DBDBDB 100%);
    padding: var(--pad24);
    border-radius: 16px 0 16px 0;
}
.red_gradientbg {
    background: linear-gradient(180deg, rgba(105, 1, 1, 0.8) 0%, rgba(147, 0, 0, 0.8) 50%, rgba(105, 1, 1, 0.8) 100%);
    padding: var(--pad24);
    border-radius: 16px 0 16px 0;
}
.articleheading_outer {
    display: var(--df);
    align-items: var(--center);
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
}
.articleheading_outer:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #780202;
    left: 30px;
    right: 0;
    bottom: 0;
}
.articleheading_outer .articleheading {
    font-size: var(--fs32);
    font-weight: 600;
    color: var(--white);
    margin: 0;
    background: linear-gradient(180deg, #DE0303 0%, #780202 100%);
    padding: 3px 35px;
    border-radius: 16px 16px 0px 16px;
}
.articleheading_outer .all_articlelink {
    font-size: var(--gblfs);
    font-weight: 600;
    color: var(--redcolor);
}

.articleheading_outer .all_articlelink img {
    margin-left: 4px;
    width: 20px;
    margin-top: 0;
}

/* // Global CSS */








/* Start Header */

.header_redgradientbg{
	background: linear-gradient(180deg, #930101 0.48%, #9c0000 100%);
}
.header {
    position: var(--prelative);
    transition: all 0.3s;
    z-index: 9;
    top: 0px;
    padding: 24px 0 10px;
}


.header .date_time {
    position: relative;
}
.header .date_time li {
    float: left;
    font-size: var(--fs16);
    padding-left: calc(var(--px) - 80px);
    position: relative;
    line-height: calc(var(--px) - 86px);
    color: var(--white);
}

.header .date_time li:after {
    width: 6px;
    height: 6px;
    position: absolute;
    content: "";
    background: var(--white);
    border-radius: 10px;
    top: 4px;
    left: 7px;
}

.header .date_time li:first-child:after {
    content: none;
}

.header .date_time li:first-child {
    padding: 0;
}
.header .social {
    gap: 17px;
    display: var(--df);
    margin-left: 15px;
}

.header .social a {
    background: var(--white);
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}
.header .social a img {
    width: 15px;
}
.header .social a:hover {
    border-radius: 6px 0 6px 0;
}

/*  Header search */
.header-search-form {
    width: 250px;
    float: right;
}
.header-search-form div#search {
    display: var(--df);
    margin-top: 14px;
}
.header-search-form input.form-control {
    border: 0;
    font-size: 16px;
    font-family: arial;
    background-image: url("../images/search.png");
    background-repeat: no-repeat;
    background-position: 17px center;
    border-radius: 35px;
    display: block;
    padding-left: 45px;
}
.header-search-form input.form-control:focus, .header-search-form button.form-control-submit:focus {
    box-shadow: none;
}

/*  // Header  search */


/** Nav bar **/
.main_head {
    z-index: 9;
    position: sticky;
    top: 0;
    background: var(--black);
    border-bottom: 1px solid #DE0303;
}
.main_head .main_head_inner {
    box-shadow: 0px 5px 13px rgba(0,0,0,0.20);
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}
.main_head  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.main_head .navbar-nav a.nav-link {
    font-size: var(--gblfs);
    color: #fff;
    padding: 11px 19px;
}
.main_head li.nav-item .dropdown-menu {
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    background: var(--black);
    border-radius: 0px 0px 14px 14px;
    padding: 0px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.7);
}

.main_head li.nav-item .dropdown-menu a.dropdown-item {
    font-size: var(--fs16);
    padding: 8px 14px;
    color: var(--white);
    border-bottom: 1px solid rgba(222, 3, 3, 0.64);
}
.main_head .splogo {
    width: 95px;
}

.main_head nav.navbar.navbar-expand-lg {
    padding: 0;
}

.main_head .navbar-nav .nav-item.dropdown a.nav-link img.darrow {
    transition: all 0.15s;
    margin-left: 10px;
}
.main_head .navbar-nav .bigsubmenu .submenulistbox ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
}

.main_head .navbar-nav .bigsubmenu .submenulistbox .dropdown-item {
    border-right: 1px solid rgba(222, 3, 3, 0.64);
}

.main_head .navbar-nav .bigsubmenu .submenulistbox ul li:nth-child(3n) .dropdown-item {
    border-right: 0;
}

.main_head a.nav-link.dropdown-toggle::after {
    font-size: 14px;
    padding-left: 0;
    margin-left: 2px;
}

.main_head a.nav-link:hover, .header .main_head a.nav-link:active, .header .main_head a.nav-link:focus, .main_head li.nav-item .dropdown-menu a.dropdown-item:focus, .main_head li.nav-item .dropdown-menu a.dropdown-item:hover {
    background: radial-gradient(50% 50% at 50% 100%, rgba(222, 3, 3, 0.8) 0%, rgba(153, 153, 153, 0) 100%);
    color: var(--white);
}
.main_head a.nav-link.active {
    background: linear-gradient(180deg, #FF9900 0%, #DE0303 100%);
    color: var(--white);
}
	
/** // Nav Bar**/


#mobile_sidebar_menu.m_nav_menu {
	display: none;
}

/******* End Header *********/


/** // Start Breadcrum **/

.breadcrum_wrap {
    overflow: hidden;
}
.breadcrumbs li {
    font-size: 14px;
    display: block;
    padding: 2px 6px;
	color: var(--white);
    font-family: arial;
}
.breadcrumbs li img.bra {
    transform: rotate(270deg);
}
.breadcrumbs li a {
    font-size: 14px;
    color: var(--white);
    position: relative;
    display: block;
    font-family: arial;
}

.breadcrum_wrap .breadcrumbs {
    display: var(--df);
    overflow: hidden;
    border-bottom: 1px solid #E24C57;
    padding: 10px 40px 10px;
}
/* Firefox */
.breadcrum_wrap {
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 transparent;
    overflow: hidden;
    margin: auto;
}

/* Chrome / Edge / Safari */
.breadcrum_wrap::-webkit-scrollbar {
    height: 5px;              /* thin bar */
}

.breadcrum_wrap::-webkit-scrollbar-track {
    background: transparent;
}

.breadcrum_wrap::-webkit-scrollbar-thumb {
    background-color: #c0c0c0;
    border-radius: 8px;
}

.breadcrum_wrap::-webkit-scrollbar-thumb:hover {
    background-color: #9e9e9e;
}
/** // Breadcrum **/


.ad_box span {
    display: block;
    background: var(--adgraybox);
    font-size: 13px;
    text-align: var(--center);
    font-family: arial;
    padding: 3px 0;
    color: var(--adtxt);
}
.ad_box a {
    display: block;
    text-align: var(--center);
}


/** Start Wrapper **/
.robbar_wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 40px 24px;
}


/*** Fullpage overlay article sharebox ***/
#overlay_article_socialsharebox_wrapper {
	position: fixed;
	background: rgba(0,0,0,0.7);
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 999;
	display: none;
	align-items: var(--center);
	justify-content: center;
}

#overlay_article_socialsharebox_wrapper .share_box_inner {
	width: 275px;
	background: var(--white);
	padding: 15px 25px;
	border-radius: var(--br16);
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#overlay_article_socialsharebox_wrapper .share_box_inner .title_bar {
	text-align: center;
	position: var(--prelative);
	border-bottom: 1px solid #b7b7b7;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

#overlay_article_socialsharebox_wrapper .share_box_inner .title_bar p {
	font-size: 13px;
	font-family: poppins;
}

#overlay_article_socialsharebox_wrapper .share_box_inner .articlesharebox_close {
	position: absolute;
	right: 0;
	top: -4px;
}

#overlay_article_socialsharebox_wrapper .share_box_inner .share_options {
	display: var(--df);
	align-items: center;
	gap: calc(var(--px) - 76px);
	justify-content: center;
}

#overlay_article_socialsharebox_wrapper .share_box_inner .share_options img {
	scale: 1.3;
}
/*** //Fullpage overlay article sharebox ***/


		
/************** START LANDING PAGE ***************/
.top_gradientbg {
    background: linear-gradient(180deg, #9c0000 0%, #ff4141 100%);
}
.herocol_area {
    display: var(--df);
    gap: 24px;
    padding: 24px 0;
}
.herocol_area > div {
    flex: 1;
}

.herocol_area .twogrid {
    display: var(--df);
    gap: 24px;
}

.herocol_area .twogrid > div {
    flex: 1;
}
.hero_article {
    position: relative;
    border-radius: 16px 0 16px 0;
    overflow: hidden;
}
.hero_article:after {
    position: absolute; 
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
}

.hero_article img.img-fluid {
    border-radius: 16px 0 16px 0;
    width: 100%;
}
.articlebox_btm_area .articleoption img.img-fluid {
    border-radius: 0;
}
.hero_article .title h1 {
    font-size: var(--fs48);
    font-weight: 600;
    color: var(--white);
    line-height: 130%;
}

.hero_article .article_inner p {
    color: var(--white);
    line-height: 150%;
    margin: 13px 0;
    font-weight: 300;
}

.hero_article.rbarticlebox .article_author h5 {
    color: var(--white);
}

.hero_article .article_author {
    margin-top: 10px;
}

.hero_article.rbarticlebox .article_inner {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    height: auto;
}

    /** Global RB-Article box css **/
    .rbarticlebox {
        min-height: 510px;
    }
    .rbarticlebox .article_author, .article_author {
        display: var(--df);
        gap: 15px;
        align-items: center;
    }
    .rbarticlebox  .article_inner {
        height: 100%;
        display: var(--df);
        flex-direction: column;
        justify-content: space-between;
    }

    .rbarticlebox .article_inner .top_content {
        justify-content: start;
        display: var(--df);
        flex-direction: column;
        gap: 15px;
    }

    .rbarticlebox .article_author picture, .article_author picture {
        width: 40px;
        height: 40px;
        background: var(--redcolor);
        border-radius: 20px;
        overflow: hidden;
    }

    .rbarticlebox .article_author h5, .article_author h5 {
        font-size: var(--fs18);
        color: #5e5e5e;
    }

    .rbarticlebox .articlebox_btm_area, .articlebox_btm_area {
        display: var(--df);
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }
    .rbarticlebox .articlebox_btm_area .articleoption, .articlebox_btm_area .articleoption {
        display: var(--df);
        gap: 16px;
    }
    .rbarticlebox .articlebox_btm_area .articleoption .wishlist path, .articlebox_btm_area .articleoption .wishlist path {
        stroke: var(--redcolor);
        stroke-width: 2;
        fill: transparent;
        transition: all 0.3s;
    }
    .rbarticlebox .articlebox_btm_area .articleoption .wishlist:hover path, .articlebox_btm_area .articleoption .wishlist:hover path {
        stroke: 0;
        stroke-width: 0;
        fill: var(--redcolor);
    }
    .rbarticlebox  .article_pic picture, .article_pic picture {
        border-radius: 16px 0 16px 0;
        overflow: hidden;
        display: block;
    }
    .rbarticlebox .article_inner h3 {
        line-height: 130%;
        margin: 0;
    }
    .rbarticlebox .articlebox_btm_area .gblbtn, .articlebox_btm_area .gblbtn {
        margin: 0;
    }
    /** // Global RB-Article box css **/


.rbarticlebox_onecol_fourgridwrap {
    display: var(--df);
    gap: 24px;
}
.rbarticlebox_onecol_fourgridwrap > div {
    flex: 1;
}

.herobar_article {
    display: var(--df);
    border-radius: 16px 0 16px 0;
    overflow: hidden;
}

.herobar_article > div {
    flex: 1;
}

.herobar_article .herobar_content {
    background: var(--white);
    display: var(--df);
    flex-direction: column;
    gap: 15px;
    align-items: start;
    padding: 24px;
    justify-content: center;
}
.herobar_article .herobar_content .tag {
    font-size: var(--fs16);
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--redcolor);
    border-radius: 25px;
    color: var(--redcolor);
    align-self: flex-start;
}

.herobar_article .herobar_content .title {
    font-size: 56px;
    display: block;
    font-weight: 600;
    line-height: 56px;
}
.herobar_article .herobar_content .inner_content {
    display: var(--df);
    gap: 15px;
    flex-direction: column;
}
.herobar_article .herobar_content p {
    line-height: 167%;
    margin: 0;
}
.herobar_article .herobar_content .articlebox_btm_area {
    margin: 0;
}

/*** Red gradient grid box ***/

.rbarticlebox.red_gradientbg .title h3 {
    color: var(--white);
}

.rbarticlebox.red_gradientbg .article_inner .article_author picture {
    background: var(--white);
}

.rbarticlebox.red_gradientbg .article_inner .article_author h5 {
    color: var(--white);
}

.rbarticlebox.red_gradientbg .article_inner .articlebox_btm_area .gblbtn {
    background: var(--white);
    color: var(--redcolor);
}
.rbarticlebox.red_gradientbg .article_inner .articlebox_btm_area .gblbtn:hover{
    background: linear-gradient(180deg, #DE0303 0%, #930000 100%);
    color: var(--white);
}
.rbarticlebox.red_gradientbg .articlebox_btm_area .articleoption .wishlist path {
    stroke: var(--white);
}

.rbarticlebox.red_gradientbg .articleoption .articleshare img.img-fluid {
    filter: brightness(0) invert(1);
}
/*** // Red gradient grid box ***/

.onecol_twogridwrap {
    display: var(--df);
    gap: 24px;
}

.onecol_twogridwrap > div {
    flex: 1;
}
.onecol_twogridwrap .bigarticle {
    background: var(--white);
    border-radius: 16px 0 16px 0px;
    overflow: hidden;
}
.bigarticle .article_pic picture {
    border-radius: 16px 0 0 0;
}

.bigarticle .bigarticle_inner {
    background: var(--white);
    padding: 24px;
    border-radius: 0 0 16px 0px;
}

.parttaglinks {
    border: 1px solid var(--redcolor);
    align-self: start;
    margin-bottom: 15px;
    border-radius: 25px;
    align-items: center;
    overflow: hidden;
    display: inline-flex;
}

.parttaglinks a {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--redcolor);
}

.parttaglinks .tag.redbg {
    background: var(--redcolor);
    color: var(--white);
    border-radius: 0;
}

.parttaglinks .part {
    position: relative;
}

.parttaglinks .part:after {
    content: "";
    height: 13px;
    width: 1px;
    background: var(--redcolor);
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.parttaglinks .allpart img.img-fluid {
    margin-left: 4px;
}

.parttaglinks a:hover {
    color: var(--black);
}

.bigarticle .bigarticle_inner p {
    font-size: 17px;
    line-height: 150%;
    margin: 10px 0;
}
.rb_vrarticlebox_wrap li {
    border-bottom: 1px solid #b1b1b1;
    margin-bottom: 16px;
    padding-bottom: 16px;
}
.whitebg_withbdr_radius {
    background: var(--white);
    padding: 24px;
    border-radius: 16px 0 16px 0;
}
.vrarticleboxlist {
    display: var(--df);
    gap: 24px;
}
.vrarticleboxlist .article_pic {
    max-width: 370px;
}

.vrarticleboxlist > div, .vrarticleboxlist > a {
    flex: 1;
}

.rb_vrarticlebox_wrap li:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.articleheading_outer.plainheading {
    position: unset;
    margin-bottom: 7px;
}

.articleheading_outer.plainheading .articleheading {
    background: none;
    color: var(--black);
    padding: 0;
}

.articleheading_outer.plainheading .all_articlelink {
    color: var(--black);
}

.articleheading_outer.plainheading .all_articlelink img.img-fluid {
    filter: brightness(1) invert(0) sepia(1);
}

.authorlist_inner ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.authorlist_inner ul .author {
    width: 112px;
    display: block;
    margin: auto;
    text-align: center;
}

.authorlist_inner ul .author picture {
    width: 100px;
    height: 100px;
    display: block;
    background: var(--redcolor);
    border-radius: 100px;
    overflow: hidden;
    margin: auto;
}

.authorlist_inner ul .author h6 {
    font-size: 16px;
    text-align: center;
    margin: 6px 0 2px;
    font-weight: 500;
}

.authors_list_wrap .moreauthor {
    font-size: 40px;
    color: var(--redcolor);
    margin-top: 20px;
    display: block;
    font-weight: 500;
}

.editor_list_wrap .authorlist_inner  .author span {
    color: #E24C57;
    font-size: 15px;
    display: block;
}

.editor_list_wrap .authorlist_inner .author picture {
    border: 1px solid #930000;
}
.golgoppobox_wrap {
    background:  linear-gradient(180deg, #1B1717 0%, #830000 100%);
    padding: 24px;
    border-radius: 16px 0 16px 0;
}

.golgoppobox_wrap .articleheading_outer.plainheading .articleheading {
    color: #fff;
}
.golgoppobox_wrap .rb_vrarticlebox_wrap li:nth-child(2n) .vrarticleboxlist {
    flex-direction: row-reverse;
}

.golgoppobox_wrap .articleheading_outer.plainheading .all_articlelink {
    color: #FC7A84;
}

.golgoppobox_wrap .articleheading_outer.plainheading .articleheading span {
    color: #FC7A84;
}
.golgoppobox_wrap .parttaglinks .part:after{
    display: none;
}
.golgoppobox_wrap .articleheading_outer.plainheading .all_articlelink img.img-fluid {
    filter: none;
}
.authors_list_wrap .articleheading_outer:after, .golgoppobox_wrap .articleheading_outer:after{
    display: none;
}	
		
/************** // LANDING PAGE ***************/



/************** GLOBAL FOOTER ***************/
.footer {
    background: linear-gradient(180deg, #3D3D3D 0%, #000000 100%);
    text-align: var(--center);
    padding-bottom: 16px;
    overflow: hidden;
    padding-top: 40px;
    padding-left: 24px;
    padding-right: 24px;
}

.footer a {
    color: var(--white);
    display: block;
    font-size: 13px;
    font-family: arial;
    margin: 6px 0;
    text-align: left;
}


.footer .copyright p {
    margin: 0;
    color: var(--white);
    font-size: 11px;
	 font-family: arial;
}

.footer a:hover {
    color: var(--redcolor);
}
.footer .f_elementbox {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: auto;
    gap: 80px;
}

.footer .copyright {
    border-top: 1px solid #696969;
    padding-top: 18px;
}

.footer .social p {
    font-size: 13px;
    color: #fff;
    text-align: left;
    margin-bottom: 4px;
}

.footer .sociallinks {
    display: var(--df);
    gap: 15px;
}
/************** // GLOBAL FOOTER ***************/




/************** CATEGORY PAGE ***************/
	
	/**** PAGINATION ****/
	.pagination_wrap {
		align-items: center;
		display: flex;
		justify-content: center;
		margin: 35px 0 15px;
	}
	.pagination_wrap .pagination .page-link img {
		width: 7px;
		display: inline-table;
	}
	.pagination_wrap .pagination .page-link img.pagi_rtarrow {
		transform: rotate(180deg);
	}
	.pagination_wrap .pagination span.page-link.active {
		border-color: #fff;
		background: #DE0303;
		color: #fff;
	}

	.pagination_wrap .pagination {
		gap: 8px;
	}
	.pagination_wrap .pagination .page-link {
		border: 1px solid #DFE3E8;
		border-radius: 4px;
		font-family: arial;
		font-size: 14px;
		color: var(
			--black);
		font-weight: 600;
	}
	.pagination_wrap .pagination a.page-link.disable {
		background: #919EAB;
		border-color: #919EAB;
	}
	.pagination_wrap .pagination a.page-link.disable img {
		filter: brightness(0) invert(1);
	}
	/**** // PAGINATION ****/
	
	
.innerpg_heading h2 {
    text-align: center;
    color: var(--white);
    font-weight: 700;
}
/************** // CATEGORY PAGE ***************/



/**************  SINGLE ARTICLE PAGE ***************/
.sin_article_hero .sinarticle_contentarea {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.sin_article_hero {
    display: var(--df);
    gap: 24px;
}

.sin_article_hero > div {
    flex: 1;
}

.sin_article_hero .sinarticle_contentarea h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
}

.sin_article_hero .sinarticle_contentarea p {
    color: var(--white);
    line-height: 31px;
}

.sin_article_hero .sinarticle_contentarea .article_author {
    margin-top: 20px;
}

.sin_article_hero .sinarticle_contentarea .article_author h5 {
    color: var(--white);
}

.sin_article_hero .sinarticle_contentarea .sinarticle_sharebox {
    margin-left: 15px;
    display: flex;
    gap: 12px;
}

.sin_article_hero .sinarticle_contentarea .sinarticle_sharebox img {
    width: 40px;
}

.sin_article_hero .sinarticle_contentarea .sinarticle_btm {
    align-items: center;
}

.sin_article_hero .sinarticle_contentarea .pubisher p {
    font-size: 14px;
    line-height: 15px;
    margin: 0;
}

.sin_article_hero .sinarticle_contentarea .pubisher p b {
    font-weight: 600;
}

.sin_article_hero .sinarticle_contentarea .pubisher .posted {
    font-size: 13px;
    color: var(--white);
}

.sin_article_hero .sinarticle_th picture {
    display: block;
    border-radius: 16px 0 16px 0;
    overflow: hidden;
}

.sin_articlepg_top {
    margin: 40px 0;
}
.twocol_withsidebar_wrapper {
    display: var(--df);
    gap: 24px;
}

.twocol_withsidebar_wrapper .sidebar {
    flex: 0 0 460px;
    background: var(--white);
    padding: 24px;
}

.twocol_withsidebar_wrapper .leftcol {
    flex: 1;
    background: var(--white);
    padding: 24px;
}

.twocol_withsidebar_wrapper .sidebar .rbarticlebox_onecol_fourgridwrap {
    flex-direction: column;
}

.twocol_withsidebar_wrapper .sinarticle_detail p {
    line-height: 150%;
    font-size: 22px;
    margin-top: 20px;
}
.twocol_withsidebar_wrapper .sinarticle_detail p:first-child {
    margin: 0;
}
.sinarticle_detail quote {
    font-size: 30px;
    font-weight: 600;
    padding: 0px 24px;
    overflow: hidden;
    display: block;
    border-left: 4px solid var(--redcolor);
    margin: 40px 24px;
}
.sinarticle_detail .thumb_withpopup {
    display: block;
    text-align: center;
    margin: 24px 0px;
}

.sinarticle_detail .thumb_withpopup img.img-fluid {
    border: 1px solid var(--black);
    display: inline-block;
}

.sinarticle_detail .thumb_withpopup .caption {
    font-size: 16px;
    margin: 10px 0;
    color: var(--redcolor);
    font-weight: 500;
}
.sinarticle_detail .thumb_withpopup .thumbbx {
    position: relative;
    display: inline-block;
}

.sinarticle_detail .thumb_withpopup .thumbbx .zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(222, 3, 3, 0.4);
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
}
.hastag_list_box {
    margin: 24px 0 0;
}

.hastag_list_box .hastag {
    display: inline-block;
    font-size: 15px;
    font-family: arial;
    background: var(--white);
    padding: 6px 17px;
    margin: 6px 4px;
    border-radius: 35px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    color: #919EAB;
}
.hastag_list_box .hastag:hover {
    color: #000;
}
	/*** Modal popup **/
	.sinarticlepg_picture_popup  .modal-header {
		border: 0;
	}

	.sinarticlepg_picture_popup .modal-content {
		border-radius: 16px;
	}

	.sinarticlepg_picture_popup #modalCaption {
		text-align: center;
		margin: 10px 0 0;
		font-size: 18px;
		color: var(--redcolor);
	}

	.sinarticlepg_picture_popup .modal-body {
		padding: 0 40px 24px 40px;
	}
	/*** // Modal popup **/
/************** // SINGLE ARTICLE PAGE ***************/















