:root {
  --bs-success-rgb: 84, 181, 25;
  --bs-danger-rgb: 202, 21, 46;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: Arial, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.875rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #fff;
  --bs-body-bg: #0c0e29;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.4);
  --bs-border-radius: 0.25rem;
  --bs-link-color: #63bcff;
  --bs-link-hover-color: #f7920b;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* background-color: #101318; */
  background: linear-gradient(135deg, rgb(15, 32, 39) 0%, rgb(32, 58, 67) 50%, rgb(44, 83, 100) 100%);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  margin: 0;
  text-align: var(--bs-body-text-align);
}

hr {
  border: 0;
  border-top: 1px solid;
  color: inherit;
  margin: 1rem 0;
  opacity: 0.25;
}

.h1,
.h2,
.h3,
.h4,
.h6,
h1,
h2,
h3,
h4,
h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0;
}

.h1,
h1 {
  font-size: 1.5rem;
}

.h2,
h2 {
  font-size: 1.375rem;
}

.h3,
h3 {
  font-size: 1.125rem;
}

.h4,
h4 {
  font-size: 1.3125rem;
}

.h6,
h6 {
  font-size: 0.875rem;
}

p {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-bottom: 1rem;
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b {
  font-weight: bolder;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}

a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

tr {
  border: 0 solid;
  border-color: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type="button"],
button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  -webkit-appearance: button;
  font: inherit;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.blockquote {
  font-size: 1.09375rem;
  margin-bottom: 1rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 996px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-top: calc(var(--bs-gutter-y) * -1);
}

.row > * {
  flex-shrink: 0;
  margin-top: var(--bs-gutter-y);
  max-width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.g-4 {
  --bs-gutter-x: 0.25rem;
}

.g-4 {
  --bs-gutter-y: 0.25rem;
}

.g-16,
.gx-16 {
  --bs-gutter-x: 1rem;
}

.g-16,
.gy-16 {
  --bs-gutter-y: 1rem;
}

.gy-20 {
  --bs-gutter-y: 1.25rem;
}

.gy-32 {
  --bs-gutter-y: 2rem;
}

@media (min-width: 576px) {
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

@media (min-width: 1024px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.625rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1.125rem;
  --bs-btn-font-weight: 700;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #fff;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 0;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.25rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  background-color: var(--bs-btn-bg);
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  color: var(--bs-btn-color);
  cursor: pointer;
  display: inline-block;
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  text-align: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  vertical-align: middle;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* .btn:first-child:hover,
:not(.btn-check)+.btn:hover {
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    color: #fff;
} */

.btn:focus-visible {
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  box-shadow: var(--bs-btn-focus-box-shadow);
  color: var(--bs-btn-hover-color);
  outline: 0;
}

.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
  color: #dfd6d6;
}

.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check) + .btn:active:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled {
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  color: var(--bs-btn-disabled-color);
  opacity: var(--bs-btn-disabled-opacity);
  pointer-events: none;
}

.btn-primary {
  --bs-btn-color: rgb(255, 255, 255);
  --bs-btn-bg: #0c5fb0;
  --bs-btn-border-color: #0c5fb0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0c5fb0;
  --bs-btn-hover-border-color: #0c5fb0;
  --bs-btn-focus-shadow-rgb: 217, 174, 1;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0c5fb0;
  --bs-btn-active-border-color: #ffd21a;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 217, 174, 1;
  text-decoration: none;
}

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  /* --bs-card-bg: #0F1116; */
  --bs-card-bg: linear-gradient(104deg, #282f3f, #18878d);
  word-wrap: break-word;
  background-clip: border-box;
  background: var(--bs-card-bg);
  /* border: var(--bs-card-border-width) solid var(--bs-card-border-color); */
  /* border-radius: var(--bs-card-border-radius); */
  display: flex;
  flex-direction: column;
  height: var(--bs-card-height);
  min-width: 0;
  position: relative;
}

.card > hr {
  margin-left: 0;
  margin-right: 0;
}

.card-body {
  color: var(--bs-card-color);
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
}

.card-footer {
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  color: var(--bs-card-cap-color);
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio:before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio);
}

.ratio > * {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.ratio-8x5 {
  --bs-aspect-ratio: 62.5%;
}

.visually-hidden {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.align-top {
  vertical-align: top !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-flex {
  display: flex !important;
  justify-content: space-between;
}

.w-100 {
  width: 100% !important;
}

.w-152px {
  width: 9.5rem !important;
}

.w-256px {
  width: 16rem !important;
}

.mw-100 {
  max-width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.h-96px {
  height: 6rem !important;
}

.mh-100 {
  max-height: 100% !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.m-auto {
  margin: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-32 {
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
}

.mt-12 {
  margin-top: 0.75rem !important;
}

.mt-20 {
  margin-top: 1.25rem !important;
}

.mt-40 {
  margin-top: 2.5rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-8 {
  margin-right: 0.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-4 {
  margin-bottom: 0.25rem !important;
}

.mb-6 {
  margin-bottom: 0.375rem !important;
}

.mb-8 {
  margin-bottom: 0.5rem !important;
}

.mb-16 {
  margin-bottom: 1rem !important;
}

.mb-24 {
  margin-bottom: 1.5rem !important;
}

.ms-16 {
  margin-left: 1rem !important;
}

.p-8 {
  padding: 0.5rem !important;
}

.py-4 {
  padding-bottom: 0.25rem !important;
  padding-top: 0.25rem !important;
}

.py-8 {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}

.py-16 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
}

.py-32 {
  padding-bottom: 2rem !important;
  padding-top: 2rem !important;
}

.py-40 {
  padding-bottom: 2.5rem !important;
  padding-top: 2.5rem !important;
}

.pt-20 {
  padding-top: 1.25rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.gap-8 {
  gap: 0.5rem !important;
}

.gap-14 {
  gap: 0.875rem !important;
}

.gap-16 {
  gap: 1rem !important;
}

.fs-10 {
  font-size: 0.625rem !important;
}

.fs-13 {
  font-size: 0.9rem !important;
}

.fs-14 {
  font-size: 0.875rem !important;
}

.fs-16 {
  font-size: 1rem !important;
}

.fs-18 {
  font-size: 0.9rem !important;
}

.fs-20 {
  font-size: 1.25rem !important;
}

.fs-24 {
  font-size: 1.5rem !important;
}

.fs-26 {
  font-size: 1.6rem !important;
}

.fs-28 {
  font-size: 1.75rem !important;
}

.fs-36 {
  font-size: 1.75rem !important;
}

.fs-40 {
  font-size: 2.5rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: #63bcff !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #93a7ca !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: #0a151a;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-20 {
  --bs-bg-opacity: 0.2;
}

.bg-opacity-40 {
  --bs-bg-opacity: 0.4;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.min-w-104px {
  min-width: 6.5rem !important;
}

.object-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mt-md-64 {
    margin-top: 4rem !important;
  }
}

@media (min-width: 1024px) {
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .my-lg-40 {
    margin-bottom: 2.5rem !important;
    margin-top: 2.5rem !important;
  }

  .px-lg-24 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .py-lg-40 {
    padding-bottom: 2.5rem !important;
    padding-top: 2.5rem !important;
  }

  .fs-lg-32 {
    font-size: 2rem !important;
  }

  .text-lg-end {
    text-align: right !important;
  }
}

.page {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 20rem;
}

.page-body {
  flex: auto;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .page-body {
    padding-bottom: 2.5rem;
  }
}

.page-footer {
  --link-hover-color: 147, 167, 202;
}

ol:last-child,
p:last-child,
ul:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }

  .h2,
  h2 {
    font-size: 1.75rem;
  }

  .h3,
  h3 {
    font-size: 1.25rem;
  }
}

.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
}

.icon-chevron-down {
  transition: transform 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .icon-chevron-down {
    transition: none;
  }
}

.btn:not(.collapsed) > .icon-chevron-down {
  transform: rotate(0.5turn);
}

.icon-align {
  align-items: center;
  display: flex;
}

.icon-align:before {
  content: "X";
  visibility: hidden;
  width: 0;
}

.link,
a {
  color: rgba(var(--link-color, 99, 188, 255), var(--link-opacity, 1));
  -webkit-text-decoration: var(--link-line, underline) var(--link-style, initial) rgba(var(--link-color, 99, 188, 255), var(--link-line-opacity, 0.25));
  text-decoration: var(--link-line, underline) var(--link-style, initial) rgba(var(--link-color, 99, 188, 255), var(--link-line-opacity, 0.25));
  text-underline-offset: 0.1em;
}

.link:hover,
a:hover {
  color: #f7920b;
  text-decoration-color: rgba(var(--link-hover-color, 79, 150, 204), 0.25);
}

.link {
  cursor: pointer;
}

.link-light {
  --link-color: 255, 255, 255;
}

.article * + :-webkit-any(h2, .h2, h3, .h3, h4, .h4) {
  margin-top: 2.5rem;
}

.article * + :is(h2, .h2, h3, .h3, h4, .h4) {
  margin-top: 2.5rem;
}

.article ol:not(:last-child),
.article ul:not(:last-child) {
  margin-bottom: 0.5rem;
}

.article li + li {
  margin-top: 0.5rem;
}

.article img {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.article img:not(:first-child) {
  margin-top: 1rem;
}

.article img:not(:last-child) {
  margin-bottom: 1rem;
}

[itemprop="mainEntity"] + [itemprop="mainEntity"] {
  margin-top: 2.5rem;
}

.btn-primary-gradient {
  /* background-image: linear-gradient(180deg, #FDAA3A, #FD960B); */
  /* border-radius: 50px; */
  background-color: #ffffff;
  color: #000000;
  transition: all 0.3s ease;
  box-shadow: #033533bd 1px 6px 10px;
  line-height: 1.2;
}

.btn-primary-gradient:hover {
  /* background-image: linear-gradient(180deg, #FDAA3A, #FD960B);  */
  /* box-shadow: 0 0 15px rgba(253, 150, 11, 0.7), 0 0 30px rgba(253, 150, 11, 0.5);  */
  background-color: #f7035f;
  color: #fff;
  box-shadow: #033533bd 1px 1px 4px;
}

.card-primary {
  --label-bg: #63bcff;
  --link-hover-color: 147, 167, 202;
}

.card-primary.is-prime {
  --label-bg: #0c5fb0;
  border: 2px solid #0c5fb0;
}

.card-primary[data-label] {
  padding-top: 2rem;
  /* border: 2px solid #FAB10D; */
  /* border-radius: 15px; */
  /* box-shadow: #63bcff 0 0 20px; */
}

.card-primary[data-label]:before {
  border-top-left-radius: var(--bs-card-border-radius);
  color: #000;
  content: attr(data-label);
  font-size: 0.875rem;
  left: calc(var(--bs-card-border-width) * -1);
  line-height: 1.5;
  padding: 0.375rem 0.5rem;
  position: absolute;
  top: calc(var(--bs-card-border-width) * -1);
}

.card-secondary {
  background-color: linear-gradient(180deg, #676767 0.01%, #000000 100.01%);
}

@media (min-width: 1024px) {
  .animated-cards {
    background-image: var(--bg, none), var(--bg, none);
    background-position: calc(50% - 37.6875rem) 0, calc(50% + 37.6875rem) 0;
    background-repeat: repeat-y;
    background-size: 13.125rem auto;
  }
}

.col-lg-6 {
  flex: auto;
}

.name-c {
  font-size: 18px;
}

@media (min-width: 771px) {
  .ml-80 {
    margin-left: 80px !important;
  }

  .w60 {
    width: 60%;
  }

  .none-label[data-label] {
    padding-top: 0;
  }
}

@media (max-width: 770px) {
  .mt {
    margin-top: 20px;
  }

  .name-c {
    position: relative;
    top: -155px;
  }
}

@media (max-width: 487px) {
  .mt {
    margin-top: 0;
  }

  .logo-main {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 770px) {
  .d-none {
    display: none !important;
  }

  .of-fs-14 {
    font-size: 14px !important;
  }

  .of-fs-12 {
    font-size: 12px !important;
  }

  .of-fs-16 {
    font-size: 16px !important;
  }

  .of-fs-18 {
    font-size: 18px !important;
  }

  .of-fs-22 {
    font-size: 22px !important;
  }

  .d-block {
    display: block !important;
  }

  .w-80 {
    width: 100%;
  }

  .m-l-r {
    margin-left: auto;
    margin-right: auto;
  }

  .of-w-100 {
    width: 100% !important;
  }
}

.none-label {
  --label-bg: var(--bs-card-bg);
  --link-hover-color: 147, 167, 202;
}

.page-header {
  border-bottom: 1px solid #ffffff4d;
}
.header-logo {
  max-width: 100%;
  height: auto;
}
.bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonuses-custom {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
