body {
  font-family: "Noto Serif Bengali", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}
a {
  color: #000 !important;
  text-decoration: none !important;
}
a:hover {
  color: red !important;
}
img {
  max-width: 100%;
  height: auto !important;
}
.logo {
  width: 200px;
}
main {
  margin-top: 170px;
}

/* HEADER STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.15);
}

.page-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* STICKY STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  animation: slideDown 0.35s ease-out;
}
.logo.is-sticky {
  width: 100px !important;
}

.page-header.is-sticky img {
  max-width: 50%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.latest {
  width: 100%;
  height: auto;
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: blue;
  animation: colorChange 2s ease infinite alternate;
}

@keyframes colorChange {
  0% {
    background-color: black;
  }
  100% {
    background-color: red;
  }
}
.videobg {
  background: linear-gradient(90deg, #ec2124 0%, #182848 100%);
}
.blackbg {
  background: black;
}
.gradient-text {
  background-image: linear-gradient(to right, #f00, #00f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bottomTitle {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.97) 100%
  );
  width: 100%;
  padding: 40px 30px;
  box-sizing: border-box;
  text-shadow: 1px 1px 1px #000;
  line-height: normal;
  position: absolute;
  bottom: 0px;
  border-radius: 0.375rem;
  overflow: hidden;
  flex: 1;
}
.bottomTitle a {
  color: white !important;
  text-decoration: none;
}
.bottomTitle a:hover {
  color: red !important;
}
.cover {
  width: 100%;
  height: 400px !important;
  object-fit: cover;
}
.cover1 {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
}
.cover2 {
  width: 100%;
  height: 100px !important;
  object-fit: cover;
}
.cover3 {
  width: 100%;
  height: 70px !important;
  object-fit: cover;
}
.cover4 {
  width: 100%;
  height: 500px !important;
  object-fit: cover;
}
.subtitle {
  color: #ab0613;
}
.subtitleLight {
  color: #f6a2a9;
}
.catName {
  border-bottom: 2px solid #f00;
}
.social-media {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 22px;
}
.social-media li {
  padding: 4px;
}
.social-media li a {
  padding: 4px 8px;
  background-color: #000;
  border-radius: 4px;
  color: #ffffff;
}
.social-media li a i {
  font-size: 14px;
}
.gradient {
  background: linear-gradient(to right, #ff416c, #000);
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.menucolor {
  background: #212529;
}
.navbar-toggler:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}
@media screen and (max-width: 600px) {
  main {
    margin-top: 120px;
  }
  .menucolor {
    background: none;
  }
}
