/* 
Author:Md Nayem 
*/
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: "Noto Serif Bengali", serif;
}
a {
  text-decoration: none;
  color: #000000;
  line-height: 0;
}
ul,
ol {
  list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  word-break: break-word;
}
h1 {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.nayem {
  font-family: "Gochi Hand", cursive;
  font-size: 1.5rem;
  color: #0f9d58;
}
.nayem:hover {
  color: #14d175;
}
.small-title {
  font-size: 1rem;
  line-height: 1.2rem;
}
.subtitle {
  color: #ea2028;
  word-break: break-all;
}
.subtitle:after {
  content: "\2022";
  margin: 0 0.2rem;
  color: #636363;
}
.separator {
  border-top: 1px solid #e2e2e2;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.7));
}
#icon {
  font-size: 1em;
  background: -webkit-linear-gradient(#333, #ea2028);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -5px;
}
.hidden {
  visibility: hidden;
}
.flex {
  display: flex;
}
.social-media-icons-wrapper {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.topbar {
  border-bottom: 1px solid #ccc;
}
.topbar-content,
.mainbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.5rem;
}
.navbar-holder {
  box-shadow: 0px 2px 2px 2px #ccc;
}
.navbar{
  display: flex;
}
.navbar-list {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navbar-list-extra {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 0;
  margin: 0;
  border-right: 1px solid #ccc;
}
.navbar-list-extra li{
  border-left: 1px solid #ccc;
}
.navbar-list::-webkit-scrollbar {
  display: none;
}
.navbar-item {
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
#navbar-home-icon {
  font-size: 0.8rem;
  padding: 0;
}
.navbar-item:hover {
  color: #388e3c;
}
.navbar-item a {
  color: inherit;
}
.date-time,
.misc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
}
.header {
  margin: 0 auto;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 105;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.header.hidden {
  top: -100px;
}
.scroll-container-wrapper {
  padding-top: 95px;
}
.footer-container {
  background-color: #f5f5f5;
  border-top: 1px solid #e2e2e2;
  color: #333;
}
.footer-container-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  gap: 1rem;
}
.footer-content {
  overflow-wrap: break-word;
}
.editor-name {
  font-size: 1.2rem;
}
.wide-border {
  max-width: 1400px;
  margin: 0 auto;
}
.logo img {
  height: 60px;
  margin-right: 1rem;
}
.logo{
  margin-right: auto;
}
.header-button{
  font-size: 1rem;
  font-weight: bold;
  padding: 0.1rem 0.3rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.header-button a:hover{
  color: #388e3c;
}
.red-glow {
  color: #ff0000;
  animation: redGlow 1.5s ease-in-out infinite;
}

@keyframes redGlow {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}
.header-ad {
  display: flex;
}
.header-ad img {
  max-width: 600px;
  max-height: 90px;
  align-items: center;
}
.squre-ad {
  width: 100%;
  margin-bottom: 0.5rem;
}
.header-ad-small {
  display: flex;
  margin: 0.5rem;
}
.header-ad-small img {
  max-width: 830px;
  width: 100%;
  height: fit-content;
}
.main-container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
}
.container-card {
  margin: 0 auto;
  background-color: #f5f5f5;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  max-width: calc(100vw - 2rem);
}
.text-card {
  padding: 5px;
}
.image-card {
  position: relative;
  display: inline-block;
}
.image-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.container-card-child {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.container-card-child.reverse {
  flex-direction: row-reverse;
}
.reverse .image-card-child {
  width: 70%;
}
.text-card-child {
  width: 60%;
}
.image-card-child {
  width: 36%;
}
.image-card-child img {
  width: 100%;
  border-radius: 5px;
}
.container-card-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: #f5f5f5;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}
.container-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: #f5f5f5;
}
.container-card-box-child {
  max-width: 32%;
}
.main-grid-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.main-grid-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}
.main-grid-3 {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-grid-4 {
  grid-column: 1 / 3;
  grid-row: 2 / 2;
}
.main-grid-5 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.main-grid-6 {
  grid-column: 2 / 4;
  grid-row: 3 / 4;
}
.main-grid-7 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
.main-grid-8 {
  grid-column: 1 / 5;
  grid-row: 4 / 5;
}
.main-grid-9 {
  grid-column: 1 / 3;
  grid-row: 5 / 6;
}
.main-grid-10 {
  grid-column: 3 / 5;
  grid-row: 5 / 6;
}
.main-grid-11 {
  grid-column: 1 / 2;
  grid-row: 6 / 7;
}
.main-grid-12 {
  grid-column: 2 / 3;
  grid-row: 6 / 7;
}
.main-grid-13 {
  grid-column: 3 / 4;
  grid-row: 6 / 7;
}
.main-grid-14 {
  grid-column: 4 / 5;
  grid-row: 6 / 7;
}
.main-grid-15 {
  grid-column: 1 / 3;
  grid-row: 7 / 8;
}
.main-grid-16 {
  grid-column: 3 / 5;
  grid-row: 7 / 8;
}
.container-title {
  padding-bottom: 0.2rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 2px solid #b32819;
}
.container-box-wrapper-video {
  display: flex;
  gap: 0.5rem;
  overflow: scroll;
}
.container-box-wrapper-video::-webkit-scrollbar {
  display: none;
}
.container-card-wrapper-video {
  min-width: 250px;
}
.scroll-container {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
}
.latest-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.menu-link {
  padding-bottom: 0.5rem;
}
.flex .image-card {
  width: 250%;
}
.container-card-box-child-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-between;
}
.news-container-grid {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 28%;
  grid-template-rows: auto auto;
  grid-column-gap: 2.5rem;
  align-items: start;
}
.news-container {
  background-color: #f5f5f5;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 1rem;
}
.news-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
}
.news-category {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: underline 5px;
  text-underline-offset: 5px;
  color: #0f9d58;
}
.news-title {
  font-size: 1.5rem;
  padding: 1rem 0;
  line-height: 2rem;
}
.news-subtitle {
  font-size: 1.2rem;
  padding: 1rem 0 0;
  line-height: 1.5rem;
  color: #636363;
}
.featured-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
.featured-image img {
  max-width: 700px;
  height: auto;
}
.featured-image-caption {
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 0;
  background-color: #fff;
  max-width: 700px;
  width: 100%;
  border: 1px solid #e2e2e2;
}
.news-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.news-content {
  max-width: 700px;
  width: 100%;
}
.news-content p {
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 1rem 0;
}
.news-content p iframe {
  display: flex;
  width: 90% !important;
  height: auto !important;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}
.news-grid-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.news-grid-2 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.news-grid-3 {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.article-link:hover .image-card img,
.article-link:hover .image-card-child img {
  opacity: 0.8;
}
.article-link:hover .text-card h1,
.article-link:hover .text-card-child h1 {
  color: #0f9d58;
}
.category-container-grid {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 28%;
  grid-template-rows: auto auto;
  grid-column-gap: 2.5rem;
}
.category-container {
  background-color: #f5f5f5;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  padding: 1rem;
}
.category-container-card-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.5rem;
  background-color: #f5f5f5;
}
.category-container-card-box-child {
  width: 32%;
}
.latest-container-card-box-child{
  width: 19%
}
.news-time-social-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
}
.news-social-media-wrapper {
  display: flex;
  gap: 0.5rem;
  z-index: 100;
}
.category-grid-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.category-grid-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.latest-grid{
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.hamburger-menu {
  height: 40px;
  width: 30px;
  margin-left: 0.5rem;
  position: relative;
  z-index: 102;
  line-height: 0;

}
.hamburger-menu span {
  height: 3px;
  width: 100%;
  background-color: #4c4c4c;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}
.hamburger-menu span:nth-child(1) {
  top: 25%;
}
.hamburger-menu span:nth-child(3) {
  top: 75%;
}
.off-screen-menu {
  background-color: #fff;
  height: 100vh;
  width: 100%;
  max-width: 450px;
  position: fixed;
  top: 0;
  right: -450px;
  text-align: center;
  font-size: 3rem;
  transition: 0.3s ease;
  z-index: 101;
  overflow: scroll;
}
.off-screen-menu-content {
  width: 100%;
  padding-top: 105px;
}
.off-screen-menu-content ul {
  text-align: left;
  padding: 1rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid #ccc;
}
.off-screen-menu-content li {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  width: 40%;
}
.off-screen-menu.active {
  right: 0;
}
.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-date-time{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 1.2rem 0.5rem;
  border-top: 1px solid #ccc;
}
.mobile-search {
  display: flex;
  box-shadow: 0 0 3px 3px #e2e2e2;
  border: 2px solid #ccc;
  border-radius: 10px;
  margin: 0 1rem 0.5rem;
}
.mobile-search input {
  height: 1.5rem;
  padding: 0.5rem;
  font-size: 1rem;
  outline: none;
  flex-grow: 2;
  border: none;
  border-radius: 10px;
}
.mobile-search button {
  background-color: #0f9d58;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0 1rem;
  margin: 0.1rem;
}
.pagination ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.pagination li {
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  padding: 0.2rem 0.5rem;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  min-width: 2rem;
  text-align: center;
}
.pagination li:hover {
  color: #0f9d58;
  box-shadow: 0 0 3px 3px #e2e2e2;
  cursor: pointer;
}
.pagination a {
  color: #000;
  font-size: 1rem;
  font-weight: bold;
}
.pagination a:hover {
  color: #0f9d58;
}
@media (min-width: 1024px) {
  .news-title {
    font-size: 2.5rem;
    padding: 1rem 0;
    line-height: 3rem;
  }
  .news-category {
    font-size: 1.5rem;
  }
}
@media (min-width: 450px) {
  .copyright-break {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .header-ad img {
    max-width: 500px;
  }
}
@media screen and (max-width: 834px) {
  .header-ad img {
    display: none;
  }
  .logo img {
    max-height: 40px;
  }
  .topbar-content {
    display: none;
  }
  .topbar {
    padding: 0.2rem;
  }
  .main-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .news-container-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .category-container-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .container-card-box-child {
    max-width: 48%;
  }
  .container-card {
    gap: 1rem;
  }
  .footer-container-child {
    flex-direction: column;
  }
  .news-container-grid {
    grid-template-columns: auto;
  }
  .category-container-grid {
    grid-template-columns: auto;
  }
  .category-container-card-box-child {
    width: 48%;
  }
  .latest-container-card-box-child{
    width: 32%
  }
  .category-container {
    padding: 0.5rem;
  }
  .category-container-card-box {
    padding: 0;
  }
  .navbar-list-extra{
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .container-card-wrapper {
    flex-direction: column;
  }
  .flex .image-card {
    width: 100%;
  }
  .container-card-box-child-wrapper {
    flex-direction: column;
  }
  .container-card-national {
    flex-direction: column;
  }
  .national-card-wrapper:first-child {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e2e2;
  }
  .news-time-social-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 460px) {
  .international-container-card-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
  }
  .international-card-wrapper {
    flex-direction: column;
  }
  .international-card-wrapper .container-card-wrapper {
    width: 45%;
  }
  .international-container-card-box.first > div:nth-child(1) {
    max-width: 100%;
  }
  .latest-container-card-box-child{
    width: 48%;
  }
}
@media screen and (min-width: 834px) {
  .hamburger-menu {
    display: none;
  }
  .header-ad-small {
    display: none;
  }
  .scroll-container-wrapper {
    padding-top: 145px;
  }
  .header-button{
   display: none;
  }
}
@media screen and (min-width: 600px) {
  .national-card-wrapper:first-child {
    padding-right: 0.5rem;
    border-right: 1px solid #e2e2e2;
    width: 150%;
  }
}
.text-scroll-container {
  background: #f5f5f5;
  color: #000;
  font-size: 1rem;
  text-shadow: 2px 2px 5px #d1c6b1;
  overflow: hidden;
  margin: 0.5rem 0 0;
  display: flex;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}
.scroll-title {
  background: #f5f5f5;
  padding: 5px 10px;
  font-weight: bold;
  z-index: 100;
  border-right: 1px solid #e2e2e2;
  color: #0f9d58;
}
.scroll-text:hover {
  animation-play-state: paused;
}
.scroll-text {
  white-space: nowrap;
  padding: 5px;
  z-index: 10;
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  -moz-animation: scroll-text-animation 55s linear infinite;
  -webkit-animation: scroll-text-animation 55s linear infinite;
  animation: scroll-text-animation 55s linear infinite;
}
.scroll-text-link {
  color: #000;
  text-decoration: none;
  font-size: inherit;
}
.scroll-text-link:hover {
  color: #0f9d58;
}
.scroll-text-link:not(:last-child)::after {
  content: " \25CF";
  font-size: 1.2rem;
  color: #0f9d58;
  padding: 5px;
}
/* for Firefox */
@-moz-keyframes scroll-text-animation {
  from {
    -moz-transform: translateX(0%);
  }
  to {
    -moz-transform: translateX(-100%);
  }
}

/* for Chrome */
@-webkit-keyframes scroll-text-animation {
  from {
    -webkit-transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
  }
}

@keyframes scroll-text-animation {
  from {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.container-card-national {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  background-color: #f5f5f5;
}
.national-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
}
.container-card-international {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-around;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
}
.international-container-card-box {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}
.round-icon {
  display: inline-block;
  padding: 0.5rem;
  font-size: 1.2rem;
  width: 1.2rem;
  text-align: center;
  border-radius: 50%;
}
.round-icon:hover {
  opacity: 0.9;
  cursor: pointer;
}
.round-icon.fa-brands.fa-facebook-f {
  background: #1877f2;
  color: #fff;
}
.round-icon.fa-brands.fa-x-twitter {
  background: #000;
  color: #fff;
}
.round-icon.fa-brands.fa-linkedin-in {
  background: #0072b1;
  color: #fff;
}
.round-icon.fa-brands.fa-facebook-messenger {
  background: linear-gradient(0deg, rgba(0, 120, 255, 1) 15%, rgba(0, 198, 255, 1) 90%);
  color: #fff;
}
.round-icon.fa-brands.fa-whatsapp {
  background: #4ac959;
  color: #fff;
}
.round-icon.fa-solid.fa-envelope {
  background: #4c4c4c;
  color: #fff;
}
.round-icon.fa-solid.fa-link {
  background: #000;
  color: #fff;
}
.round-icon.plus-minus {
  background: #4c4c4c;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}
.plus-minus.disable {
  background: #ccc;
}
.plus-minus-text {
  margin: -0.2rem;
}
.round-icon.fa-solid.fa-print {
  background: #808080;
  color: #fff;
}
.round-icon.fa-solid.fa-share {
  background: #198754;
  color: #fff;
}
.round-icon.fa-brands.fa-youtube {
  background: #ff0000;
  color: #fff;
}
.round-icon.fa-brands.fa-instagram {
  background: linear-gradient(115deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
}
/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.share-all-content {
  visibility: hidden;
  width: 260px;
  background-color: #fff;
  color: #555;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  top: 125%;
  right: -15%;
  margin-left: -80px;
}

/* Popup arrow */
.share-all-content::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 7%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ccc transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.share-all-content ul {
  margin: 0;
  padding: 0 0.5rem;
  font-size: 1rem;
  font-weight: normal;
  font-family: "Noto Serif Bengali", serif;
}
.share-all-button-text {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem;
}
.epaper-widget {
  background-color: #0f9d58;
  justify-content: space-around;
}
.epaper-widget img {
  border-radius: 0;
}
.epaper-widget .container-title {
  border-bottom: 2px solid #fff;
  color: #fff;
  justify-content: center;
}
