@charset "UTF-8";
:root {
  --red: #E62828;
  --padding: 1.5rem;
  --textPaddingX: 0.5rem;
  --textPadding: 0 var(--textPaddingX);
}
@media (max-width: 640px) {
  :root {
    --padding: 1rem;
  }
}

@font-face {
  font-family: "Instrument Sans";
  font-stretch: 100%;
  font-style: normal;
  font-weight: 400;
  src: url("https://static.junoindustries.ca/www/fonts/InstrumentSans-Regular.ttf");
}
@font-face {
  font-family: "Instrument Sans";
  font-stretch: 100%;
  font-style: normal;
  font-weight: 500;
  src: url("https://static.junoindustries.ca/www/fonts/InstrumentSans-Medium.ttf");
}
@font-face {
  font-family: "Instrument Sans";
  font-stretch: 100%;
  font-style: normal;
  font-weight: 600;
  src: url("https://static.junoindustries.ca/www/fonts/InstrumentSans-SemiBold.ttf");
}
@font-face {
  font-family: "Instrument Sans";
  font-stretch: 100%;
  font-style: normal;
  font-weight: 800;
  src: url("https://static.junoindustries.ca/www/fonts/InstrumentSans-Bold.ttf");
}
@font-face {
  font-family: "Syne";
  font-stretch: 100%;
  font-style: normal;
  font-weight: 700;
  src: url("https://static.junoindustries.ca/www/fonts/Syne-Bold.ttf");
}
html {
  background: black;
}

body {
  position: relative;
  height: auto;
  min-height: 100dvh;
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 20px;
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  text-rendering: optimizeLegibility;
  appearance: none;
  scroll-behavior: smooth;
  border: 0;
  outline: none;
  box-sizing: border-box;
  transition: opacity 0.25s, background-color 0.25s, color 0.25s, transform 0.25s;
}
@media (max-width: 900px) {
  * {
    font-size: 16px;
  }
}
@media (min-width: 1500px) {
  * {
    font-size: 1.35vw;
  }
}
* :not(body)::-webkit-scrollbar {
  display: none;
}

.a11y {
  width: 0;
  height: 0;
  position: absolute;
  margin: -1000rem;
  visibility: none !important;
}

input[type=checkbox].toggle {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  display: block;
  width: 100%;
  line-height: 1.1;
  font-weight: 600;
  font-family: "Instrument Sans";
  text-wrap-style: pretty;
  padding: var(--textPadding);
}

h2 {
  text-transform: uppercase;
  font-family: "Syne";
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.4;
}
p * {
  color: inherit;
  font-size: inherit;
}
p strong {
  font-weight: 600;
  color: inherit;
  font-size: inherit;
}
p a {
  color: #999 !important;
}

img, video {
  pointer-events: none;
}

img {
  width: 100%;
  pointer-events: none;
}

ul, ol {
  list-style: none;
}

button, a, label {
  cursor: pointer;
}

a.logo {
  text-decoration: none;
  height: 1.8rem;
  line-height: 0;
  font-size: 0;
}
a.logo h1 {
  line-height: 0;
  font-size: 0;
  margin: 0;
  display: none;
}
a.logo img {
  width: auto;
  height: 100%;
}

button, a.button, label.button {
  width: min-content;
  height: 2rem;
  border-radius: 0.3rem;
  white-space: nowrap;
  font-family: "Syne";
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0 0.75rem;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.25s;
}
button.outline, a.button.outline, label.button.outline {
  border: 0.1rem solid white;
  color: white;
  background-color: transparent;
}
button:hover, a.button:hover, label.button:hover {
  background-color: black;
  color: white;
}
button:hover.outline, a.button:hover.outline, label.button:hover.outline {
  background-color: white;
  color: black;
}

a.go {
  font-weight: 800;
  font-size: 0.8rem;
  padding: var(--textPadding);
  margin: var(--padding) var(--padding) 0 0;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
a.go:after {
  display: block;
  content: "->";
  margin-left: 0.5rem;
  opacity: 0.25;
  transition: all 0.25s;
}
a.go:hover:after {
  opacity: 1;
  transform: translateX(0.25rem);
}

table {
  border-collapse: collapse;
}
table thead tr, table tbody tr {
  height: 3.5rem;
  border-bottom: 0.05rem solid #222;
}
table thead tr th, table thead tr td, table tbody tr th, table tbody tr td {
  text-align: left;
  padding: var(--textPadding);
  white-space: nowrap;
}
table thead tr th, table tbody tr th {
  font-weight: 800;
}

form input:not([type=checkbox]) {
  border-radius: 0;
}
form input[type=submit] {
  text-align: center;
}
form input[type=submit]:disabled {
  opacity: 0.5;
}
form:after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), black);
  font-family: "Syne";
  color: white;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
form.error .form-error-message {
  color: red;
  padding: var(--textPadding);
  margin-bottom: 0.5rem;
}
form.error input[type=email] {
  border: 0.05rem solid red !important;
  position: relative;
  color: red !important;
}
form.error input[type=submit] {
  background-color: red !important;
  color: white !important;
}
form.pending * {
  opacity: 0.5;
  pointer-events: none;
}
form.sent {
  pointer-events: none;
  position: relative;
}
form.sent > *:not(::after) {
  opacity: 0.5;
}
form.sent:after {
  opacity: 1;
  pointer-events: initial;
}

section {
  height: auto;
  position: relative;
  display: grid;
}
section:not(.show) {
  opacity: 0;
  transform: translateY(0.5rem);
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 5rem;
}

.page-header {
  width: 100%;
  height: 24rem;
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--padding) * 3 + 2rem) var(--padding) var(--padding);
  position: relative;
}
.page-header:before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.page-header img, .page-header video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
}
.page-header h1 {
  padding: var(--textPadding);
  font-size: 3rem;
  font-weight: 800;
  text-transform: none;
  font-family: "Instrument Sans", sans-serif;
  color: white;
  z-index: 2;
}
.page-header nav {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 13.6rem;
  z-index: 2;
}
.page-header nav a {
  display: block;
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-size: 0.8rem;
  color: white;
  border-bottom: 0.05rem solid #ddd3;
  text-decoration: none;
  padding: var(--textPadding);
}
.page-header nav a:last-child {
  border-bottom: 0;
}
@media (max-width: 720px) {
  .page-header {
    flex-direction: column;
    gap: 1rem;
    min-height: 24rem;
    height: min-content;
  }
  .page-header h1 {
    margin-top: 1rem;
  }
  .page-header nav {
    width: 100%;
  }
}

.page-section {
  padding: var(--padding);
}
.page-section:empty {
  display: none;
}
.page-section h2 {
  padding: var(--textPadding);
  margin-bottom: var(--padding);
}
@media (max-width: 720px) {
  .page-section h2 {
    font-size: 0.9rem;
  }
}

input[type=checkbox]:checked + .popup-container {
  opacity: 1;
  pointer-events: initial;
  z-index: 1000;
}

.popup-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(30px);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  display: grid;
  justify-content: center;
  align-items: center;
}
.popup-container > label {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.popup-container button {
  position: absolute;
  top: var(--padding);
  right: var(--padding);
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: 100;
  font-family: "Instrument Sans";
}
.popup-container .popup {
  width: 100%;
  height: auto;
  max-width: 25rem;
  padding: var(--padding);
  position: relative;
  z-index: 2;
}
.popup-container.show {
  opacity: 1;
  pointer-events: initial;
  z-index: 1000;
}

@keyframes anchor {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body > header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 100;
}
body > header #site-header-container {
  display: flex;
  align-items: center;
  padding: var(--padding);
  gap: var(--padding);
  width: 100%;
  height: 100%;
  position: relative;
}
body > header #site-header-container nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body > header #site-header-container nav a {
  font-size: 0.9rem;
  text-decoration: none;
}
body > header #site-header-container nav a:hover {
  text-decoration: underline;
}
body > header #site-header-container div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
body > header #site-header-container label[for=site-header-toggle] {
  display: none;
  margin-left: auto;
  cursor: pointer;
}
body > header.anchor {
  position: fixed;
  top: 0 !important;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
  animation-name: anchor;
  animation-duration: 0.25s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 720px) {
  body > header #site-header-container {
    display: grid;
    grid-template-rows: calc(var(--padding) * 2 + 2rem) 8rem 4rem;
    padding: 0;
    grid-gap: 0;
    backdrop-filter: blur(30px);
    background-color: rgba(0, 0, 0, 0.1);
  }
  body > header #site-header-container a.logo {
    grid-row: 1/2;
    padding: 0 var(--padding);
  }
  body > header #site-header-container label[for=site-header-toggle] {
    grid-row: 1/2;
    justify-self: flex-end;
    display: block;
    padding: 0 var(--padding);
  }
  body > header #site-header-container nav {
    grid-row: 2/3;
    grid-column: 1/3;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  body > header #site-header-container nav a {
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    padding: 0 var(--padding);
    border-top: 0.05rem solid rgba(255, 255, 255, 0.1);
  }
  body > header #site-header-container div {
    grid-row: 3/4;
    grid-column: 1/3;
    width: 100%;
    padding: var(--padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body > header #site-header-container div a, body > header #site-header-container div label {
    width: 100%;
    justify-content: center;
  }
  body > header #site-header-container:has(input:not(:checked)) {
    grid-template-rows: calc(var(--padding) * 2 + 2rem);
    border-bottom: 0;
    backdrop-filter: none;
    background-color: transparent;
  }
  body > header #site-header-container:has(input:not(:checked)) nav, body > header #site-header-container:has(input:not(:checked)) div {
    display: none;
  }
  body > header.anchor {
    padding: 0;
  }
  body > header.anchor #site-header-container {
    padding: 0;
  }
}

body > footer {
  width: 100%;
  height: auto;
  position: relative;
  display: grid;
}
body > footer #footer-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.05rem;
  padding: 0;
  margin: 0;
  border-top: 0.05rem solid #222;
  border-bottom: 0.05rem solid #222;
}
body > footer #footer-connect > * {
  background-color: black;
}
body > footer #footer-connect h2 {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  font-family: "Syne";
  text-transform: uppercase;
}
body > footer #footer-connect > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: black;
}
body > footer #footer-connect > div:last-child {
  padding: var(--padding);
}
body > footer #footer-connect form.sign-up {
  padding: var(--padding);
  border-right: 0.05rem solid #222;
}
body > footer #footer-connect form.sign-up input[type=email] {
  width: calc(100% - 3rem);
  border: 0.05rem solid #222;
  height: 3rem;
  padding: 0 1rem;
}
body > footer #footer-connect form.sign-up input[type=submit] {
  width: 3rem;
  height: 3rem;
}
body > footer #footer-connect > div {
  justify-content: flex-end;
  gap: 0.25rem;
}
body > footer #footer-connect > div h2 {
  justify-self: flex-start;
}
body > footer #footer-connect > div img {
  width: 3rem;
  height: 3rem;
  padding: 0.5rem;
}
@media (max-width: 840px) {
  body > footer #footer-connect {
    grid-template-columns: 1fr;
  }
  body > footer #footer-connect form.sign-up {
    border-right: 0;
    border-bottom: 0.05rem solid #222;
  }
}
body > footer #footer-legal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: calc(var(--padding) + var(--textPaddingX));
}
body > footer #footer-legal span {
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-right: auto;
}
body > footer #footer-legal a {
  font-size: 0.8rem;
  text-decoration: none;
  opacity: 0.5;
}
body > footer #footer-legal a:hover {
  text-decoration: underline;
}
@media (max-width: 510px) {
  body > footer #footer-legal {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: calc(var(--padding) / 2);
  }
  body > footer #footer-legal span {
    margin-top: 1rem;
  }
}

form.sign-up {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
form.sign-up h2 {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  margin: 0;
  font-family: "Syne";
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
form.sign-up input[type=email] {
  background-color: rgba(255, 255, 255, 0.1);
}
form.sign-up input[type=email]::placeholder {
  color: gray;
}
form.sign-up input[type=submit] {
  border-radius: 0;
  display: flex;
  align-items: center;
  background-color: white;
  color: black;
}
form.sign-up:after {
  content: "Your email has been subscribed.";
}

:root {
  --imageWidth: 15rem;
  --imageCount: 7;
  --gapWidth: 1.25rem;
  --totalWidth: calc((var(--padding) * 2) + (var(--imageWidth) * var(--imageCount)) + (var(--gapWidth) * (var(--imageCount) - 1)));
  --translate: calc((var(--totalWidth) - 100vw) * -1);
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--translate));
  }
}
#common-experts {
  display: flex;
  flex-direction: column;
}
#common-experts p {
  max-width: 52rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  padding: var(--textPadding);
  margin: 0 var(--padding) 1rem;
}
#common-experts #common-experts-logos {
  width: 100vw;
  overflow-x: auto;
  pointer-events: none;
}
#common-experts #common-experts-logos div {
  width: min-content;
  padding: var(--padding);
  display: flex;
  gap: var(--gapWidth);
  animation-name: slide;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-duration: 50s;
}
#common-experts #common-experts-logos div img {
  flex-shrink: 0;
  aspect-ratio: 3/2;
  width: var(--imageWidth);
  height: auto;
  background-color: rgba(255, 255, 255, 0.05);
}
#common-experts a.go {
  margin-left: var(--padding);
}
@media (max-width: 600px) {
  #common-experts p {
    font-size: 1.5rem;
  }
  #common-experts #common-experts-logos img {
    width: 12rem;
    height: 8rem;
  }
}

#news-featured-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  text-decoration: none;
}
#news-featured-item > div:first-child {
  width: 100%;
  min-height: calc((100vw - var(--padding) * 2) / 3 * 0.5625);
}
#news-featured-item > div:first-child img {
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #111;
  object-fit: cover;
  object-position: center center;
}
#news-featured-item > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  grid-gap: var(--textPaddingX);
  padding: var(--padding);
}
#news-featured-item > div:last-child .news-post-type {
  grid-column: 1/-1;
  grid-row: 1/2;
  font-family: "Syne";
  font-size: 0.7rem;
  opacity: 0.5;
  text-transform: uppercase;
}
#news-featured-item > div:last-child h3 {
  grid-row: 2/3;
  grid-column: 1/-1;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 400;
  padding: 0;
  text-overflow: ellipsis;
  margin-bottom: var(--padding);
}
#news-featured-item > div:last-child .news-post-date {
  grid-column: 1/2;
  grid-row: 3/4;
}
#news-featured-item > div:last-child .news-post-link {
  grid-column: 2/3;
  grid-row: 3/4;
  text-decoration: underline;
  align-self: flex-end;
  text-align: right;
}
@media (max-width: 800px) {
  #news-featured-item {
    grid-template-columns: 1fr;
    grid-row-gap: 1rem;
  }
  #news-featured-item > div:first-child img {
    aspect-ratio: 16/9;
  }
  #news-featured-item > div:last-child {
    padding: calc(var(--textPaddingX));
  }
}

@keyframes thanks {
  from {
    opacity: 1;
    pointer-events: initial;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
#subscribe-scroll-popup-container {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  background-image: linear-gradient(to bottom, transparent, black, black);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--outerPadding);
  transition: opacity 0.25s;
}
#subscribe-scroll-popup-container > div {
  width: 100%;
  max-width: 600px;
  transition: opacity 0.25s, transform 0.25s;
  transition-delay: 0.25s;
  position: relative;
}
#subscribe-scroll-popup-container > div > button {
  position: absolute;
  top: calc(var(--padding) / 1.5);
  right: var(--padding);
  width: var(--padding);
  height: var(--padding);
  line-height: var(--padding);
  padding: 0;
  justify-content: center;
  border-radius: 0;
  background-color: transparent;
  font-size: 1rem;
  font-weight: 100;
  color: white;
}
#subscribe-scroll-popup-container > div > button:hover {
  background-color: white;
  color: black;
  cursor: pointer;
}
#subscribe-scroll-popup-container > div form.sign-up {
  padding: var(--padding);
}
#subscribe-scroll-popup-container > div form.sign-up h2 {
  margin-bottom: 1rem;
}
#subscribe-scroll-popup-container > div form.sign-up p {
  width: 100%;
  display: block;
}
#subscribe-scroll-popup-container > div form.sign-up input[type=email] {
  width: calc(100% - 2.5rem);
  border: 0.05rem solid #222;
  height: 2.5rem;
  line-height: 2.5rem;
  padding: var(--textPadding);
  font-size: 0.75rem;
}
#subscribe-scroll-popup-container > div form.sign-up input[type=submit] {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8rem;
}
#subscribe-scroll-popup-container:not(#subscribe-scroll-popup-container.show) {
  opacity: 0;
  pointer-events: none;
}
#subscribe-scroll-popup-container:not(#subscribe-scroll-popup-container.show) > div {
  opacity: 0;
  transform: translateY(10px);
}
#subscribe-scroll-popup-container:has(form.sent) {
  animation-name: thanks;
  animation-delay: 1s;
  animation-duration: 0.25s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

form.table-form {
  display: flex;
  flex-direction: column;
}
form.table-form label {
  width: 100%;
  display: grid;
  gap: 0.05rem;
  border: 0.05rem solid #222;
  background: #222;
  margin-top: -0.05rem;
}
form.table-form label span {
  display: block;
  background-color: black;
  width: 100%;
  height: 100%;
  line-height: 3rem;
  font-family: "Syne";
  padding: var(--textPadding);
  font-size: 0.6rem;
  text-transform: uppercase;
  opacity: 1;
}
form.table-form label input, form.table-form label textarea {
  background-color: #111;
  width: 100%;
  height: 3rem;
  padding: var(--textPadding);
}
form.table-form label textarea {
  height: 6rem;
  resize: vertical;
  overflow-y: auto;
  padding: calc(var(--textPaddingX) * 2) var(--textPaddingX);
}
form.table-form input[type=submit] {
  height: 3rem;
  color: white;
  background-color: black;
  border: 0.15rem solid white;
  text-transform: uppercase;
  font-family: "Syne";
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
form.table-form input[type=submit]:disabled {
  opacity: 0.25;
}
@media (max-width: 600px) {
  form.table-form {
    gap: 0.5rem;
  }
  form.table-form label {
    grid-template-columns: 1fr;
    grid-template-rows: 2rem minmax(3rem, auto);
  }
  form.table-form label span {
    line-height: 2rem;
  }
}

@media (min-width: 600px) {
  form.contact-form label {
    grid-template-columns: 5rem 1fr;
  }
}
form.contact-form:after {
  content: "Your inquiry has been sent.";
}

#subscribe-fullscreen-popup-container #subscribe-fullscreen-popup form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#subscribe-fullscreen-popup-container #subscribe-fullscreen-popup form h2 {
  margin-bottom: 0.75rem;
}
#subscribe-fullscreen-popup-container #subscribe-fullscreen-popup form input[type=email] {
  width: calc(100% - 3rem);
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.05rem solid rgba(255, 255, 255, 0.1);
  height: 3rem;
  padding: var(--textPadding);
  color: white;
}
#subscribe-fullscreen-popup-container #subscribe-fullscreen-popup form input[type=email]::placeholder {
  color: gray;
}
#subscribe-fullscreen-popup-container #subscribe-fullscreen-popup form input[type=submit] {
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  color: black;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center center;
}

#index-founder-letter-toggle:checked + #index-founder-letter {
  display: grid !important;
}
#index-founder-letter-toggle:checked + #index-founder-letter + header {
  top: 3rem;
}
#index-founder-letter-toggle:checked + #index-founder-letter + header + main #index-hero {
  min-height: calc(100dvh - 3rem) !important;
}

#index-founder-letter {
  display: none;
  align-items: center;
  padding: 0 var(--padding);
  grid-template-columns: 1fr auto;
  width: 100%;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
}
#index-founder-letter p {
  font-size: 0.8rem;
}
#index-founder-letter p label {
  color: var(--red);
  text-decoration: underline;
  cursor: pointer;
}
#index-founder-letter > label {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

#index-hero {
  grid-template-columns: 1fr;
  min-height: 100dvh;
  background-image: url("https://static.junoindustries.ca/www/images/index-hero-bg.jpg");
  background-position: center center;
  background-size: cover;
  z-index: 10;
  position: relative;
}
#index-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#index-hero #index-hero-content {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding: var(--padding);
}
#index-hero #index-hero-content h1 {
  font-size: 3.75rem;
  max-width: 45rem;
}
@media (max-width: 640px) {
  #index-hero #index-hero-content h1 {
    font-size: 2rem;
    margin-left: -0.1rem;
  }
}

#index-about {
  padding: 0 var(--padding);
  display: grid;
  width: 100%;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  grid-gap: 1rem;
  position: relative;
  margin-top: -2rem;
}
#index-about h2 {
  display: none;
}
#index-about #index-about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 38rem;
  padding: calc(var(--padding) * 3) 0;
}
#index-about #index-about-content p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  max-width: 43rem;
  padding: var(--textPadding);
}
#index-about #index-about-content p strong {
  font-weight: 500;
  color: var(--red);
}
#index-about #index-about-content p:last-of-type {
  font-size: 1.33rem;
  line-height: 1.4;
}
#index-about #index-about-media {
  position: relative;
  width: auto;
  height: 100%;
}
#index-about #index-about-media img {
  top: 0;
  right: calc(var(--padding) * 2);
  position: absolute;
  width: auto;
  height: 100%;
}
@media (max-width: 1240px) {
  #index-about {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 0;
  }
  #index-about #index-about-content {
    max-width: none;
    padding: 0;
  }
  #index-about #index-about-media {
    display: flex;
    justify-content: center;
  }
  #index-about #index-about-media img {
    width: calc(100% - var(--padding) * 2);
    position: relative;
    top: auto;
    right: auto;
  }
}

#index-macro {
  height: 450vh;
}
#index-macro h2 {
  display: none;
}
#index-macro #index-macro-content {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 20rem;
  grid-column-gap: var(--padding);
  width: 100%;
  min-height: 100dvh;
  height: min-content;
  padding: var(--padding);
}
#index-macro #index-macro-content #index-macro-content-visuals {
  position: relative;
}
#index-macro #index-macro-content #index-macro-content-visuals div {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: var(--padding);
  opacity: 0;
}
#index-macro #index-macro-content #index-macro-content-visuals div img, #index-macro #index-macro-content #index-macro-content-visuals div video {
  object-fit: contain;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#index-macro #index-macro-content #index-macro-content-visuals div video {
  object-fit: cover;
}
#index-macro #index-macro-content #index-macro-content-visuals div:nth-child(1) {
  background-color: #F7F4EE;
}
#index-macro #index-macro-content #index-macro-content-visuals div:nth-child(2) {
  background-color: #F7F4EE;
}
#index-macro #index-macro-content #index-macro-content-visuals div:nth-child(3) {
  background-color: black;
  padding: 0;
}
#index-macro #index-macro-content #index-macro-content-visuals div:nth-child(4) {
  background-color: #F7F4EE;
}
#index-macro #index-macro-content #index-macro-content-info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
#index-macro #index-macro-content #index-macro-content-info a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.25;
  text-decoration: none;
}
#index-macro #index-macro-content #index-macro-content-info a h3 {
  font-size: 0.9rem;
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  padding: 0;
  text-transform: uppercase;
}
#index-macro #index-macro-content #index-macro-content-info a span:first-of-type {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}
#index-macro #index-macro-content #index-macro-content-info a span:first-of-type img {
  display: inline-block;
  width: auto;
  height: 1.5rem;
  margin-right: 0.5rem;
}
#index-macro #index-macro-content #index-macro-content-info a span:last-of-type {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}
#index-macro #index-macro-content.step1 #index-macro-content-visuals > *:nth-child(1), #index-macro #index-macro-content.step1 #index-macro-content-info > *:nth-child(1) {
  opacity: 1;
}
#index-macro #index-macro-content.step2 #index-macro-content-visuals > *:nth-child(2), #index-macro #index-macro-content.step2 #index-macro-content-info > *:nth-child(2) {
  opacity: 1;
}
#index-macro #index-macro-content.step3 #index-macro-content-visuals > *:nth-child(3), #index-macro #index-macro-content.step3 #index-macro-content-info > *:nth-child(3) {
  opacity: 1;
}
#index-macro #index-macro-content.step4 #index-macro-content-visuals > *:nth-child(4), #index-macro #index-macro-content.step4 #index-macro-content-info > *:nth-child(4) {
  opacity: 1;
}
#index-macro #macro-span {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
#index-macro #macro-span div {
  width: 100%;
  height: 100dvh;
}
@media (max-width: 1200px) {
  #index-macro #index-macro-content {
    grid-template-columns: 1fr 15rem;
  }
  #index-macro #index-macro-content #index-macro-content-info a h3 {
    font-size: 0.7rem;
  }
  #index-macro #index-macro-content #index-macro-content-info a span:first-of-type {
    font-size: 1.5rem;
  }
  #index-macro #index-macro-content #index-macro-content-info a span:last-of-type {
    font-size: 0.7rem;
  }
}
@media (max-width: 1000px) {
  #index-macro #index-macro-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr min-content;
    grid-gap: var(--padding);
  }
  #index-macro #index-macro-content #index-macro-content-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
  }
  #index-macro #index-macro-content #index-macro-content-info a {
    grid-column: 1/2;
    grid-row: 1/2;
    opacity: 0;
  }
  #index-macro #index-macro-content #index-macro-content-info a h3 {
    font-size: 0.9rem;
  }
  #index-macro #index-macro-content #index-macro-content-info a span:first-of-type {
    font-size: 2rem;
  }
  #index-macro #index-macro-content #index-macro-content-info a span:last-of-type {
    font-size: 0.9rem;
  }
}

#index-approach h2 {
  font-family: "Syne";
  text-transform: uppercase;
}
#index-approach > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #222;
}
#index-approach > div div {
  display: flex;
  flex-direction: column;
  background-color: black;
}
#index-approach > div div img {
  aspect-ratio: 1;
  width: 100%;
  max-width: 2.5rem;
  height: 100%;
  margin: 0.1rem;
  margin-bottom: 1rem;
}
#index-approach > div div span {
  font-weight: 600;
  font-size: 1rem;
  padding: var(--textPadding);
  margin-bottom: 0.5rem;
}
#index-approach > div div p {
  padding: var(--textPadding);
}
@media (max-width: 700px) {
  #index-approach > div {
    grid-template-columns: 1fr;
    gap: 0.05rem;
  }
  #index-approach > div div {
    position: relative;
    padding: var(--padding) 0 var(--padding) 4.5rem;
  }
  #index-approach > div div img {
    position: absolute;
    left: 0.25rem;
    top: 0;
    margin-top: -0.25rem;
  }
}

#index-solutions {
  display: flex;
  flex-direction: column;
}
#index-solutions #index-solutions-header {
  background-color: white;
  padding: var(--padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#index-solutions #index-solutions-header #index-solutions-header-content {
  width: 100%;
}
#index-solutions #index-solutions-header #index-solutions-header-content h2 {
  text-transform: uppercase;
  font-family: "Syne";
  color: black;
  opacity: 0.5;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
#index-solutions #index-solutions-header h3 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: none;
  padding: var(--textPadding);
  color: black;
  margin: 0;
}
#index-solutions #index-solutions-header #index-solutions-header-icons {
  flex-shrink: 0;
  position: relative;
  filter: invert(1);
  width: auto;
  height: auto;
  padding: var(--padding);
  display: flex;
  gap: 1.25rem;
  margin: var(--padding) calc(var(--padding) * 2);
  overflow: visible;
}
#index-solutions #index-solutions-header #index-solutions-header-icons div {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1;
}
#index-solutions #index-solutions-header #index-solutions-header-icons div div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
#index-solutions #index-solutions-header #index-solutions-header-icons div div:before {
  aspect-ratio: 1;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  border: 0.05rem solid #222;
  transform: rotate(-45deg);
}
#index-solutions #index-solutions-header #index-solutions-header-icons div div img {
  width: 66.6%;
  margin-top: -0.5rem;
}
#index-solutions #index-solutions-header #index-solutions-header-icons div div span {
  font-size: 0.5rem;
  text-transform: uppercase;
  font-family: "Syne";
  opacity: 1;
}
#index-solutions .index-solutions-item {
  padding: var(--padding);
  height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  overflow: hidden;
}
#index-solutions .index-solutions-item:nth-child(3) {
  background: linear-gradient(99.85deg, #3A5733 0%, #44351B 100%);
}
#index-solutions .index-solutions-item:nth-child(4) {
  background: linear-gradient(99.85deg, #2E577F 0%, #003C63 100%);
}
#index-solutions .index-solutions-item:nth-child(5) {
  background: linear-gradient(99.85deg, #6AB4FF 0%, #A4C9E1 100%);
}
#index-solutions .index-solutions-item:nth-child(6) {
  background: linear-gradient(99.85deg, #150E30 0%, #E1CBA4 100%);
}
#index-solutions .index-solutions-item:nth-child(7) {
  background: linear-gradient(99.85deg, #075106 0%, #112016 100%);
}
#index-solutions .index-solutions-item span {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Syne";
  text-transform: uppercase;
  margin-bottom: auto;
}
#index-solutions .index-solutions-item span img {
  width: 2rem;
  height: 2rem;
  filter: invert(1);
}
#index-solutions .index-solutions-item h3 {
  font-family: "Instrument Sans", sans-serif;
  font-size: 5rem;
  text-transform: none;
  margin: 0;
  padding: var(--textPadding);
  margin-left: -0.25rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#index-solutions .index-solutions-item p {
  max-width: 50rem;
  font-size: 1.25rem;
  padding: var(--textPadding);
  line-height: 1.2;
  margin-bottom: var(--textPaddingX);
}
@media (max-width: 1140px) {
  #index-solutions #index-solutions-header #index-solutions-header-icons {
    width: calc(15rem + var(--padding) * 3);
    height: calc(15rem + var(--padding) * 2);
    padding: 0;
    margin: 0;
  }
  #index-solutions #index-solutions-header #index-solutions-header-icons div {
    position: absolute;
    transform: translate(-50%, -50%);
  }
  #index-solutions #index-solutions-header #index-solutions-header-icons div:nth-child(1) {
    top: 50%;
    left: 50%;
  }
  #index-solutions #index-solutions-header #index-solutions-header-icons div:nth-child(2) {
    top: calc(50% - 4rem);
    left: calc(50% - 4rem);
  }
  #index-solutions #index-solutions-header #index-solutions-header-icons div:nth-child(3) {
    top: calc(50% - 4rem);
    left: calc(50% + 4rem);
  }
  #index-solutions #index-solutions-header #index-solutions-header-icons div:nth-child(4) {
    top: calc(50% + 4rem);
    left: calc(50% - 4rem);
  }
  #index-solutions #index-solutions-header #index-solutions-header-icons div:nth-child(5) {
    top: calc(50% + 4rem);
    left: calc(50% + 4rem);
  }
}
@media (max-width: 700px) {
  #index-solutions #index-solutions-header {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 3rem;
  }
}
@media (max-width: 580px) {
  #index-solutions #index-solutions-header h3 {
    font-size: 1.5rem;
  }
  #index-solutions #index-solutions-header div {
    flex-direction: column;
    gap: 0;
  }
  #index-solutions #index-solutions-header div img {
    margin: -0.05rem 0 0;
  }
  #index-solutions .index-solutions-item span {
    font-size: 0.8rem;
    gap: 0.8rem;
  }
  #index-solutions .index-solutions-item span img {
    width: 1.5rem;
  }
  #index-solutions .index-solutions-item h4 {
    font-size: 3rem;
    margin-left: -2.5px;
  }
  #index-solutions .index-solutions-item p {
    font-size: 1rem;
  }
}
@media (max-width: 370px) {
  #index-solutions .index-solutions-item h3 {
    font-size: 2.5rem;
    margin-left: 0;
  }
}

#company-vision p {
  font-size: 2rem;
  font-weight: 500;
  padding: var(--textPadding);
  line-height: 1.2;
  max-width: 52rem;
}
@media (max-width: 720px) {
  #company-vision p {
    font-size: 1.5rem;
  }
}

#company-mission p {
  font-size: 2rem;
  padding: var(--textPadding);
  line-height: 1.2;
  max-width: 52rem;
}
@media (max-width: 720px) {
  #company-mission p {
    font-size: 1.5rem;
  }
}

#company-harjit {
  padding: calc(var(--padding) * 4);
}
#company-harjit p {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  position: relative;
}
#company-harjit p:before, #company-harjit p:after {
  display: block;
  width: min-content;
  height: auto;
  font-size: 3rem;
  opacity: 0.5;
  position: absolute;
}
#company-harjit p:before {
  top: -1.5rem;
  left: -1.5rem;
  content: "“";
}
#company-harjit p:after {
  right: -1.5rem;
  bottom: -1.5rem;
  content: "„";
}
#company-harjit span {
  line-height: 1.4;
}
#company-harjit span:first-of-type {
  margin-top: var(--padding);
}
#company-harjit span:last-of-type {
  margin-top: 0.5rem;
  opacity: 0.5;
}
@media (max-width: 1100px) {
  #company-harjit {
    padding: calc(var(--padding) * 3);
  }
}
@media (max-width: 950px) {
  #company-harjit {
    padding: calc(var(--padding) * 2);
  }
}
@media (max-width: 700px) {
  #company-harjit p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

#company-values {
  padding-left: 0;
  padding-right: 0;
}
#company-values > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #151515;
  padding: calc(var(--padding) * 2) var(--padding);
  margin: 0.05rem 0;
}
#company-values > div h2 {
  font-size: 1.5rem;
  margin: 0;
}
#company-values > div p {
  font-size: 1.25rem;
  padding: var(--textPadding);
  line-height: 1.4;
}
@media (max-width: 800px) {
  #company-values > div {
    grid-template-columns: 1fr;
  }
  #company-values > div h2 {
    margin-bottom: 1rem;
  }
  #company-values > div p {
    font-size: 1rem;
  }
}

#company-approach div span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  padding: var(--textPadding);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  line-height: 1.2;
  width: 100%;
  border-bottom: 0.05rem solid #222;
}
@media (max-width: 720px) {
  #company-approach div span {
    font-size: 1.5rem;
  }
}

.company-staff .company-staff-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 2rem;
}
.company-staff .company-staff-list .company-staff-list-item {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-gap: 1rem;
  cursor: pointer;
}
.company-staff .company-staff-list .company-staff-list-item img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  background-color: #111;
  filter: grayscale(1);
  transition: filter 0.25s;
}
.company-staff .company-staff-list .company-staff-list-item > div {
  position: relative;
}
.company-staff .company-staff-list .company-staff-list-item > div h3 {
  margin: 0 0 0.25rem;
  padding: var(--textPadding);
  font-family: "Instrument Sans", sans-serif;
  text-transform: none;
  font-size: 1rem;
  font-weight: 500;
}
.company-staff .company-staff-list .company-staff-list-item > div span {
  padding: var(--textPadding);
  opacity: 0.5;
}
.company-staff .company-staff-list .company-staff-list-item > div .company-staff-list-item-bio {
  display: none;
}
.company-staff .company-staff-list .company-staff-list-item > div:after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translate(-10px, -50%);
  width: auto;
  height: auto;
  aspect-ratio: 1;
  content: "->";
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s;
}
.company-staff .company-staff-list .company-staff-list-item:hover img {
  filter: none;
}
.company-staff .company-staff-list .company-staff-list-item:hover > div:after {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (max-width: 1000px) {
  .company-staff .company-staff-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 750px) {
  .company-staff .company-staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .company-staff .company-staff-list .company-staff-list-item > div:after {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@media (max-width: 400px) {
  .company-staff .company-staff-list {
    grid-template-columns: 1fr;
  }
}

#staff-bio-popup-container {
  grid-template-columns: 1fr auto;
}
#staff-bio-popup-container button {
  position: relative;
  width: 100%;
  min-width: 2rem;
  height: 100%;
  background-color: transparent;
  opacity: 0;
  inset: 0;
}
#staff-bio-popup-container #staff-bio-popup {
  width: 100%;
  max-width: 25rem;
  height: 100%;
  overflow-y: auto;
  background-color: white;
  padding: var(--padding);
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: min-content auto;
  grid-gap: 0.5rem;
}
#staff-bio-popup-container #staff-bio-popup img {
  width: min-content;
  height: auto;
  max-width: 10rem;
}
#staff-bio-popup-container #staff-bio-popup > div {
  display: contents;
}
#staff-bio-popup-container #staff-bio-popup > div h3, #staff-bio-popup-container #staff-bio-popup > div span {
  grid-row: 1/2;
  grid-column: 2/3;
  align-self: flex-end;
}
#staff-bio-popup-container #staff-bio-popup > div h3 {
  margin-bottom: 1.25rem;
}
#staff-bio-popup-container #staff-bio-popup > div span {
  font-size: 0.8rem;
}
#staff-bio-popup-container #staff-bio-popup > div > div {
  grid-column: 1/3;
  grid-row: 2/3;
  padding-top: var(--padding);
}
#staff-bio-popup-container #staff-bio-popup > div > div p {
  font-size: 0.9rem;
}
#staff-bio-popup-container #staff-bio-popup > div > div p + p {
  margin-top: 0.5rem;
}
#staff-bio-popup-container #staff-bio-popup * {
  color: black;
}
#staff-bio-popup-container #staff-bio-popup p, #staff-bio-popup-container #staff-bio-popup span {
  padding: var(--textPadding);
}
@media (max-width: 500px) {
  #staff-bio-popup-container #staff-bio-popup {
    grid-template-columns: 1fr;
  }
  #staff-bio-popup-container #staff-bio-popup img {
    width: 100%;
    max-width: none;
  }
  #staff-bio-popup-container #staff-bio-popup > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #staff-bio-popup-container #staff-bio-popup > div h3, #staff-bio-popup-container #staff-bio-popup > div span {
    align-self: flex-start;
  }
  #staff-bio-popup-container #staff-bio-popup > div h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
  }
}

#investors-header img {
  object-position: center 30%;
}

#investors-overview div {
  columns: 2;
}
#investors-overview div p {
  padding: var(--textPadding);
  font-size: 0.9rem;
}
#investors-overview div p:first-of-type {
  font-size: 1.5rem;
}
#investors-overview div p + p {
  margin-top: 1rem;
}
@media (max-width: 750px) {
  #investors-overview div {
    columns: 1;
  }
}

#investors-highlight #investors-highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0.75rem;
}
#investors-highlight #investors-highlight-content > div {
  background-color: #111;
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#investors-highlight #investors-highlight-content > div img {
  width: 2.5rem;
  height: 2.5rem;
}
#investors-highlight #investors-highlight-content > div h3 {
  padding: 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  opacity: 0.5;
}
#investors-highlight #investors-highlight-content > div p {
  font-size: 0.9rem;
}
@media (max-width: 980px) {
  #investors-highlight #investors-highlight-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  #investors-highlight #investors-highlight-content {
    grid-template-columns: 1fr;
  }
}

#investors-summary > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  grid-gap: var(--padding);
  border-bottom: 0.05rem solid #222;
  padding: 1.25rem 0;
}
#investors-summary > div > div:first-child {
  line-height: 2;
  padding-top: 0.5rem;
}
#investors-summary > div > div:first-child h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  white-space: nowrap;
}
#investors-summary > div > div:first-child span {
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: var(--textPadding);
  opacity: 0.5;
}
#investors-summary > div > div:last-child h4 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
}
#investors-summary > div > div:last-child a {
  text-decoration: none;
  padding: var(--textPadding);
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
#investors-summary > div > div:last-child a img {
  width: 1rem;
}
#investors-summary > div > div:last-child a:hover {
  opacity: 0.5;
}
@media (max-width: 600px) {
  #investors-summary > div {
    grid-gap: 0.5rem;
    grid-template-columns: 1fr;
  }
}

#investors-capital table th, #investors-capital table td {
  text-align: right;
}
#investors-capital table th:first-child, #investors-capital table td:first-child {
  text-align: left;
}
@media (max-width: 670px) {
  #investors-capital table th, #investors-capital table td {
    font-size: 0.9rem;
  }
}

#investors-reporting table thead tr th:nth-child(1), #investors-reporting table thead tr th:nth-child(2) {
  text-align: left;
}
#investors-reporting table thead tr th:nth-child(3), #investors-reporting table thead tr th:nth-child(4), #investors-reporting table thead tr th:nth-child(5) {
  text-align: center;
}
#investors-reporting table thead tr th:nth-child(2) {
  padding-left: calc(var(--textPaddingX) * 2);
}
#investors-reporting table tbody tr td span {
  display: none;
}
#investors-reporting table tbody tr td a img {
  width: 2rem;
  height: 2rem;
}
#investors-reporting table tbody tr td a:hover {
  opacity: 0.5;
}
#investors-reporting table tbody tr td[rowspan] {
  text-align: center;
  border-right: 0.05rem solid #222;
  font-size: 1.5rem;
  font-weight: 600;
}
#investors-reporting table tbody tr td:nth-last-child(4) {
  text-align: left;
  padding-left: calc(var(--textPaddingX) * 2);
}
#investors-reporting table tbody tr td:nth-last-child(3), #investors-reporting table tbody tr td:nth-last-child(2), #investors-reporting table tbody tr td:nth-last-child(1) {
  text-align: center;
}
@media (max-width: 540px) {
  #investors-reporting table thead {
    display: none;
  }
  #investors-reporting table tbody tr {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 0.5rem;
    border-bottom: 0.05rem solid #222;
    padding: 1rem 0;
  }
  #investors-reporting table tbody tr td {
    display: grid;
    grid-template-columns: 8rem min-content auto;
    align-items: center;
    font-size: 0.9rem;
  }
  #investors-reporting table tbody tr td:before {
    display: block;
    content: attr(data-label);
    text-transform: uppercase;
    text-align: left;
    opacity: 0.5;
    font-size: 0.8rem;
  }
  #investors-reporting table tbody tr td span {
    display: inline;
    margin-left: 0.33rem;
    width: min-content;
    font-size: 0.9rem;
  }
  #investors-reporting table tbody tr td:nth-last-child(4), #investors-reporting table tbody tr td:nth-last-child(3) {
    margin: 0.25rem 0;
  }
  #investors-reporting table tbody tr td:nth-last-child(2), #investors-reporting table tbody tr td:nth-last-child(1) {
    background-color: white;
    color: black;
    border-radius: 0.25rem;
    position: relative;
    height: 2.2rem;
  }
  #investors-reporting table tbody tr td:nth-last-child(2) a, #investors-reporting table tbody tr td:nth-last-child(1) a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    text-align: right;
  }
  #investors-reporting table tbody tr td:nth-last-child(2) a img, #investors-reporting table tbody tr td:nth-last-child(1) a img {
    filter: invert(1);
  }
  #investors-reporting table tbody tr:has(td[rowspan]) td[rowspan] {
    display: none;
  }
  #investors-reporting table tbody tr:has(td[rowspan]) td:nth-child(2) {
    padding-left: calc(var(--textPaddingX));
  }
  #investors-reporting table tbody tr:has(td[rowspan]) td {
    text-align: left;
  }
  #investors-reporting table tbody tr:not(:has(td[rowspan])) td:nth-child(1) {
    padding-left: calc(var(--textPaddingX));
  }
}

#investors-presentation label {
  line-height: 0;
}
#investors-presentation label > img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
#investors-presentation label span {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: calc(var(--textPaddingX) * 2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: background-color 0.25s;
}
#investors-presentation label span img {
  width: auto;
  height: 100%;
}
#investors-presentation label:hover span {
  background-color: white;
  color: black;
}
#investors-presentation label:hover span img {
  filter: invert(1);
}

#investors-analysts * {
  white-space: nowrap;
}
@media (max-width: 670px) {
  #investors-analysts table thead {
    display: none;
  }
  #investors-analysts table tbody tr {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 0.05rem solid #222;
    padding: 1rem 0;
  }
  #investors-analysts table tbody tr td {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    border-bottom: 0;
    font-size: 0.9rem;
  }
  #investors-analysts table tbody tr td:before {
    display: block;
    content: attr(data-label);
    text-transform: uppercase;
    opacity: 0.5;
    font-size: 0.8rem;
  }
}

#investors-contact #investors-contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--padding);
}
#investors-contact #investors-contact-container > div p {
  font-size: 1.5rem;
  padding: var(--textPadding);
}
@media (max-width: 860px) {
  #investors-contact #investors-contact-container {
    display: flex;
    flex-direction: column-reverse;
  }
}

#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container {
  opacity: 1;
  pointer-events: initial;
  z-index: 1000;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup {
  max-width: 27rem;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form h2 {
  margin-bottom: 0.75rem;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form p {
  padding: var(--textPadding);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > div {
  border: 0.05rem solid #333;
  padding: calc(var(--padding) / 2);
  max-height: 50dvh;
  overflow-y: auto;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > div ol {
  padding: var(--textPadding);
  list-style: lower-alpha;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > div ol li {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  margin-left: 1rem;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > label {
  display: grid;
  grid-template-columns: 1rem 1fr;
  grid-gap: 0.5rem;
  margin: 1rem 0;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > label input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  outline: #333 solid 0.05rem;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > label input[type=checkbox]:checked {
  border: 0.25rem solid black;
  background-color: white;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form > label span {
  font-size: 0.8rem;
  line-height: 1.4;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form input[type=email] {
  width: calc(100% - 3rem);
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.05rem solid rgba(255, 255, 255, 0.1);
  height: 3rem;
  padding: var(--textPadding);
  color: white;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form input[type=email]::placeholder {
  color: gray;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form input[type=email]:disabled {
  opacity: 0.25;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form input[type=submit] {
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  display: flex;
  align-items: center;
  color: black;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center center;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form:after {
  content: "Thank you. Please check your mailbox.";
  background-image: none;
}
#presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form.sent h2, #presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form.sent p, #presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form.sent input, #presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form.sent div, #presentation-fullscreen-popup-toggle:checked + #presentation-popup-container #presentation-popup form.sent label {
  opacity: 0.25;
}

#newsroom-header div {
  width: 100%;
  z-index: 2;
}
#newsroom-header div span {
  padding: var(--textPadding);
  color: white;
  font-family: "Syne";
  text-transform: uppercase;
  opacity: 0.5;
}
#newsroom-header div h2 {
  margin-top: calc(var(--padding) / 3);
  text-indent: -0.075rem;
}

#newsroom-inquiries #newsroom-inquiries-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--padding);
}
@media (min-width: 600px) {
  #newsroom-inquiries #newsroom-inquiries-container #press-inquiries-form label {
    grid-template-columns: 8.5rem 1fr;
  }
}
#newsroom-inquiries #newsroom-inquiries-container #press-inquiries-form:after {
  content: "Your inquiry has been received.";
}
#newsroom-inquiries #newsroom-inquiries-container > div p {
  font-size: 1.5rem;
  padding: var(--textPadding);
}
@media (max-width: 860px) {
  #newsroom-inquiries #newsroom-inquiries-container {
    display: flex;
    flex-direction: column-reverse;
  }
}

.list-item {
  padding: calc(var(--textPaddingX) * 2) 0;
  border-bottom: 0.05rem solid #222;
  text-decoration: none;
}
.list-item img {
  background-color: #111;
}
.list-item h4 {
  line-height: 1.2;
}
.list-item:first-of-type {
  border-top: 0.05rem solid #222;
}
.list-item:hover {
  background-color: #111;
}

.news-list-item {
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  grid-column-gap: calc(var(--textPaddingX) * 2);
  align-items: flex-start;
}
.news-list-item img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}
.news-list-item > div {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: var(--textPaddingX);
}
.news-list-item > div span {
  font-family: "Syne";
  font-size: 0.7rem;
  opacity: 0.5;
  text-transform: uppercase;
}
.news-list-item > div h3 {
  padding: 0;
  font-size: 1.3rem;
}
.news-list-item > span {
  padding: var(--textPadding);
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 4.5rem;
}
@media (max-width: 500px) {
  .news-list-item {
    grid-template-columns: 5rem 1fr;
  }
  .news-list-item > span {
    grid-column: 2/3;
    padding: 0;
    margin-top: 1rem;
    line-height: 1;
  }
}

.media-list-item {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  grid-column-gap: 1.5rem;
  align-items: flex-start;
}
.media-list-item img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
}
.media-list-item h3 {
  padding: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 0.33rem 0;
}
.media-list-item > span {
  padding: var(--textPadding);
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 2.5rem;
}

#newsroom-brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
}
#newsroom-brand-list > a {
  width: 100%;
  height: min-content;
  line-height: 0;
  text-decoration: none;
}
#newsroom-brand-list > a img {
  display: block;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  background-color: #111;
  object-fit: cover;
  object-position: center center;
}
#newsroom-brand-list > a span {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  padding: calc(var(--textPaddingX) * 2) var(--textPaddingX);
}
#newsroom-brand-list #newsroom-brand-featured-download {
  width: 100%;
  height: 100%;
}
#newsroom-brand-list #newsroom-brand-featured-download div {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
}
#newsroom-brand-list #newsroom-brand-featured-download div a {
  width: auto;
  font-size: 0.7rem;
}
#newsroom-brand-list #newsroom-brand-featured-download div a img {
  height: 50%;
  margin-left: 0.75rem;
}
#newsroom-brand-list .newsroom-brand-category-item {
  border: 0.05rem solid #222;
}
#newsroom-brand-list .newsroom-brand-category-item .newsroom-brand-category-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  background: -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), -webkit-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background: -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), -moz-linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), linear-gradient(45deg, rgba(0, 0, 0, 0.0980392) 25%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.0980392) 75%, rgba(0, 0, 0, 0.0980392) 0), white;
  background-repeat: repeat, repeat;
  background-position: 0 0, 0.25rem 0.25rem;
  -webkit-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-background-origin: padding-box, padding-box;
  background-origin: padding-box, padding-box;
  -webkit-background-clip: border-box, border-box;
  background-clip: border-box, border-box;
  -webkit-background-size: 0.5rem 0.5rem, 0.5rem 0.5rem;
  background-size: 0.5rem 0.5rem, 0.5rem 0.5rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-transform: scaleX(1) scaleY(1) scaleZ(1);
  transform: scaleX(1) scaleY(1) scaleZ(1);
}
#newsroom-brand-list .newsroom-brand-category-item .newsroom-brand-category-item-image img {
  max-width: max-content;
}
#newsroom-brand-list .newsroom-brand-category-item .newsroom-brand-category-item-menu span {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.8rem;
  padding: 1rem var(--textPaddingX);
}
#newsroom-brand-list .newsroom-brand-category-item .newsroom-brand-category-item-menu div {
  display: flex;
  border-top: 0.05rem solid #222;
  background-color: #222;
  gap: 0.05rem;
}
#newsroom-brand-list .newsroom-brand-category-item .newsroom-brand-category-item-menu div a {
  height: 2rem;
  line-height: 2rem;
  display: block;
  background-color: black;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  font-size: 0.7rem;
}
#newsroom-brand-list .newsroom-brand-category-item .newsroom-brand-category-item-menu div a:hover {
  background-color: white;
  color: black;
}
@media (max-width: 700px) {
  #newsroom-brand-list {
    grid-template-columns: 1fr 1fr;
  }
  #newsroom-brand-list #newsroom-brand-featured-download {
    grid-column: 1/-1;
    height: min-content;
  }
  #newsroom-brand-list #newsroom-brand-featured-download div {
    background-color: transparent;
    aspect-ratio: initial;
  }
}

#newsroom-news-post-header {
  background-color: #222;
  height: min-content;
  padding-bottom: calc(var(--padding) * 2);
}
#newsroom-news-post-header:before {
  display: none;
}
#newsroom-news-post-header div {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#newsroom-news-post-header div h1 {
  font-family: "Instrument Sans";
  text-transform: none;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 600;
}
#newsroom-news-post-header div span {
  padding: var(--textPadding);
  text-transform: uppercase;
  color: white;
}
#newsroom-news-post-header div span:first-of-type {
  font-family: "Syne";
  opacity: 0.5;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
#newsroom-news-post-header div span:last-of-type {
  font-size: 0.75rem;
  letter-spacing: 0.025rem;
  margin-top: 1rem;
}

#newsroom-news-post-header + section:has(img) {
  max-width: 50rem;
  margin: -4rem auto -3rem;
}

#newsroom-news-post-article {
  width: 100%;
  padding: var(--padding);
}
#newsroom-news-post-article .ql-editor {
  margin: 0 auto;
  max-width: 50rem;
}
#newsroom-news-post-article .ql-editor * {
  line-height: 1.4;
}
#newsroom-news-post-article .ql-editor > * + * {
  margin-top: 1rem;
}
#newsroom-news-post-article .ql-editor blockquote {
  padding: var(--padding);
  background-color: #111;
}
#newsroom-news-post-article .ql-editor p {
  padding: var(--textPadding);
}
#newsroom-news-post-article .ql-editor p + p {
  margin-top: 1rem;
}
#newsroom-news-post-article .ql-editor p a {
  color: #999;
}

#contact-main #contact-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--padding);
}
#contact-main #contact-main-container > div h2 {
  margin-bottom: calc(var(--padding) / 2);
}
#contact-main #contact-main-container > div p + h2 {
  margin-top: 3rem;
}
#contact-main #contact-main-container > div p {
  padding: var(--textPadding);
}
#contact-main #contact-main-container #contact-main-info {
  grid-column: 1/2;
}
#contact-main #contact-main-container #contact-main-alt {
  grid-column: 1/2;
}
#contact-main #contact-main-container #contact-main-alt #contact-main-socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  padding: var(--textPadding);
}
#contact-main #contact-main-container #contact-main-form {
  grid-column: 2/3;
  grid-row: 1/-1;
}
@media (max-width: 860px) {
  #contact-main #contact-main-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  #contact-main #contact-main-container #contact-main-form {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  #contact-main #contact-main-container #contact-main-alt {
    margin-top: 2rem;
    grid-row: 3/4;
  }
}

#legal-hero #legal-hero-container {
  margin: 0;
  padding: calc(var(--padding) + 10rem) var(--padding) var(--padding);
}
#legal-hero #legal-hero-container h1 {
  font-family: "Instrument Sans";
  text-transform: none;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
#legal-hero #legal-hero-container span {
  padding: var(--textPadding);
  font-size: 0.9rem;
}

#legal-body #legal-body-container {
  margin: 0;
  padding: var(--padding);
}
#legal-body #legal-body-container > * {
  margin-top: 0.5rem;
  padding: var(--textPadding);
}
#legal-body #legal-body-container * {
  line-height: 1.4;
}
#legal-body #legal-body-container ul li, #legal-body #legal-body-container ol li {
  margin-left: 1.5rem;
}
#legal-body #legal-body-container ul {
  list-style: square;
}
#legal-body #legal-body-container h2 {
  margin-top: 2rem;
}
#legal-body #legal-body-container h3 {
  margin-top: 1rem;
}

/*# sourceMappingURL=styles.css.map */
