
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Anek Devanagari", sans-serif !important;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
    font-size: 16px;
    line-height: 26px;
}
/* 
button {
    line-height: 0!important;
    display: inline!important;
    padding: 10px 16px!important;
} */

svg.svg-inline--fa.fa-paper-plane.text-xs {
    padding-right: 8px;
}

select {
    height: 42px!important;
}


ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.news-card {
  padding: 10px !important;
  border: 1px solid #e5e7eb;
}

.news-card img {
  border-radius: 10px 10px 0px 0px !important;
  margin-bottom: 8px;
  height: 180px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.icon-news img {
  width: 16px;
  height: 16px;
  margin-bottom: 5px !important;
}

.icon-news {
  display: flex;
  align-items: center;
}

/* Scrolling ticker */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  --ticker-scroll-items: 6;
    height: 30px;
}

.ticker-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  flex: 0 0 1.5rem;
  display: block;
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.latest-news-ticker {
  --latest-item-height: 92px;
  --latest-visible-items: 4;
  height: calc(var(--latest-item-height) * var(--latest-visible-items));
  overflow: hidden;
  position: relative;
}

.latest-news-track {
  animation: latestNewsTicker 28s linear infinite;
}

.latest-news-ticker:hover .latest-news-track {
  animation-play-state: paused;
}

.latest-news-item {
  min-height: var(--latest-item-height);
}

@keyframes latestNewsTicker {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes ticker {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}

@media (max-width: 639px) {
  .sm\:hidden.ticker-wrap .ticker-content,
  .sm\:hidden.ticker-wrap .ticker-item {
    text-align: center;
  }
}

@keyframes ticker {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(var(--ticker-scroll-items) * -1.5rem));
  }
}
/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-slide {
  min-width: 100%;
}

/* Nav scroll */
.nav-links {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-scroll-wrap {
  position: relative;
}

.nav-scroll-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(270deg, rgb(194, 0, 0), #c20000 38%);
  color: #fff3a3;
  border: 0;
  cursor: pointer;
  z-index: 2;
}

.nav-scroll-btn.left {
  left: 0;
  background: linear-gradient(270deg, rgb(194, 0, 0), #c20000 38%);
}

.nav-scroll-btn.right {
  right: 0;
}

/* Card hover */
.news-card {
  transition: box-shadow 0.2s;
}

.news-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.section-title {
  border-left: 4px solid #d32f2f !important;
  padding-left: 10px !important;
  font-size: 22px !important;
  padding-top: 10px !important;
  margin-bottom: 20px !important;
}

/* Tag badge */
.tag-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}

.video-thumb {
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(211, 47, 47, 0.85);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  background: #4A4A4A;
}

.cat-tag {
  color: #d32f2f;
  font-size: inherit;
  font-weight: 600;
  text-transform: uppercase;
}


.main-logo img {
    height: 90px;
    width: 100%;
    object-fit: cover;
}


.tags-main a {
    height: 26px;
    border: 1px solid #ffffff36;
}