@charset "UTF-8";
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  font-weight: 100;
  background: radial-gradient(#fff, #3e3838);
  animation: bit-fadeIn 1 1s ease-out;
  color: #000000;
}

p {
  line-height: 150%;
  text-align: justify;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #ff2400;
}

ol li::marker {
  font-weight: 600;
  font-size: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 15px 0;
  background: #a39a9a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

th {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 17px;
  text-align: center;
  border-bottom: 2px solid #ff2400;
  background: #424242;
}

td {
  color: #000000;
  padding: 10px 17px;
  text-align: center;
  border-bottom: 1px solid #ff2400;
  border-right: 1px solid #ff2400;
}

tr:last-child td {
  border-bottom: none;
}

td:last-child {
  border-right: none;
}

tr:hover {
  background: linear-gradient(180deg, #a39a9a 0%, #8c8484 100%);
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
  }
  
  th, td {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.bit-table_accent {
  background: #424242;
  box-shadow: 0 0 10px #ff2400;
  animation: bit-glowing 1300ms infinite;
}

.bit-footer-menu {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.bit-footer-menu ul {
  min-width: unset;
  align-items: center;
}

@keyframes bit-glowing {
  0% {
    box-shadow: 0 0 5px #363636;
  }
  50% {
    box-shadow: 0 0 20px #ff2400;
  }
  100% {
    box-shadow: 0 0 5px #363636;
  }
}

.bit-header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 15px 0;
  background: #424242;
}
.bit-header .bit-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px; */
}
.bit-header .bit-container .bit-logo {
  flex: 0 0 100px;
}
.bit-header .bit-container .bit-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.bit-header .bit-container .bit-auth .bit-btn {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bit-header .bit-container .bit-auth .bit-btn img {
  height: 20px;
}
.bit-header .bit-container .bit-auth .bit-btn-1 {
  border: 1px solid #ff2400;
  color: #ffffff;
}
.bit-header .bit-container .bit-auth .bit-btn-1:hover {
  border: 1px solid #fff;
  color: #fff;
}
.bit-header .bit-container .bit-auth .bit-btn-2 {
  background-color: #ff2400;
  color: #000000;
}
.bit-header .bit-container .bit-auth .bit-btn-2:hover {
  background-color: #ff4c00;
}

.bit-btn {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

.bit-main {
  height: 100%;
  flex: 1 1 auto;
}
.bit-main .bit-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 0;
}
.bit-card {
  position: relative;
  color: #fff;
}
.bit-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  border-radius: 2vw;
}
.bit-main .bit-cards .bit-card {
  flex: 1;
  border-radius: 2vw;
  padding: 2.7083333333vw;
  color: #fff;
}
.bit-main .bit-cards .bit-card::before {
  content: "";
  padding-top: 50%;
}
.bit-main .bit-cards .bit-card__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bit-main .bit-cards .bit-card__title {
  font-size: 30px;
  font-weight: 600;
}
.bit-main .bit-cards .bit-card__title .bit-bold {
  font-weight: 800;
  font-size: 40px;
}
.bit-main .bit-cards .bit-card__title .bit-gold {
  background: linear-gradient(180deg, #ffc700 26.48%, #ff8a00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: 800;
}
.bit-main .bit-cards .bit-card__btn {
  background-color: #ff2400;
  color: #000000;
  animation: bit-glowing 1300ms infinite;
}
.bit-main .bit-cards .bit-card__btn:hover {
  background-color: #ff4c00;
}
.bit-main .bit-content {
  padding-bottom: 30px;
}
.bit-main .bit-content p {
  margin: 15px 0;
}
.bit-main .bit-content img {
  display: flex;
  margin: 10px auto 10px auto;
  max-width: 800px;
}

.bit-container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.bit-footer {
  padding: 30px 0;
  background-color: #424242;
}
.bit-footer .bit-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  border-top: 1px solid rgb(230, 230, 230);
  padding: 20px 0;
}
.bit-footer .bit-payments img {
  max-width: 100px;
  height: 42px;
}
.bit-footer .bit-nav {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
}
.bit-footer .bit-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.bit-footer .bit-copyright {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgb(230, 230, 230);
  font-size: 12px;
  color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  h3 {
    font-size: 24px;
  }
  .bit-table_dark {
    display: block;
  }
  .bit-container {
    max-width: 100%;
  }
  .bit-header {
    padding: 10px 0;
  }
  .bit-header .bit-container {
    flex-direction: column;
    /* gap: 15px; */
  }
  .bit-header .bit-container .bit-logo {
    flex: auto;
  }
  .bit-header .bit-container .bit-logo img {
    max-width: 100px;
  }
  .bit-main .bit-cards {
    flex-direction: column;
  }
  .bit-main .bit-cards .bit-card {
    padding: 4px;
  }
  .bit-main .bit-cards .bit-card__content {
    max-width: 100%;
    text-align: center;
  }
  .bit-main .bit-cards .bit-card__title {
    font-size: 16px;
  }
  .bit-main .bit-cards .bit-card__desc {
    font-size: 14px;
  }
  .bit-main .bit-content img {
    max-width: 100%;
  }
  .bit-footer {
    padding: 20px 0;
  }
  .bit-footer .bit-payments {
    gap: 10px;
  }
  .bit-footer .bit-payments img {
    max-width: 50px;
  }
  .bit-footer .bit-copyright {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  .bit-footer .bit-copyright .bit-img {
    max-width: 80px;
  }
}
.bit-light-wrapper {
  position: absolute;
  top: 100vh;
  left: 0;
  right: 0;
  margin: auto;
  width: 0px;
  height: 0px;
}

.bit-light {
  height: 300px;
  background-color: #ff2400;
  box-shadow: #ff2400 0px 0px 20px 2px;
  will-change: transform, opacity;
  animation: bit-floatUp 4s infinite linear;
  animation-play-state: paused;
}

.bit-x1 {
  transform: scale(1);
}

.bit-x2 {
  transform: scale(1.6);
  left: 15%;
}

.bit-x3 {
  transform: scale(0.5);
  left: -15%;
  }

.bit-x4 {
  transform: scale(1.2);
  left: -34%;
  }

.bit-x5 {
  transform: scale(2.2);
  left: -57%;
  }

.bit-x6 {
  transform: scale(0.8);
  left: -81%;
  }

.bit-x7 {
  transform: scale(3.2);
  left: 37%;
  }

.bit-x8 {
  transform: scale(1.7);
  left: 62%;
  }

.bit-x9 {
  transform: scale(0.9);
  left: 85%;
  }

.bit-x1 .bit-light { animation-duration: 4s; }
.bit-x2 .bit-light { animation-duration: 7s; }
.bit-x3 .bit-light { animation-duration: 2.5s; }
.bit-x4 .bit-light { animation-duration: 4.5s; }
.bit-x5 .bit-light { animation-duration: 8s; }
.bit-x6 .bit-light { animation-duration: 3s; }
.bit-x7 .bit-light { animation-duration: 5.3s; }
.bit-x8 .bit-light { animation-duration: 4.7s; }
.bit-x9 .bit-light { animation-duration: 4.1s; }

@keyframes bit-glowing {
  0% {
    box-shadow: 0 0 5px #363636;
  }
  50% {
    box-shadow: 0 0 20px #ff2400;
  }
  100% {
    box-shadow: 0 0 5px #363636;
  }
}
@keyframes bit-floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  50% {
    transform: translateY(-100vh); 
    opacity: 0.8;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200vh); 
    opacity: 0;
  }
}
@keyframes bit-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bit-fadeOut {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bit-finalFade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.bit-inline-img {
  display: inline-block;
  vertical-align: middle;
  max-width: 30px;
  height: auto;
  margin: 0 5px;
  border-radius: 5px;
  transition: transform 0.2s ease-in-out;
}

.bit-inline-img:hover {
  /* transform: scale(1.1); */
  box-shadow: 0 0 10px #ff2400; 
}


@media (max-width: 768px) {
  .bit-inline-img {
    max-width: 20px;
    margin: 0 3px;
  }

  .bit-text-img-container {
    font-size: 14px;
    padding: 8px;
  }

  .bit-text-img-container img {
    max-width: 40px;
  }
}

@keyframes bit-glowing {
  0% {
    box-shadow: 0 0 5px #363636;
  }
  50% {
    box-shadow: 0 0 20px #ff2400;
  }
  100% {
    box-shadow: 0 0 5px #363636;
  }
}

.bit-button-content {
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  background-color: #ff2301;
  color: #000000;
  animation: bit-glowing 1300ms infinite;
}

a {
  font-weight: 600;
  color: #f6f6f6;
  text-decoration: none;
}

.bit-footer-menu {
  padding: 20px 0;
}

.bit-footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.bit-footer-menu a {
  font-size: 14px;
  color: #f6f6f6;
  text-decoration: none;
  font-weight: 400;
}

.bit-footer-menu a:hover {
  color: #ff2400;
  text-decoration: underline;
}