.formRadius {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
.btnRadius {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

.borderRadius {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.borderRadiusTabs {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
}
.borderRadiusTop {
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.borderRadiusRight {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  -ms-border-radius: 0 5px 5px 0;
  -o-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.borderRadiusBottom {
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.borderRadiusLeft {
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.borderRound {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.noRadius {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.boxShadow {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.16);
}
.boxShadowDark {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.45);
}
.boxShadowDown {
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.notifyShadow {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.45);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.45);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.45);
}
.innerShadow {
  -webkit-box-shadow: inset 0px 0px 24px 3px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: inset 0px 0px 24px 3px rgba(0, 0, 0, 0.24);
  box-shadow: inset 0px 0px 24px 3px rgba(0, 0, 0, 0.24);
}
.noShadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.hoverEffect {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.imageEffect {
  transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
}
.alignLR {
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.alignTB {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.alignC {
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}
.alignNone {
  transform: none;
  -webkit-transform: none;
  -ms-transform: none;
}
.blackShade {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}
.blackShadedim {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, #000000 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, #000000 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, #000000 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
}
.clearafter {
  content: "";
  clear: both;
  display: block;
  height: 0;
}
* {
  margin: 0;
}
html,
body {
  background: #ffffff;
  height: 100%;
  width: 100%;
  color: #494949;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
}
h1 {
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: 125%;
  margin: 0 0 10px 0;
  font-family: 'Ek Mukta', sans-serif;
}
h2 {
  color: #000;
  font-size: 28px;
  font-weight: 600;
  line-height: 125%;
  margin: 0 0 10px 0;
  font-family: 'Ek Mukta', sans-serif;
}
h3 {
	color: #000;
	font-size: 20px;
	padding-top: 16px;
	line-height: 135%;
	margin: 0 0 10px 0;
	font-weight: 600;
	font-family: 'Ek Mukta', sans-serif;
}
h4 {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 125%;
  padding-top: 10px;
  font-family: 'Ek Mukta', sans-serif;
}
h5 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 125%;
  margin: 0 0 10px 0;
  font-family: 'Ek Mukta', sans-serif;
}
h6 {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  line-height: 125%;
  margin: 0 0 10px 0;
  font-family: 'Ek Mukta', sans-serif;
}
p {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 28px;
}
a {
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #10296A;
}
a:hover h1,
a:hover h2,
a:hover h3,
a:hover h4,
a:hover h5,
a:hover h6 {
  color: #10296A;
}
strong {
  font-weight: 500;
}
.align-items {
  align-items: center;
}
img,
object,
embed {
  max-width: 100%;
}
img {
  height: auto;
}
header .top-block {
  background: transparent linear-gradient(0.5turn,#10296A1C 0%,#fff 100%) 0% 0% no-repeat padding-box;
  width: 100%;
}
header .top-block .logo-container {
	padding: 15px 0;
	display: flex;
	align-items: center;
}
header .top-block .logo-container span {
  color: #111;
  font-size: 15px;
  /* padding-left: 15px; */
  margin-top: auto;
}
header .top-block a.logo > img {
	width: 134px;
	object-fit: cover;
}
header .top-block .social-media-links {
  clear: both;
  display: block;
  float: right;
  padding: 30px 0;
}
header .top-block .social-media-links a {
  padding: 0 3px;
}
header .top-block .social-media-links i {
	color: #fff;
	font-size: 19px;
	background: #1e3462;
	width: 35px;
	height: 35px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
}
header .top-block .social-media-links a:hover i {
	background: #bc1724;
}
.site-navigation {
  background: #1e3462;
}
.top-banner a {
	display: block;
	margin-bottom: 30px;
}

.top-banner a {
	display: block;
	margin-bottom: 30px;
}
.sub-head {
	font-size: 20px;
	color: #000;
	opacity: .6;
	margin-top: 0;
}
.site-navigation div div ul {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  align-items: center;
  align-self: stretch;
  list-style: none;
  padding: 0;
}
.site-navigation div div ul li {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
}
.site-navigation div div ul li.active a {
  color: #fff;
}
.site-navigation div div ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  font-weight: 500;
  font-size: 17px;
  align-items: center;
  text-transform: uppercase;
  padding: 14px 27px 14px 0;
  height: 100%;
}
.site-navigation div div ul li a:hover {
  color: #fff;
  opacity: .85;
  cursor: pointer;
}
.menu__trigger {
  display: none;
}
section.ad-block {
  padding: 25px 0;
}
section.ad-block img {
  width: 100%;
}
section.breaking-news .news-block {
  text-align: center;
  margin-bottom: 30px;
}
section.breaking-news .news-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.breaking-news .news-block a h2 {
  font-size: 50px;
  font-weight: 600;
  margin: 0;
}
section.breaking-news .news-block figure {
	margin-top: 20px;
}
section.breaking-news .news-block a p {
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 20px;
}
section.breaking-news .news-block a:hover {
  color: #10296A;
}
section.breaking-news .news-block a:hover h2 {
  color: #10296A;
}
.block-title {
  margin-bottom: 20px;
  border-bottom: 1px solid #102969;
  padding-bottom: 4px;
}
.block-title a.heading {
	font-size: 20px;
	font-weight: 500;
	background: #102969;
	padding: 8px 20px;
	margin-bottom: 0;
	color: #ffffff;
	border-bottom: 0;
}
.block-title a.view-all {
  font-size: 16px;
  font-weight: 500;
  color: #102969;
}
h3.news-title a {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
section.samachar .news-list figure {
	margin: 0;
}
.news-list h3 {
	font-size: 20px !important;
	padding-bottom: 0;
	margin-bottom: 0;
	font-weight: 600;
	line-height: 1.4;
	padding-top: 0;
}
section.important-news {
  margin-bottom: 20px;
}
section.important-news .main-news h2 {
  font-size: 24px;
}
section.important-news .main-news p.intro-text {
  font-size: 18px;
}
section.important-news .main-news img {
  width: 398px;
  height: 250px;
  object-fit: cover;
}
section.important-news .published-on {
  font-size: 15px;
}
section.important-news .published-on i {
  color: #102969;
  padding-right: 2px;
}
.side-branding {
  margin-bottom: 20px;
}
.branding-block {
  margin-bottom: 10px;
}
section.headline {
  margin-bottom: 20px;
}
section.headline .headline-block {
  text-align: center;
  margin-bottom: 20px;
}
section.headline .headline-block img {
  width: 255px;
  height: 156px;
  object-fit: cover;
}
.list-news {
  margin-bottom: 20px;
}
.list-news img {
  height: 156px;
  object-fit: cover;
}
.list-news section.opinion {
  text-align: center;
}
.list-news img {
  object-fit: cover;
}
.list-news h4 {
  padding: 10px;
}
section.samachar {
  margin-bottom: 20px;
}
section.samachar .news-list img {
  width: 112px;
  height: 80px;
  object-fit: cover;
}
section.samachar .news-list .row {
	margin-bottom: 25px;
}
.news-listings ul {
  margin-left: 15px;
  padding: 0;
}
.news-listings ul li {
  list-style: square;
  padding: 10px 0 10px 5px;
  border-bottom: 1px solid #eee;
}
.news-listings ul li:first-child {
  padding-top: 0;
}
.news-listings ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.news-listings ul li a {
  cursor: pointer;
  font-size: 18px;
}
section.full-block {
  padding: 30px 0 20px 0;
  background: #e0e9f2;
  margin-bottom: 20px;
}
section.full-block h2 {
  font-size: 24px;
  padding-top: 10px;
}
footer {
	color: #111;
	padding: 30px 0 0 0;
	background: #1111110f;
}
footer .member > div {
  line-height: 1.9;
  font-size: 17px;
}
footer #patipauwa img {
	width: 160px;
}
footer h4 {
  color: #102969;
}
footer a {
  color: #111;
}
footer a:hover {
  color: #102969;
}
footer .list-unstyled li {
	line-height: 1.9;
	font-size: 16px;
}
footer .list-unstyled li a {
  display: block;
  font-size: 17px;
}
footer .list-unstyled li a:hover {
  color: #ea3627;
}
footer h2 {
  font-size: 28px;
  color: #ffffff;
}
footer .titles {
  font-size: 24px;
  font-weight: 600;
  display: block;
  margin-bottom: 40px;
}
footer ul.social {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul.social li {
  display: inline-block;
  font-size: 18px;
  margin-right: 15px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
footer ul.social li i {
  color: #ffffff;
}
footer ul.social li.facebook {
  background: #3b5998;
}
footer ul.social li.twitter {
  background: #1da1f2;
}
footer ul.social li.youtube {
  background: #cc181e;
}
footer ul.social li.google {
  background: #dd4b39;
}
footer ul.contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul.contacts li {
  color: #111;
}
footer ul.contacts li i {
  margin-right: 15px;
}
footer .footBar {
	background: #1e3462;
	padding: 15px 0;
	line-height: 18px;
	font-size: 14px;
	color: #ffffff;
	margin-top: 36px;
}
footer .footBar .left {
  float: left;
}
footer .footBar .left span a {
  color: #fff;
}

footer .footBar .right {
  float: right;
}
footer .footBar .right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footBar .right ul li {
  display: inline-block;
  margin: 0 20px 0 0;
}
footer .footBar .right ul li a {
  font-size: 14px;
  color: #ffffff;
}
footer .footBar .right ul li a:hover {
  color: #ea3627;
  transition: 0.3ms linear;
}
strong {
  font-weight: 700;
}
.site-navigation.fixed-header {
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
}
.branding-block a img {
  padding-bottom: 15px;
}

.detail-page .heading h1 {
	font-size: 50px;
	font-family: 'Ek Mukta', sans-serif;
	margin: 0;
}

.detail-page ul.author-info {
  padding: 0;
  margin: 15px 0;
}
.detail-page ul.author-info li {
  display: inline;
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-page ul.author-info li.author span {
  padding-left: 10px;
}
.detail-page ul.author-info li.author img {
  height: 35px;
  width: 35px;
}
.detail-page ul.author-info li.date {
  padding-left: 30px;
  font-size: 16px;
}
.detail-page .featured-image {
  margin: 10px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.detail-page .featured-image div.caption {
  font-size: 16px;
  padding: 10px 0 5px 0;
  font-style: italic;
  display: block;
  color: #102969;
}
.detail-page .new-detail p {
	font-size: 22px;
	font-family: 'Ek Mukta', sans-serif;
	line-height: 40px;
	font-weight: 400;
	color: #111;
	text-align: justify;
}

.detail-page .related-news {
  margin: 20px 0;
}
.pagenav {
	display: flex;
	text-align: right;
	margin-top: 25px;
	justify-content: space-evenly;
}
.pagenav nav .disabled .page-link {
width: auto;
}
.pagenav nav .page-link{
	display: inline-block;
	/* padding: 0 15px; */
	background: #00000040;
	color: #fff;
	height: 35px;
	width: 35px;
	margin-left: 15px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	font-weight: 600;
}
.pagenav nav .page-link:hover, 
.pagenav nav .active .page-link {
  background:#102969;
  color: #fff;
  border-color: #102969;
}
.pagenav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagenav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.pagenav ul li a,
.pagenav ul li span {
  border: 1px solid #10296A;
  display: block;
  text-align: center;
  padding: 0 12px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}
.pagenav ul li a:hover,
.pagenav ul li span:hover {
  background: rgba(75, 74, 74, 0.05);
}
.pagenav ul li.active span {
  border-color: #10296A;
  background: #10296A;
  color: #ffffff;
}
.pagenav ul li.disabled span {
  cursor: default;
  color: #999999;
}
.pagenav ul li.disabled span:hover {
  background: transparent;
  color: #999999;
}
p.short-desc {
  padding: 0;
  margin: 0;
}
p.date {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  font-size: 15px;
  color: #7b7b7b;
  font-style: italic;
}
a.menu__trigger:hover {
  color: #111;
}
.news-list img {
  width: 112px;
  height: 80px;
  object-fit: fill;
}
.st-total .st-label {
  color: #10296A !important;
  font-size: 24px !important;
  font-weight: 600 !important;
}
.headline-box img {
  height: 160px;
  width: 255px;
  object-fit: fill;
}
/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
}
/*
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
}
/*
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
}
/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}
/*
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/
@media (max-width: 767px) {
  .site-navigation.fixed-header {
    position: relative;
  }
  section.breaking-news .news-block a h2 {
    font-size: 40px;
    font-weight: 600;
  }
  .small-hidden {
    display: none;
  }
  header .top-block {
    height: auto;
    background:none;
  }
  header.fixed {
    top:0;
    z-index: 1;
    background: #fff;
    left:0;
    width: 100%;
    box-shadow: 0 3px 9px #000000f7;
    position: fixed;
  }
  header .top-block .logo-container {
    width: 100%;
    text-align: left;
    display: inline;
  }
  header .top-block .logo-container a img {
    width: 100px;
  }
  header .top-block .social-media-links {
    float: right;
    width: 100%;
  }
  section.breaking-news .news-block a h2 {
    font-size: 40px;
  }
  section.breaking-news .news-block a p {
    font-size: 20px;
  }
  section.important-news .main-news h2 {
    font-size: 20px;
  }
  section.important-news .main-news p.intro-text {
    font-size: 16px;
  }
  .news-list h3 {
    margin-bottom: 20px;
  }
  .news-list figure {
    margin: 0;
  }
  .news-list .published-on {
    padding-bottom: 20px;
    font-size: 14px;
  }
  section.opinion h4 {
    font-size: 18px;
  }
  section.opinion a.heading {
    text-align: left;
  }
  section.opinion a.view-all {
    display: none;
  }
  section.full-block h2 {
    font-size: 20px;
  }
  h3.news-title a {
    font-size: 18px;
  }
  section.important-news .main-news h2 {
    font-size: 18px;
  }
  .news-listings ul li a {
    font-size: 16px;
  }
  h3.text-sm {
    padding-bottom: 15px;
  }
  .side-branding img {
    width: 100%;
  }
  .site-navigation div div ul {
    position: fixed;
    background: #102969;
    left: 0;
    top: 0;
    display: block;
    height: 100vh;
    width: 80%;
    max-width: 308px;
    left: -308px;
    transition: all 0.4s ease;
    z-index: 2;
  }
  .site-navigation div div ul li {
    display: block;
    height: auto;
  }
  .site-navigation div div ul li a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 45px;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 25px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.08);
  }
  .site-navigation div div ul li a:hover {
    color: #ffffff;
  }
  .show__side--menu {
    margin-right: -308px;
    overflow: hidden;
  }
  .black__shadow {
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
  }
  .show__side--menu .site-navigation > div > div > ul {
    left: 0;
  }
  .show__side--menu .black__shadow {
    display: block;
  }
  .menu__trigger {
    display: inline-block;
    float: right;
    color: #000;
    line-height: 80px;
    font-size: 24px;
  }
  .detail-page .heading h1 {
    font-size: 34px;
  }
  .detail-page .new-detail p {
    font-size: 18px;
  }
  .detail-page .share-block {
    margin-bottom: 15px;
  }
  .detail-page ul.author-info {
    margin: 0;
  }
  .detail-page ul.author-info li.author {
    font-size: 14px;
  }
  .detail-page ul.author-info li.date {
    font-size: 13px;
    padding-left: 5px;
  }
  .detail-page .related-news img {
    width: 100%;
  }
  .detail-page .related-news h4 {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .comment-block h4 {
    font-size: 18px;
  }
  .block-title a.heading {
    font-size: 18px;
  }
  .sharethis-inline-share-buttons {
    float: left;
    padding-top: 0 !important;
  }
  .news-list img {
    width: 100%;
    height: auto;
  }
  .headline-box img {
    width: 100%;
    height: auto;
  }
  .headline-block img {
    width: 100%;
    height: auto;
  }
  section.headline .headline-block img {
    width: 100%;
    height: auto;
  }
  section.samachar .news-list img {
    width: 100%;
    height: auto;
  }
  .main-news img {
    width: 100%;
    height: auto;
  }
 
}



@media(max-width:480px) {
  
  section.breaking-news .news-block a h2 {
    font-size: 30px;
    font-weight: 600;
  }
}

