* {
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noticia Text', serif;
}

button,
input,
textarea,
select {
  font-family: 'Noticia Text', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noticia Text', serif;
}

:root {
  --brandColor: #0e3293;
  --light: 'var(';
  --fontBold: 600;
  --black: #000000;
  --borderColor: #d3d3d34a;
  --padding-right: 6px;
}

section {
  /* background-color: rgba(218, 218, 218, 0.466); */
}

/* WP styles */

.wp-block-image img {
  border-radius: 5px;
}

li {
  list-style: none;
}
button {
  font-family: 'Noticia Text', serif;
}
.none {
  display: none;
}

.append-style {
  font-size: 30px !important;
}

.link {
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
.link:hover {
  color: #0e3293;
}
.title {
  display: flex;
  justify-content: flex-start;
  grid-gap: 5px;
  align-items: center;
  background: white;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  padding-bottom: 5px;
}
.title:hover {
}
.title h2 {
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.title h2:hover {
}
.title img {
  width: 16px;
  margin-top: -4px;
}
/* .title h2::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 10px;
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background: var(--brandColor);
} */
.title a {
}

.header-section {
  padding-bottom: 10px;
}

/* Header section
================== */
.header-top-section {
  padding: 20px 0px;
  background-color: white;
}
.header-top-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  align-items: center;
}
.header-item {
  width: 100%;
}
.header-left {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.header-search-and-menu {
  display: flex;
  grid-gap: 10px;
  align-items: center;
}
.header-logo {
  width: 250px;
  height: auto;
  max-width: 100%;
  margin: 0px auto;
}
.header-logo img {
  width: 100%;
  height: auto;
}
.header-social {
  display: flex;
  justify-content: flex-end;
}
.header-social ul {
  display: flex;
  justify-content: flex-start;
  grid-gap: 10px;
}
.header-social li a img {
  width: 20px;
  filter: opacity(0.6);
}
.header-date {
  font-weight: 400;
  font-size: 17px;
  color: gray;
}
.header-social a {
}
.header-social svg {
  fill: gray;
  transition: all 0.3s ease-in-out;
}
.header-social svg:hover {
  fill: #0e3293;
}
.menu-icon svg {
  fill: gray;
  cursor: pointer;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  grid-gap: 20px;
}
.header-dropdown {
  display: flex;
  justify-content: flex-end;
  grid-gap: 5px;
}
.header-dropdown select {
  padding: 2px 5px;
  border: 1px solid var(--borderColor);
  border-radius: 4px;
  font-family: 'Noticia Text', serif;
  font-size: 16px;
  color: gray;
}
.header-dropdown select:focus {
  border: unset;
}
.header-dropdown label {
  font-weight: bold;
  font-size: 18px;
  color: gray;
}
/* Navigation section
===================== */
.navbar-section {
  position: relative;
  transition: all 0.3s ease-in-out;
  border: 1px solid #d3d3d382;
  border-left: unset;
  border-right: unset;
  margin-bottom: 12px;
  border-bottom: 2px solid #d3d3d382;
}
.navbar-section.activeMenu {
  position: fixed;
  top: -1px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 999;
  background: white;
  box-shadow: -1px 1px 11px 0px #0000005c;
  height: 50px;
  display: flex;
  align-items: center;
}
.navbar-wrapper {
  border-radius: 4px;
  padding: 0px 10px;
  align-items: center;
  height: 47px;
  justify-content: center;
}
.navbar-megamenu {
  width: 23px;
}
.navbar-search {
  width: 28px;
}
.navbar-megamenu img {
  cursor: pointer;
  width: 100%;
  filter: opacity(0.6);
}
.navbar-search img {
  width: 100%;
  height: auto;
  cursor: pointer;
  filter: opacity(0.6);
}
.search-404 {
  padding: 60px 20px;
  background: #fff;
  border: 1px solid var(--borderColor);
  border-radius: 5px;
}
.search-404-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-wrap {
  position: absolute;
  top: -20px;
  right: 0px;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  left: 93px;
  width: 0px;
  display: flex;
  width: 375px;
}
.search-wrap.active {
  visibility: visible;
  opacity: 1 !important;
  top: 60px;
  left: 335px;
}
.search-excerpt {
  display: flex;
  position: absolute;
  right: 4px;
  top: 3px;
}
.search-wrap input {
  width: 100%;
  padding: 5px;
  border-radius: 4px;
  color: var(--black);
  font-size: 20px;
  font-family: 'Noticia Text', serif;
  outline: none;
  border: 1px solid rgb(221, 221, 221);
  height: 30px;
  font-size: 17px;
}
.search-wrap button {
  outline: none;
  background-color: darkslategray;
  color: white;
  padding: 4px 10px;
  font-family: 'Noticia Text', serif;
  font-size: 17px;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid white;
  cursor: pointer;
}
.search-wrap button:hover {
  background: black;
}
.cancel {
  width: 18px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  right: -20px;
  top: -11px;
}

/* menus */
.navbar-menus {
}
.navbar-menus ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.navbar-menus > ul > li {
  padding: 0px 16px;
  border-right: 1px solid var(--borderColor);
}
.navbar-menus > ul > li:last-child {
  border-right: none;
}
.navbar-menus > ul > li > a {
  font-weight: bold;
  text-decoration: none;
  color: var(--black);
  font-family: 'Noticia Text', serif;
  font-size: 19px;
}
.navbar-menus > ul > li > a:hover {
  color: #e62226;
}

/* Left sidebar */

/* Right sidebar section
========================= */
.right__sidbar__section {
}
#LeftSidebar {
  /* display: none; */
}
.main__right__sidebar__container {
  position: fixed;
  top: 0px;
  left: -290px;
  width: 290px;
  background: white;
  height: 100vh;
  z-index: 999;
  overflow-y: scroll;
  transition: 0.4s;
}
.main__right__sidebar__container.active {
  left: 0px;
}
/* .main__right__sidebar__container.remove {
  left: -290px;
} */
#stickyLogo {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
}
#stickyLogo img {
  width: 200px;
  height: auto;
}
#stickyLogo.activeLogo {
  visibility: visible;
  opacity: 1;
}
.right__sidebar__header {
  background: rgb(255 255 255);
  box-shadow: 0px 0px 8px 0px gray;
  margin-bottom: 10px;
  padding: 10px 5px;
  position: sticky;
  top: 0px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}
.right__sidebar__logo {
  width: 150px;
}
.right__sidebar__logo img {
  width: 100%;
  height: 100%;
}
.right__sidebar__menu__wrapper {
}
.right__sidebar__menu__wrapper ul {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.right__sidebar__menu__wrapper li {
}
.right__sidebar__menu__wrapper a {
  font-size: 19px;
  padding: 5px 20px;
  padding-left: 22px;
  border-bottom: 2px solid #d3d3d34a;
  display: block;
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
}
.right__sidebar__menu__wrapper a:hover {
  background: #8080801f;
}

.right__sidebar__footer {
  padding: 16px;
}
.right__sidebar__footer h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: lightseagreen;
}
.right__sidebar__footer li img {
  width: 20px;
}
.right__sidebar__footer ul {
  display: flex;
  justify-content: flex-start;
  grid-gap: 0px;
}
.sidebar-social > ul {
  display: flex;
  align-items: center;
}
.sidebar-social > ul > li {
  list-style: none;
  padding: 0px 5px;
}
.sidebar-social > ul > li > a {
}
.sidebar-social > ul > li > a > img {
  width: 15px;
  background: #303030;
  padding: 7px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.sidebar-social > ul > li > a > img:hover {
  transform: translateY(-4px);
  background: lightseagreen;
}

.cross__icon {
  background: red;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  box-shadow: 0px 0px 8px 0px gray;
  cursor: pointer;
  width: 25px;
  height: 25px;
}
.cross__icon img {
  width: 100%;
}
.cross__icon svg {
  color: white;
  fill: white !important;
}

/* Click to top */

.ClickTop {
  background: var(--brandColor);
  color: white;
  position: fixed;
  bottom: 16px;
  right: 0px;
  width: 35px;
  height: 34px;
  /* border-radius: 5px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  background: var(--brandColor);
}
.ClickTop.active {
  bottom: 32px;
  opacity: 1;
}
.ClickTop i {
  font-size: 17px;
  z-index: 999;
  margin-top: -4px;
}
/* End Click to top */

/* Stickey menu */
.stickyMenu {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 0px 3px 0px rgb(80, 80, 80);
  z-index: 999;
  padding: 3px 0px;
  transition: all 0.4s linear;
}

/* Hero Section
================ */
.hero-section {
  margin-bottom: 20px;
}
.hero-wrappper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 20px;
  position: relative;
}
.lead-news-container {
  width: 45%;
  box-shadow: 0px 2px 8px 0px #d3d3d36b;
  height: fit-content;
}
.lead-news-wrapper {
  background: white;
  /* box-shadow: 0px 2px 8px 0px #d3d3d36b; */
  width: 100%;
  height: -webkit-fill-available;
  border-radius: 3px;
  border: 1px solid var(--borderColor);
}
.lead-news-thumb {
  width: 100%;
  height: 270px;
  border-radius: 3px;
}
.lead-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.lead-news-content {
  padding: 10px;
}
.lead-news-content a {
  text-decoration: none;
  color: var(--black);
}
.lead-news-content h1 {
  font-size: 31px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lead-news-content p {
  font-size: 16px;
  margin-top: 5px;
}
.lead-news-content .date {
  color: gray;
}
/* sub lead news */
.sub-lead-news-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  grid-gap: 9px;
  width: 100%;
}
.sub-lead-news-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  grid-gap: 15px;
  background: white;
  padding: 10px;
  border-radius: 3px;
  /* box-shadow: 0px 2px 8px 0px #d3d3d36b; */
  height: -webkit-fill-available;
  border: 1px solid var(--borderColor);
}
.sub-lead-news-thumb {
  width: 80px;
  height: 80px;
}
.sub-lead-news-content {
  width: 100%;
  margin-top: 5px;
  padding-right: 5px;
}
.sub-lead-news-content h2 {
  font-size: 19px;
  line-height: 24px;
  color: var(--black);
  font-weight: 700;
}
.sub-lead-news-content a {
  text-decoration: none;
}
.sub-lead-news-item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0px 1px 1px 0px lightgrey;
  overflow: hidden;
}

.lead-sub-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
/* Swiper bullet */
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
  width: 10px;
  height: 10px;
  background: rgb(153, 153, 153);
  background: -moz-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: -o-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  background: linear-gradient(
    to bottom,
    rgb(153, 153, 153) 0%,
    rgb(225, 225, 225) 100%
  );
  filter: progid:dximagetransform.microsoft.gradient( startcolorstr="rgb(153, 153, 153)", endcolorstr="rgb(225, 225, 225)",gradienttype=0 );
  border: 3px solid rgb(229, 229, 229);
  border-radius: 50%;
  cursor: pointer;
  box-sizing: content-box;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 200px !important;
}
.swiper-pagination-bullet-active {
  background: var(--brandColor) !important;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
  font-size: 18px;
  background: var(--brandColor);
  padding: 10px;
  color: white;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-prev::after,
.swiper-container-rtl .swiper-button-next::after {
  content: 'prev';
  font-size: 18px;
  background: var(--brandColor);
  padding: 10px;
  color: white;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-side-wrapper {
  width: 100%;
  align-items: unset;
  grid-gap: 20px;
}
.latest-popular-wrap {
  width: 100%;
  background: white;
}
.hero-sidebar {
  width: 100%;
}
.hero-sidebar-ads {
  width: 100%;
  height: auto;
}
.hero-sidebar-ads img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.hero-with-sub-lead-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: flex-start;
  grid-gap: 15px;
}
/* latest and popular */

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Style the buttons inside the tab */
.tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px 0px;
  transition: 0.3s;
  font-size: 21px;
  width: 100%;
  background: white;
  font-weight: 700;
  font-family: 'Noticia Text', serif;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--brandColor);
  color: white;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

/* tabs wrapper */
.tab-wrapper {
}
.tab-wrapper > ul {
  overflow-y: scroll;
  height: 482px;
}
.tab-wrapper > ul > li {
  list-style: none;
  border-bottom: 1px solid var(--borderColor);
  padding: 7px 0px;
}
.tab-wrapper > ul > li:hover {
  background: #8080800e;
}
.tab-wrapper > ul > li:last-child {
  border-bottom: none;
}
.tab-wrapper > ul > li > a {
  font-size: 19px;
  text-decoration: none;
  color: var(--black);
  font-family: 'Noticia Text', serif;
  font-weight: 700;
}
.tab-wrapper > ul > li > a:hover {
}
.tab-item-content {
  padding: 8px;
  padding-top: unset;
  padding-bottom: 5px;
}

/* width */
.tab-wrapper > ul::-webkit-scrollbar {
  width: 8px;
}

/* Track */
.tab-wrapper > ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.tab-wrapper > ul::-webkit-scrollbar-thumb {
  background: rgb(156, 155, 155);
  border-radius: 30px;
}

/* Handle on hover */
.tab-wrapper > ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Sport light */
.sportlight-wrapper {
  margin-top: 10px;
  background: white;
  margin-bottom: 10px;
}
.spotlight-thumb {
  height: 185px;
}
.sportlight-content {
  padding: 23px 10px;
  /* box-shadow: 0px 2px 8px 0px #d3d3d36b; */
  border: 1px solid rgba(211, 211, 211, 0.308);
  border-radius: 5px;
  min-height: 260px;
  overflow: hidden;
}
.sportlight-content a {
  text-decoration: none;
  color: var(--black);
}
.sportlight-content h2 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}
.sportlight-content .data {
}
.sportlight-content p {
  font-size: 16px;
  margin-top: 1px;
}

/* Country tabs section
======================== */
.country-tabs-section {
  padding: 30px 0px;
  background: white;
  padding-top: unset;
  margin-bottom: 300px;
  margin-top: 20px;
}
.bg-color {
  background-color: var(--brandColor);
  height: 170px;
  position: relative;
}
.country-tab-header {
  background-color: var(--brandColor);
}
.today-popular {
  position: absolute;
  top: 50px;
}
.today-popular h2 {
  font-weight: bold;
  font-size: 28px;
  margin-left: 28px;
  padding: 0px;
  color: white;
}

/* Title Glowing */
.intro-banner-vdo-play-btn {
  height: 10px;
  width: 10px;
  position: absolute;
  top: 16px;
  left: 5px;
  border-radius: 100px;
}
.pinkBg {
  background-color: white !important;
  background-image: linear-gradient(90deg, white, white);
}
.intro-banner-vdo-play-btn .ripple {
  position: absolute;
  width: 40px;
  height: 40px;
  left: -15px;
  top: -15px;
  opacity: 0;
  border-radius: 100px;
  -webkit-animation: ripple 1.8s infinite;
  animation: ripple 1.8s infinite;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.intro-banner-vdo-play-btn .ripple:nth-child(2) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.intro-banner-vdo-play-btn .ripple:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.country-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  width: 100%;
  position: absolute;
  top: -60px;
  left: 0px;
}
.country-tabs-item {
  width: 100%;
  box-shadow: 0px 3px 4px 0px #d3d3d359;
  border: 1px solid #d3d3d35c;
  overflow: hidden;
  border-radius: 2px;
}
.tabs-item-thumb {
  width: 100%;
  height: 140px;
}
.tabs-item-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.country-tabs-item h2 {
  margin-top: 7px;
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 5px;
}
.country-tabs-item h3 a {
  color: var(--light);
  text-decoration: none;
}

/* Featured news section
========================= */
.featured-section {
  padding-top: 30px;
}
.featured-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  border-bottom: 1px solid var(--borderColor);
  padding-bottom: 20px;
}
.sub-featured-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
.for-mobile-wrapper {
  background: white;
}
.box {
  width: 320px;
  background: white;
  padding: 3px;
}
.box-thumb {
  width: 100%;
  height: 173px;
}
.box-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.box-content {
  padding: 10px 0px;
  width: 100%;
}
.box-content h2 {
  font-size: 21px;
  line-height: 26px;
  margin: 3px 0px;
}
.box-content a {
  text-decoration: none;
  color: #000000;
}
.bangladesh-box-content {
}
.box-content span {
  color: var(--light);
}
.box-content p {
}
.box-mini-thumb {
}
.box-mini-content h2 {
}
.featured-lead-news-box {
  background: white;
}
.featured-lead-news-thumb {
  width: 100%;
  height: 300px;
}
.featured-lead-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.featured-lead-content {
  margin-top: 10px;
}
.featured-lead-content h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: 33px;
  margin: 5px 0px;
}
.featured-lead-content a {
  text-decoration: none;
  color: black;
}
.featured-lead-content span {
}
.featured-lead-content p {
  font-size: 17px;
}

/* Opinion Section
================= */

/* Opinion section
================== */
.opinion-section {
  padding: 30px 0px;
  padding-top: 10px;
}
.wow-soft-opinion-container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  grid-gap: 20px;
}
.wow-soft-opinion-wrapper {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
}
.wow-soft-bd-opinion-box {
  width: 100%;
  border: 1px solid var(--borderColor);
  padding: 20px;
  border-radius: 2px;
  padding-top: 40px;
}
.wow-soft-bd-opinion-box h4 {
  font-size: 25px;

  margin-bottom: 8px;

  color: gray;
}
.wow-soft-bd-opinion-box h2 {
  position: relative;

  left: -20px;

  font-size: 31px;

  margin-bottom: 15px;
}
.wow-soft-opinion-span {
  background: #001246;
  color: white;
  box-shadow: 10px 0 0 #001246, -10px 0 0 #001246;
  line-height: 42px;
}
.wow-soft-bd-opinion-box p {
  font-size: 20px;
}
.wow-soft-opinion-content {
}
.wow-soft-opinion-author-excerpt {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  margin-top: 15px;
}
.wow-soft-bd-opinion-thumb {
  width: 75px;
  height: 75px;
  overflow: hidden;
}
.wow-soft-bd-opinion-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.wow-soft-opinion-news-wrapper {
  display: flex;
  justify-content: flex-start;
  grid-gap: 10px;
  flex-direction: column;
}
.wow-soft-opinion-news-wrapper li {
  border-bottom: 1px solid #d3d3d385;
  padding-bottom: 10px;
}
.wow-soft-opinion-news-wrapper li:last-child {
  border-bottom: none;
}
.wow-soft-opinion-news-item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  grid-gap: 15px;
}
.wow-soft-opinion-news-thumb {
  width: 90px;
  height: 90px;
  overflow: hidden;
}
.wow-soft-opinion-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.wow-soft-news-content {
}
.wow-soft-news-content a {
  text-decoration: none;
}
.wow-soft-news-content h2 {
  font-size: 20px;

  color: black;

  margin-bottom: 5px;

  font-weight: 700;
}
.wow-soft-news-content h3 {
  margin-bottom: 5px;
  color: #34b8b5;
}
.wow-soft-opinion-author {
}
.wow-soft-opinion-author-content .author-line {
  width: 20px;
  height: 3px;
  background: #34b8b5;
  display: block;
  margin-top: 10px;
}
.wow-soft-opinion-author-content h5 {
  font-size: 20px;
}
.wow-soft-news-underline {
  width: 30px;
  height: 3px;
  background: #34b8b5;
  margin-bottom: 8px;
}

/* three column news section
============================ */
.three-column-section {
}
.featured-box-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  grid-gap: 10px;
}
.featured-box-wrapper {
  width: 100%;
}
.featured-box {
  min-height: 305px;
}
.featured-box h2 {
  margin-top: 8px;
  line-height: 28px;
  font-size: 23px;
  font-weight: 700;
}
.featured-box a {
}
.featured-box-thumb {
  width: 100%;
  height: 230px;
}
.featured-box-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.featured-box-list-container {
}
.featured-box-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  background: white;
  margin-top: 3px;
  grid-gap: 5px;
}
.featured-box-list-thumb {
  width: 170px;
  padding: 5px;
  height: 70px;
}
.featured-box-list-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.featured-content {
  width: 100%;
  padding: 5px;
}
.featured-content h2 {
  font-size: 19px;
  line-height: 23px;
}
.featured-content a {
}
.featured-content p {
  color: gray;
  font-size: 15px;
}

/* Four column section
======================= */

.mini-featured-box-wrapper {
  width: 100%;
}
.mini-featured-box {
  min-height: 214px;
}
.mini-featured-box h2 {
  margin-top: 8px;
  line-height: 23px;
  font-size: 20px;
}
.mini-featured-box a {
}
.mini-featured-box-thumb {
  width: 100%;
  height: 160px;
}
.mini-featured-box-thumb img {
  width: 100%;
  height: 100%;
}
.mini-featured-box-list-container {
}
.mini-featured-box-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: white;
  align-items: center;
  border-top: 1px solid var(--borderColor);
}
.mini-featured-box-list-thumb {
  width: 20px;
  padding: 5px;
  height: auto;
}
.mini-featured-box-list-thumb img {
  width: 100%;
  height: 100%;
  filter: opacity(0.5);
}
.mini-featured-content {
  width: 100%;
  padding: 5px;
}
.mini-featured-content h2 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.mini-featured-content a {
}

/* Sports and facebook section
============================= */
.SF-container {
  width: 100%;
}
.sports-wrapper {
  display: flex;
  justify-content: space-between;
  grid-gap: 30px;
}
.facebook-widget-wrapper {
  width: 30%;
}
.featured-box-list-thumb-sports {
  width: 180px;
  height: 80px;
}

/* Entertainment Section
======================== */

.entertainment-section {
  margin-top: 40px;
}
.entertainment-wrapper {
  grid-gap: 15px;
}
.entertainment-box {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.entertainment-title {
  position: absolute;
  background: orangered;
  left: 30%;
  right: 30%;
  text-align: center;
  padding: 2px;
  top: 0px;
  border-bottom: 2px solid #00000052;
  border-radius: 2px;
  z-index: 1;
}
.entertainment-title a {
  text-decoration: none;
  color: white;
  padding: 5px;
  font-size: 18px;
  font-weight: bold;
}
.entertainment-thumb {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 5px;
}
.entertainment-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.entertainment-thumb img:hover {
  -moz-transform: scale(1.1) rotate(0.02deg);
  -webkit-transform: scale(1.1) rotate(0.02deg);
  -ms-transform: scale(1.1) rotate(0.02deg);
}
.entertainment-content {
  position: absolute;
  bottom: 0px;
  z-index: 100;
  opacity: 1;
  left: 0px;
  right: 0px;
  padding: 15px;
}
.entertainment-content::before {
  content: '';
  position: absolute;
  top: -44px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(
    180deg,
    rgb(42 41 41 / 0%),
    #000000b3,
    #000
  );
  z-index: -1;
  left: 0px;
  width: 100%;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.entertainment-content h2 {
  line-height: 26px;
  font-size: 20px;
  margin-bottom: 7px;
}
.entertainment-content a {
  color: white;
}
.entertainment-content a:hover {
  color: orangered;
}
.entertainment-content p {
  color: var(--textColor);
}

/* Footer
============ */
.up-arrow {
  width: 30px;
  height: 30px;
  position: fixed;
  right: 22px;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 10px 0px #0d1454;
  z-index: 999;
}
.up-arrow.active {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.up-arrow img {
  width: 25px;
  height: auto;
  background: var(--brandColor);
  border-radius: 50%;
  padding: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.up-arrow img:hover {
  transform: translateY(-5px);
}

.footer-top-section {
}
.footer-menus {
  border-bottom: 1px solid black;
  padding: 37px 0px;
}
.footer-menus > ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-menus > ul > li {
  list-style: none;
}
.footer-menus > ul > li > a {
  color: white;
  padding: 6px 22px;
  background: transparent;
  margin: 0px 10px;
  text-decoration: none;
  font-size: 19px;
  border: 1px solid #699;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  border-radius: 3px;
}
.footer-menus > ul > li > a:hover {
  background: black;
  transform: translateY(-15px);
}

/* footer middle */
.footer-middle-section {
}
.footer-middle-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 20px;
  padding: 20px 0px;
  border-bottom: 1px solid black;
}
.footer-logo {
  width: 200px;
  height: auto;
  margin: 0px auto;
}
.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-social {
}
.footer-social > ul {
  display: flex;
}
.footer-social > ul > li {
  list-style: none;
  padding: 0px 5px;
}
.footer-social > ul > li > a {
}
.footer-social > ul > li > a > img {
  width: 25px;
  transition: all 0.3s ease-in-out;
}
.footer-social > ul > li > a > img:hover {
  transform: translateY(-5px);
}
.footer-contact-section {
}
.footer-contact-wrapper {
  padding: 25px 0px;
  text-align: center;
}
.footer-contact-wrapper li:first-child {
  font-weight: bold;
  font-size: 25px;
  color: lightseagreen;
  margin-bottom: 10px;
}
.footer-contact-wrapper li {
  color: white;
  font-size: 20px;
}
.footer-end-section {
  border-top: 1px solid black;
}
.footer-end {
  padding: 5px 0px;
}
.footer-end > li {
  color: white;
}
.footer-company {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 6px;
}
.footer-company img {
  width: 65px;
  transition: all 0.3s ease-in-out;
}
.footer-company img:hover {
  transform: translateY(-3px);
}
.footer-company span {
}

/* Video section
================= */
.video-section {
}
.video-wrapper {
}
.video-item {
  position: relative;
  background: white;
  padding: 3px;
}
.video-play {
  position: absolute;
  top: 17px;
  left: 19px;
  width: 37px;
  height: 37px;
  animation: demo_play_btn 3s infinite ease-in-out;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.video-item:hover .video-play {
  left: 40%;
  top: 30%;
}

@keyframes demo_play_btn {
  0% {
    box-shadow: 0 0 0 0 #c30c0c, 0 0 0 0 #ff0300;
  }
  40% {
    box-shadow: 0 0 0 30px rgb(255 255 255 / 7%), 0 0 0 0 #c30c0c;
  }
  80% {
    box-shadow: 0 0 0 30px rgba(255, 109, 74, 0),
      0 0 0 30px rgba(255, 109, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 74, 0), 0 0 0 30px rgba(255, 109, 74, 0);
  }
}

.video-play img {
  width: 100%;
  height: 100%;
}
.video-thumb {
  width: 100%;
  height: 200px;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 4px;
}
.video-item h2 {
  font-size: 20px;
  line-height: 20px;
  margin-top: 8px;
  padding: 8px 5px;
}

/* Category page
================
================ */

/* featured section */
.category-section {
}
.main-category {
  width: 100%;
  grid-gap: 35px;
}
.category-featured-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 5fr 3fr;
}
.category-featured-lead-news-box {
  border-right: 1px solid #d3d3d34a;
  padding-right: 15px;
  margin-right: 5px;
}
.category-box {
  width: 100%;
  background-color: white;
  margin-bottom: 10px;
}

.category-box-wrap li {
  border-bottom: 1px solid #d3d3d34a;
  padding-bottom: 5px;
}
.category-box-wrap li:last-child {
  border-bottom: none;
  padding-top: 15px;
}

.category-box a {
}
.category-box h2 {
  font-size: 24px;

  line-height: 28px;

  margin-bottom: 6px;
}
.category-box span {
}
.category-box p {
  margin-top: 3px;
  font-size: 18px;
}

.categroy-featured-lead-news-thumb {
  height: 270px;
}
.category-box-wrap {
}
aside {
  width: 500px;
  position: sticky;
  top: 0px;
}
.sidebar-wrapper {
  position: sticky;
  bottom: 20px;
  top: 65px;
}
.category-wrap {
  width: 100%;
}
/* list news */
.list-news-wrappper {
  flex-direction: column;
}
.list-news-box {
  background: white;
  display: flex;
  width: 100%;
  grid-gap: 20px;
  border-top: 1px solid #d3d3d34a;
  padding-top: 20px;
  padding-bottom: 10px;
}
.list-news-box-thumb {
  width: 410px;
  height: 170px;
}
.list-news-box-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.list-news-box-content {
  width: 100%;
}
.list-news-box-content h2 {
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 10px;
}
.list-news-box-content p {
  font-size: 19px;
  color: darkslategray;
}
.list-news-box-content p:nth-last-child(1) {
  color: gray;
  font-size: 16px;
}

.hero-sidebar-top-ads .wp-block-image {
  margin-top: 0px !important;
}

/* Single page
==============
============== */
.page-wrapper {
  max-width: 80%;
  margin: 0 auto;
}
.main-single {
  grid-gap: 30px !important;
  margin-top: 10px;
}
.single-wrap {
  background: white;
  width: 100%;
  border-bottom: 1px solid #e9e9e9b5;
  padding-bottom: 20px;
}
.single-title {
}
.page-title {
  padding: 30px;
  border-radius: 3px;
  border: 1px solid var(--borderColor);
  background: #f8f9fa;
  margin: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-title h1 {
  font-size: 35px;
  font-weight: 700;
}
.single-title h1 {
  font-size: 43px;
  font-weight: 700;
}
.single-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 7px;
  margin-bottom: 10px;
}
.single-date img {
  width: 17px;
  height: 17px;
}
.single-date p {
  font-size: 17px;
}
.single-thumb {
  width: 100%;
  height: 450px;
  margin: 20px 0px;
  margin-top: 10px;
}
.single-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
/* content area */
.single-content-area {
  margin-top: 13px;
  width: 100%;
}
.single-content-area p {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 30px;
}
.single-content-area img {
  width: 100%;
  height: auto;
  margin: 15px 0;
  border-radius: 4px;
}

.single-content-area h2,
.single-content-area h3,
.single-content-area h4,
.single-content-area h5,
.single-content-area h6 {
  font-weight: 700 !important;
  margin: 12px 0px;
}

.single-content-area h2 {
  font-size: 32px;
}

.single-content-area h3 {
  font-size: 28px;
}

.single-content-area h4 {
  font-size: 20px;
}

.single-content-area h5 {
  font-size: 18px;
}

.single-content-area h6 {
  font-size: 16px;
}

.single-content-area blockquote {
  background: #f6f6f6;
  padding: 25px 20px;
  border-top: 3px solid orangered;
  box-shadow: 0px 0px 2px 0px lightgrey;
  margin: 13px 0px;
}

.single-content-area blockquote p {
  font-size: 22px;
  font-weight: 600;
}

.single-content-area iframe,
.single-content-area video {
  width: 100%;
  height: 450px;
  margin: 20px 0;
  border: none;
  border-radius: 4px;
}

.single-content-area a {
  border-bottom: 2px dotted black;
  text-decoration: none;
  color: var(--brandColor);
  margin: 0px 1px;
  font-weight: 600;
}

.single-content-area a:hover {
  color: green;
}

.single-content-area ul,
.single-content-area ol {
  margin: 20px 0;
  padding-left: 25px;
}
.single-content-area ul li,
.single-content-area ol li {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
}
.single-content-area ul li::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--brandColor);
  border-radius: 50%;
}
.single-content-area ol {
  counter-reset: list-counter;
  list-style: bengali;
}
.single-content-area ol li {
  counter-increment: list-counter;
}
.single-content-area ol li::before {
  content: counter(list-counter, bengali) '.';
  position: absolute;
  left: -15px;
  color: var(--brandColor);
  font-weight: 600;
}

/* End of single content area */

.excerpt-area {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.buttons {
}
.buttons button {
  border: none;
  color: var(--black);
  padding: 2px 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Noticia Text', serif;
  background: white;
  border: 1px solid var(--borderColor);
  background: #f3f3f3e3;
}
.buttons button:hover {
  background: darkblue;
}

/* country tabs styles */
.tabcontentCountry {
  display: none;
}

/* sidebar ads */
.sidebar-ads {
  width: 100%;
  margin-bottom: 7px;
}
.sidebar-ads img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* single mini */
.single-mini {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  border-top: 1px solid var(--borderColor);
  padding: 10px 0px;
}
.single-mini .single-mini-thumb img {
  width: 20px;
}
.single-mini-content h2 {
  font-size: 18px;
  font-family: 'Noticia Text', serif;
  font-weight: 600;
}

/* Search page
=============== */
.search-header {
  background: white;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
}
.search-header img {
  width: 20px;
}
.search-header h1 {
  color: black;
}
.search-header .search-keyword {
  color: var(--brandColor);
}

/* Author Page Styles */
.author-page {
}

/* Author Header */
.author-header {
  background: #4caf500d;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04); */
  border: 1px solid var(--borderColor);
}

.author-header-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.author-info {
  flex-grow: 1;
}

.author-meta {
  margin-bottom: 20px;
}

.post-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brandColor);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.author-bio {
  color: #555a5c;
  line-height: 1.6;
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 500;
}

.author-profile-avatar img {
  width: 100px;
  height: 100px;
}

.author-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.author-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f5;
  color: #666;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.author-social a:hover {
  background: var(--brandColor);
  color: #fff;
  transform: translateY(-3px);
}

/* Content Grid */
.author-content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

/* Posts Section */
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

/* Single Column Posts List */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.post-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: row;
}

.post-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.post-thumbnail {
  position: relative;
  width: 300px;
  height: 200px;
  flex-shrink: 0;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}

.category-tag a {
  background: var(--brandColor);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.post-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.post-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-title a:hover {
  color: var(--brandColor);
}

.post-meta {
  display: flex;
  gap: 15px;
  color: #666;
  font-size: 14px;
}

.post-meta i {
  color: var(--brandColor);
  margin-right: 5px;
}

/* Dynamic Sidebar */
.author-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-widgets {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widgets .widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.sidebar-widgets .widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-numbers.current {
  background: var(--brandColor);
  color: #fff;
}

.page-numbers:hover:not(.current) {
  background: var(--brandColor);
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .author-content-grid {
    grid-template-columns: 1fr;
  }

  .post-item {
    flex-direction: column;
  }

  .post-thumbnail {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .author-page {
    padding: 20px 0;
  }

  .post-title {
    font-size: 18px;
  }

  .post-meta {
    font-size: 13px;
  }
}

/* Author Info Styles */
.author-info {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin: 10px 0px;
}
.author-profile-info {
  flex-direction: column;
  align-items: flex-start;
}

.author-avatar {
  margin-right: 1rem;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-details {
  flex: 1;
}

.author-label {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 3px;
}

.author-name {
  display: inline-block;
  font-size: 21px;
  font-weight: 700;
  color: #212529;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}

.author-name:hover {
  color: var(--brandColor);
}

/* Update existing single-date styles to match the new design */
.single-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.875rem;
}

.single-date img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Modern Footer Styles */
.modern-footer {
  background: #f8f9fa;
  color: #333;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
  margin-top: 30px;
}
/* Footer Top */
.modern-footer__top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 2rem;
}

.modern-footer__menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 35px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_menu_suggestions .modern-footer__menu-list {
  gap: 45px;
}
.footer_menu_suggestions li {
  position: relative;
}

.footer_menu_suggestions li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 5px;
  background: rgb(207 207 207);
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
.footer_menu_suggestions a {
  font-weight: 700 !important;
}

.modern-footer__menu-list a {
  color: #555;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.modern-footer__menu-list a:hover {
  color: var(--brandColor);
}

/* Footer Main */
.modern-footer__main {
  padding: 20px 0;
  padding-top: 40px;
  background: #fff;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.modern-footer__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  flex-direction: column;
}

.modern-footer__brand {
  display: flex;
  justify-content: space-between;
  grid-gap: 40px;
  align-items: center;
}

.modern-footer__logo {
  display: block;
  max-width: 180px;
}

.modern-footer__logo img {
  width: 100%;
  height: auto;
}

.footer_company_footer_wrapper {
  margin-top: 20px;
  border-top: 1px solid #d3d3d34a;
  padding-top: 20px;
  width: 100%;
}

/* Social Links */
.modern-footer__social-list {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-footer__social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f0f2f5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modern-footer__social-list svg {
  fill: #666;
  transition: all 0.3s ease;
}

.modern-footer__social-list a:hover {
  background: var(--brandColor);
  transform: translateY(-3px);
}

.modern-footer__social-list a:hover svg {
  fill: #fff;
}

/* Footer Bottom */
.modern-footer__bottom {
  background: #fff;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.modern-footer__copyright,
.modern-footer__credits {
  margin: 0;
}

.modern-footer__credits a {
  color: var(--brandColor);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.modern-footer__credits a:hover {
  color: #333;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-footer {
    padding-top: 2rem;
  }

  .modern-footer__content {
    flex-direction: column;
    text-align: center;
  }

  .modern-footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .modern-footer__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .modern-footer__social-list {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Flat news title section */
.flat-title-new-section {
  margin-top: 20px;
}
.flat-title-news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
}
.flat-title-news-wrapper {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  grid-gap: 10px;
}
.flat-title-news-item {
  border-bottom: 1px solid #d3d3d34a;
  padding-bottom: 10px;
}
.flat-title-news-item:last-child {
  border-bottom: unset;
}
.flat-title-news-item h2 {
  font-size: 20px;
  color: black;
}
.flat-title-news-item a {
  text-decoration: none;
}
.flat-title-news-date-category-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 10px;
  margin-top: 10px;
}
.flat-title-news-date-category-wrapper li a {
  font-weight: bold;
  color: #309b65;
}
.flat-title-news-date-category-wrapper li:last-child {
  color: gray;
}

.padding-border {
  padding: 40px 0px;
  border-top: 1px solid #d3d3d34a;
  border-bottom: 1px solid #d3d3d34a;
  margin-top: 20px;
  margin-bottom: 20px;
}

.border-top-and-padding {
  padding: 40px 0px;
  padding-bottom: 0px;
  border-top: 1px solid #d3d3d34a;
  margin-top: 20px;
}
.border-bottom-and-padding {
  padding: 40px 0px;
  border-bottom: 1px solid #d3d3d34a;
  margin-bottom: 20px;
}

.hero-sub-title {
  color: #ed1c24 !important;
}

/* Related Posts Section Styles */
.related-posts-section {
  background: #fff;
  padding: 30px 0;
}

.related-posts-header {
  margin-bottom: 25px;
  border-bottom: 2px solid #e9e9e9b5;
  padding-bottom: 10px;
}

.related-posts-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.related-post-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-post-thumbnail {
  position: relative;
  padding-bottom: 63.67%;
  overflow: hidden;
}

.related-post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.related-post-card:hover .related-post-thumbnail img {
  transform: scale(1.05);
}

.related-post-title {
  padding: 15px 0px;
  margin: 0;
}

.related-post-title a {
  color: #333;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.related-post-title a:hover {
  color: var(--brandColor);
}

.related-posts-footer {
  text-align: center;
  margin-top: 30px;
}

.view-more-button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--brandColor), #2a4baf);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.view-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.arrow-icon {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.view-more-button:hover .arrow-icon {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
  }

  .related-post-title a {
    font-size: 20px;
  }
}
