:root {
  --bs-font-sans-serif: "Satoshi", sans-serif;
}


/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html {
  font-family: "Satoshi", sans-serif !important;
}
body {
	line-height: 1;
  font-family: inherit !important;
}

/* Ensure inheritance across common elements and Bootstrap components */
h1, h2, h3, h4, h5, h6,
p, span, small, a, li, blockquote, figcaption,
button, input, textarea, select, label,
th, td,
.btn, .nav-link {
  font-family: inherit !important;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
  text-decoration: none;
}

/* SATOSHI — NORMAL WEIGHTS */
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Light.woff2") format("woff2"),
       url("../../fonts/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Regular.woff2") format("woff2"),
       url("../../fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Medium.woff2") format("woff2"),
       url("../../fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Bold.woff2") format("woff2"),
       url("../../fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Black.woff2") format("woff2"),
       url("../../fonts/Satoshi-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ITALIC WEIGHTS */
@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-LightItalic.woff2") format("woff2"),
       url("../../fonts/Satoshi-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-Italic.woff2") format("woff2"),
       url("../../fonts/Satoshi-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-MediumItalic.woff2") format("woff2"),
       url("../../fonts/Satoshi-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-BoldItalic.woff2") format("woff2"),
       url("../../fonts/Satoshi-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../../fonts/Satoshi-BlackItalic.woff2") format("woff2"),
       url("../../fonts/Satoshi-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
* {
  box-sizing: border-box;
}


.container-1440 {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  position: absolute;
  z-index: 1000;
  width: 100%;
}

/* Header BEM hooks (selectors used in markup/styles below) */


.navbar-nav li a {
  color: #fff !important;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
}

.navbar-nav li a:hover {
  opacity: .7;
}

.nav-link {
  color: #fff !important;
  padding: 10px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
}

.nav-link:hover {
  opacity: .7;
}

.header__menu {
  gap: 15px;
}
.navbar-nav {
  gap: 10px;
}

/* MOBILE menu improvements */
@media (max-width: 992px) {
  /* Full-screen overlay menu when open */
  .header__menu.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0a0a0a;
    padding: 24px 20px;
    overflow-y: auto;
    z-index: 9999;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 16px;
    color: #ffffff !important;
  }

  /* Mobile menu header (logo + close) */
  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .mobile-menu__logo img {
    display: block;
    height: 48px;
  }
  .mobile-menu__close {
    appearance: none;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1;
    padding: 4px 8px;
  }

  /* Dropdown arrow for WP */
  .menu-item-has-children > a::after {
    content: " ▾";
    float: right;
    margin-top: 4px;
    font-size: 12px;
  }

  .header__actions {
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }
}

@media (min-width: 992px) {
  .mobile-menu__header,
  .mobile-menu__close {
    display: none !important;
  }
}

/* Disable Bootstrap collapse animation ONLY for navbar menu */
#mainMenu.collapse {
  transition: none !important;
}
#mainMenu.collapsing {
  transition: none !important;
  height: auto !important;
}

/* THEME */
:root {
  --jx-bg: #0b0b0e;
  --jx-bg-2: #101114;
  --jx-text: #ffffff;
  --jx-muted: #a5a7ad;
  --jx-accent: #b6ff8a;
  --jx-border: #202128;
}
body .main-home-page {
  background: #fff;
}
body {
  background: #0F110F;
  color: var(--jx-text);
}

.section {
  color: #111;
}

.bg-white {
  background: #ffffff !important;
}

.site-main {
    padding-top:110px;
    min-height: 90vh;
}
