@font-face {
    font-family: "Hind Siliguri";
    src: url(/assets/fonts/hind-siliguri-regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: "Hind Siliguri";
    src: url(/assets/fonts/hind-siliguri-semibold.woff2) format("woff2");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  html {
    font-family: "Roboto", Arial, sans-serif;
    color: #b1b1b1;
  }
  
  body {
    background: #101010;
    margin: 0;
    padding: 0;
    font-size: 1.2em;
  }
  
  .baji-button {
    display: inline-block;
    position: fixed;
    min-width: 116px;
    text-align: center;
    bottom: 10px;
    left: 20px;
    padding: 26px 20px;
    font-size: 15px;
    background-color: #D51939;
    color: #fff;
    border: none;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    opacity: 1;
    animation: shine 3s ease-in-out infinite;
    border-radius: 10px;
    transition: background-color 0.4s;
  }
  
  .baji-button:hover {
    color: #fff;
    background-color: #287554;
  }
  
  @keyframes shine {
    0% {
      box-shadow: 0 0 10px #287554;
    }
    50% {
      box-shadow: 0 0 20px #287554, 0 0 30px #287554;
    }
    100% {
      box-shadow: 0 0 10px #287554;
    }
  }
  
  #baji-content {
    max-width: 1192px;
    margin: 0 auto;
    padding: 26px;
    min-height: 369px;
  }
  header {
    background: #276F57;
  }
  
  .header {
    flex-direction: column;
    background: #276F57;
    display: flex;
    font-size: 2em;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    /* border-bottom: 2px solid #dcdcdc; */
    gap: 52px;
    max-width: 1192px;
    margin: auto;
  }
  
  .header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .header .baji-menu {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  
  .header .baji-menu a {
    margin-top: 0;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1em;
    color: #fff;
    transition: border 0.3s, box-shadow 0.3s;
  }
  
  .header .baji-menu .login {
    display: inline;
    min-width: 122px;
    border: 2px solid #effffa;
    border-radius: 15px;
    background: 0 0;
    box-shadow: none;
    
  }
  
  .header .baji-menu .login:hover {
    border: 2px solid #ffc900;
  }
  
  .header .baji-menu .registration {
    margin-top: 28px;
    min-width: 122px;
    background: linear-gradient(
      to right,
      #F6D500 0,
      #C7931A 100%
    );
    background-position: 50%0;
    background-size: 200%;
    box-shadow: 0 5px 10px 0 rgba(6, 8, 15, 0.1), inset 0 0 3px 0#ffe600;
    border-radius: 15px;
    transition: box-shadow 0.3s, text-shadow 0.3s;
  }
  
  .header .baji-menu .registration:hover {
    background-position: 0 0;
    box-shadow: 0 2px 2px 1px rgba(6, 8, 15, 0.1),
      0 4px 4px 1px rgba(6, 8, 15, 0.1), 0 8px 8px 1px rgba(6, 8, 15, 0.1),
      0 16px 16px 1px rgba(6, 8, 15, 0.1), 0 32px 32px 1px rgba(6, 8, 15, 0.1),
      inset 0 0 3px 0#937300;
    text-shadow: 0 1px 3px #7b6000;
  }
  
  /* .header #logo {
    padding-left: 15px;
  } */
  
  .header #logo img {
    max-width: 260px;
    max-height: 82px;
    position: relative;
    top: 4px;
    padding: 30px 15px 5px 15px;
    overflow: hidden;
  }
  
  #baji-promo {
    background-color: #171717;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
    /* border-bottom: 2px solid #dcdcdc; */
  }
  
  #baji-promo a {
    display: inherit;
  }
  
  #baji-promo img {
    height: auto;
    width: 100%;
    position: relative;
  }
  
  @media (min-width: 600px) {
    .header {
      font-size: 1em;
    }
    .header .baji-menu {
      flex-direction: row;
    }
    .header .baji-menu .registration {
      margin-left: 27px;
      margin-top: 0;
    }
  }
  
  @media (min-width: 850px) {
    .header {
      flex-direction: unset;
    }
    .header #logo img {
      padding: 0;
    }
    #scrollToTopBtn {
      display: none !important;
    }
  }
  
  @media (min-width: 1200px) {
    /* .header {
      justify-content: center;
    } */
    #baji-promo img {
      max-width: 1200px;
    }
  }
  
  body a {
    color: #34966c;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  body a:hover {
    text-decoration: underline;
  }
  
  h1,
  h2,
  h3,
  h4,
  .menu__title {
    font-weight: bold;
    color: #e0e0e0;
    text-align: center;
  }
  
  h1 {
    margin: 20px 0;
    text-decoration-color: #e0e0e0;
  }
  
  h5 {
    color: #e4e4e4;
    text-decoration: underline;
  }
  
  #baji-content img,
  #baji-content .baji-img img {
    display: block;
    border-radius: 10px;
    max-width: 229px;
  }
  
  #baji-content .baji-img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
  
  body table {
    margin: 25px 0;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    color: #fdfdfd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  th,
  td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  thead tr,
  tr th {
    background-color: #34966c;
  }
  
  tr {
    background-color: #292929;
  }
  
  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
  }
  
  li.active {
    text-decoration: underline;
  }
  
  li h2,
  li h3,
  li h4 {
    margin: 10px 0;
    padding: 0;
    font-weight: bold;
  }
  
  li a {
    color: #0066cc;
    text-decoration: none;
  }
  
  li a:hover {
    text-decoration: underline;
  }
  
  ul ul,
  ol ul {
    margin-left: 20px;
  }
  
  ol {
    counter-reset: my-counter;
  }
  
  ol li:before {
    content: counter(my-counter);
    counter-increment: my-counter;
    position: absolute;
    left: -20px;
    top: -2px;
    background-color: #34966c;
    color: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
  }
  
  ul li:before {
    content: "";
    position: absolute;
    left: -13px;
    top: 3px;
    width: 14px;
    height: 14px;
    background-color: #34966c;
    border-radius: 50%;
  }
  
  span.baji {
    display: flex;
    justify-content: center;
    background-color: #e0e0e0;
    color: #202020;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px 0;
  }
  
  footer {
    background-color: #151515;
    text-align: center;
    bottom: 0;
    width: 100%;
    padding-bottom: 75px;
    /* border-top: 2px solid rgb(255, 255, 255); */
  }
  
  footer #baji-content p {
    margin: 0;
    padding: 5px 10px;
    color: #cecece;
    font-size: 0.9em;
  }
  
  .footer-baji-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .footer-baji-wrap .baji-item-mobile {
    align-items: center;
    padding-bottom: 39px;
    display: flex;
    flex-direction: column;
    gap: 39px;
  }
  
  .footer-baji-wrap .baji-item-mobile .footer-item {
    max-width: 150px;
  }
  
  .footer-baji-wrap .baji-simple {
    display: flex;
    flex-direction: unset;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  
  .footer-baji-wrap .bajilinks {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 17px;
    gap: 19px;
    margin-bottom: 44px;
  }
  
  .footer-baji-wrap .baji-item h5 {
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-baji-wrap .baji-item img {
    max-width: 67px;
    height: auto;
    padding: 2px;
  }
  
  #footerdown {
    font-size: 12px;
    padding: 10px 0;
    border-top: 2px solid #2B2B2B;
    text-align: center;
  }
  
  @media (min-width: 400px) {
    button.readmore {
      width: 320px;
      padding: 15px 25px;
    }
  }
  
  @media (min-width: 488px) {
    #baji-content .baji-img img {
      float: right;
      margin-left: 25px;
    }
  }
  
  @media (min-width: 500px) {
    .footer-baji-wrap {
      flex-direction: unset;
      justify-content: space-around;
      align-items: normal;
    }
    .footer-baji-wrap a {
      align-items: start;
      gap: 10px;
    }
  }
  
  @media (min-width: 740px) {
    .footer-baji-wrap .baji-item-mobile {
      justify-content: center;
      flex-direction: unset;
      gap: 10px;
    }
    .baji-button {
      position: fixed;
      left: 27%;
      transform: translateX(-50%);
    }  
  }
  
  @media (min-width: 800px) {
    #baji-content .baji-img {
      max-width: 380px;
    }
  }

  @media screen and (max-width:768px) {
    .header {
      padding: 0 15px;
    }
    .header #logo img {
      max-width: 92px;
      padding: 0;
    }
    .header .baji-menu .login {
    min-width: fit-content;
    margin-right:10px;
    }
    .header .baji-menu .registration {
      min-width: fit-content;
      margin-top: 0;

    }
    .header .baji-menu a  {
      padding: 14px 16px;
    }
    .header {
      font-size: 0.7em;
      flex-direction: row;
      align-items: center;
  }
  .header .baji-menu {
    flex-direction: row;
  }
  }
  .table {
    overflow: auto;
  }
  .anchor__menu a {
    color:inherit;
    text-decoration: none;
  }