:root {
  --main-font:  "Poppins", sans-serif;
  --primary-color: #0a1020;
  --secondary-color: #fa2500;
  --white: #fff;

  --fs24: 1.25vw;

  --font-normal-400: 400;
  --font-medium-500: 500;
  --font-semibold-600: 600;
  --font-bold-700: 700;
  --font-extrabold-800: 800;
  --font-black-900: 800;



}
.report-tab {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 5%;
}
.nav-tab {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  font-size: var(--fs24);
  font-style: normal;
  font-weight: var(--font-semibold-600);
  line-height: normal;
  text-decoration: none;
  padding: 0 0 10px 0;
  width: 100%;
  transition: width 0.3s ease, border-bottom 0.3s ease;
}
.nav-tab:hover {
  border-bottom: 10px solid var(--secondary-color);
}
.nav-tab.active {
  color: var(--primary-color);
  font-weight: var(--font-black-900);
  border-bottom: 6px solid var(--secondary-color);
}

.nav-tab:not(.active) {
  color: var(--primary-color);
  font-weight: var(--font-semibold-600);
}

.nav-tab:not(.active):hover {
  color: var(--primary-color);
  font-weight: var(--font-black-900);
}

li.tab-item {
  width: 15%;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-list {
  background: transparent;
  color: #000;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 132%; /* 23.76px */
  letter-spacing: -0.18px;
  display: flex;
  margin: 0;
}
.prev,
.next {
  width: auto;
  height: auto;
  object-fit: cover;
}
.pagination-list {
  list-style: none;
  display: flex;
  gap: 5px;
}
.pagination-list :active {
  font-weight: 800;
}
.pagination-btn {
  background: transparent;
  border: none;
  cursor: pointer;
}
/* Laptop */
@media only screen and (max-width: 1440px) {
}
/* Tablet Landscape */
@media only screen and (max-width: 1024px) {
}
/* Tablet */
@media only screen and (max-width: 834px) {
}
/* Mobile Landscape */
@media only screen and (max-width: 768px) {
  .report-tab {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 10px;
  }
  .nav-tab.active {
    border-bottom: 4px solid var(--secondary-color);
  }
  .nav-tab {
    font-size: 20px;
  }
}

/* Mobile */
@media only screen and (max-width: 480px) {
  .nav-tab {
    font-size: 13px;
  }
  li.tab-item {
    width: 35%;
  }
}
