:root {
  --red: #E62828;
  --px: 0.05rem;
  --padding: 1.5rem;
  --textPaddingX: 0.5rem;
  --textPadding: 0 var(--textPaddingX);
  --mono: 'IBM Plex Mono', monospace;
  --text: 'Instrument Sans', sans-serif;
  --title: 'Syne', sans-serif;
  --titleSpacing: calc(var(--px) * -2);
}
@media (max-width: 640px) {
  :root {
    --padding: 1rem;
  }
}

@font-face {
  font-family: "Instrument Sans", sans-serif;
  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", sans-serif;
  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", sans-serif;
  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", sans-serif;
  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", sans-serif;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 700;
  src: url("https://static.junoindustries.ca/www/fonts/Syne-Bold.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 100;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-Thin.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 200;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-ExtraLight.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 300;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-Light.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 400;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-Regular.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 500;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-Medium.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 600;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-SemiBold.ttf");
}
@font-face {
  font-family: "IBM Plex Mono", monospace;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 700;
  src: url("https://static.junoindustries.ca/www/fonts/IBMPlexMono-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", sans-serif;
  text-wrap-style: pretty;
  padding: var(--textPadding);
}

h2 {
  text-transform: uppercase;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  opacity: 0.5;
  font-size: 0.8rem;
  margin-bottom: var(--padding);
}

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;
}
p + p {
  margin-top: 0.75rem;
}

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", sans-serif;
  font-weight: 700;
  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), rgb(0, 0, 0));
  font-family: "Syne", sans-serif;
  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 {
  width: 100%;
  color: red;
  padding: var(--textPadding);
  margin-bottom: 1rem;
}
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;
  padding: var(--padding);
}
section:not(.show) {
  opacity: 0;
  transform: translateY(0.5rem);
}

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

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-start;
  gap: calc(var(--padding) * 1.5);
  padding: var(--padding);
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
}
header > a {
  font-size: 0;
}
header > a img {
  height: 2rem;
}
header #nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
header #nav a {
  font-size: 0.85rem;
  text-decoration: none;
}
header #nav a:hover {
  text-decoration: underline;
}

#hero {
  height: 100dvh;
  position: relative;
  display: grid;
  grid-gap: var(--padding);
  grid-template-rows: auto 1fr;
  padding-bottom: 0;
}
#hero #hero-content {
  padding-top: calc(5rem + var(--padding));
  height: 60dvh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
}
#hero #hero-content h1 {
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  max-width: 60vw;
  text-wrap-style: pretty;
  position: relative;
  z-index: 1;
  transition-property: transform, color;
  transition-duration: 0.75s, 0.5s;
  transition-delay: 0s, 0.5s;
}
#hero #hero-content h1:before {
  width: min-content;
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  content: "Investor Relations";
  padding: calc(var(--padding) / 4);
  background-color: rgba(255, 255, 255, 0.0823529412);
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  opacity: 0.75;
  border: 1px solid rgba(255, 255, 255, 0.0980392157);
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.5s;
  transition-delay: 0.5s, 1s;
}
#hero #hero-content .button {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  position: relative;
}
#hero #hero-content .button:after {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  content: "Download PDF";
  text-transform: uppercase;
  font-size: 0.5rem;
  letter-spacing: 0;
  opacity: 0.5;
  color: white !important;
}
#hero #hero-media {
  background-color: black;
  position: relative;
  overflow: hidden;
}
#hero #hero-media:before, #hero #hero-media:after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#hero #hero-media:before {
  background-image: linear-gradient(to bottom, white, transparent);
  opacity: 0.15;
}
#hero #hero-media:after {
  background-color: white;
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.75s, 0.5s;
  transition-delay: 0s, 0.75s;
}
#hero:not(.show) #hero-content h1 {
  color: black;
  transform: translateY(0.5rem);
}
#hero:not(.show) #hero-content h1:before {
  opacity: 0;
  transform: translateY(0.5rem);
}
#hero:not(.show) #hero-media:after {
  transform: translateX(-100%);
  opacity: 1;
}
@media (max-width: 640px) {
  #hero #hero-content h1 {
    font-size: 2rem;
    margin-left: -0.1rem;
  }
}

#video {
  margin-top: calc(-4rem - var(--padding));
}
#video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

#highlights ol {
  display: flex;
  flex-direction: column;
}
#highlights ol li {
  padding: calc(var(--padding) / 2) var(--textPaddingX);
  border-bottom: var(--px) solid rgba(255, 255, 255, 0.1333333333);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.3;
  letter-spacing: calc(-1 * var(--px));
  transition-duration: 4s;
}
#highlights ol li.show {
  color: rgb(255, 255, 255);
  transition-duration: 0.25s;
}

#macro {
  background-color: #F7F4EE;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--padding) * 2) 0;
}
#macro div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(var(--padding) * 2) var(--padding);
}
#macro div h2 {
  font-family: var(--text);
  text-transform: none;
  opacity: 1;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: calc(var(--px) * -2);
  text-indent: calc(var(--px) * -4);
  color: black;
}
#macro div > span {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.66rem;
  opacity: 0.5;
  padding: var(--textPadding);
  color: black;
}
#macro div ul {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0.75rem;
  grid-row-gap: 1rem;
}
#macro div ul li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
#macro div ul li h3 {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.4;
  color: black;
}
#macro div ul li span {
  padding: var(--textPadding);
  line-height: 1.4;
  font-size: 0.8rem;
  opacity: 0.8;
  color: black;
}
#macro figure figcaption {
  font-size: 0;
}
@media (max-width: 1200px) {
  #macro {
    grid-template-columns: 1fr;
  }
  #macro figure {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  #macro div ul {
    grid-template-columns: 1fr;
  }
}

#strategy h2 {
  font-family: var(--text);
  text-transform: none;
  opacity: 1;
  margin-bottom: var(--padding);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-indent: calc(var(--px) * -3);
}
#strategy h3 {
  margin-top: calc(var(--padding) * 2);
}
#strategy p {
  font-size: 0.8rem;
  padding: var(--textPadding);
}
#strategy div {
  max-width: 55rem;
  columns: 2;
}
#strategy > p {
  max-width: 55rem;
}
#strategy ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-gap: var(--px);
  margin-top: 1rem;
  margin-bottom: calc(var(--padding) * 2);
  overflow: hidden;
  background-color: black;
}
#strategy ul li {
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  padding: var(--padding);
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  #strategy ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  #strategy div {
    columns: 1;
  }
}

#team h2 {
  margin-bottom: var(--padding);
}
#team ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
#team ul li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#team ul li img {
  aspect-ratio: 3/4;
  background-color: #222;
  margin-bottom: 0.75rem;
}
#team ul li span {
  line-height: 1.2;
}
#team ul li span:first-of-type {
  font-size: 1rem;
  font-weight: 500;
  padding: var(--textPadding);
}
#team ul li span:last-of-type {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  padding: var(--textPadding);
  opacity: 0.5;
}
@media (max-width: 1000px) {
  #team ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 750px) {
  #team ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  #team ul {
    grid-template-columns: 1fr;
  }
}

#capital {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: var(--padding) 0;
  margin: 0 var(--padding);
  border-top: var(--px) solid #222;
  border-bottom: var(--px) solid #222;
}
#capital h2 {
  font-family: var(--text);
  text-transform: none;
  opacity: 1;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-indent: calc(var(--px) * -4);
  line-height: 1;
}
#capital ul {
  display: flex;
  flex-direction: column;
}
#capital ul li {
  display: flex;
  justify-content: space-between;
  padding: 1rem var(--textPaddingX);
  border-bottom: var(--px) solid #222;
  font-size: 0.9rem;
}
#capital ul li span:first-of-type {
  font-size: 0.9rem;
}
#capital ul li span:last-child {
  font-weight: 100;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  opacity: 0.8;
}
#capital ul li:last-child {
  border-bottom: 0;
}
#capital ul li:last-child span {
  font-weight: 700;
  opacity: 1;
}
@media (max-width: 750px) {
  #capital {
    grid-template-columns: 1fr;
    grid-row-gap: var(--padding);
  }
}

#press h2 {
  margin-bottom: var(--padding);
}
#press h2 + h2 {
  margin-top: 3rem;
}
#press ul {
  display: flex;
  flex-direction: column;
}
#press ul li {
  width: 100%;
}
#press ul li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 1rem var(--textPaddingX);
  border-bottom: var(--px) solid #222;
}
#press ul li a:first-of-type {
  border-top: var(--px) solid #222;
}
#press ul li a span:not(.date) {
  display: block;
  line-height: 1.4;
}
#press ul li a span:not(.date) strong {
  font-size: 0.95rem;
  font-weight: 500;
}
#press ul li a .date {
  font-size: 0.7rem;
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 0.25rem;
}

#media {
  padding-left: 0;
  padding-right: 0;
}
#media h2 {
  padding-left: calc(var(--padding) + var(--textPaddingX));
  padding-right: calc(var(--padding) + var(--textPaddingX));
}
#media div {
  width: 100%;
  height: 250px;
  padding: 0 var(--padding);
  overflow-x: auto;
}
#media div ul {
  width: min-content;
  display: flex;
  gap: 0.75rem;
}
#media div ul li {
  width: 250px;
  aspect-ratio: 1;
  flex-shrink: 0;
}
#media div ul li a {
  width: 250px;
  aspect-ratio: 1;
  position: relative;
  background-color: #151515;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
#media div ul li a img {
  position: absolute;
  width: 250px;
  height: 250px;
  aspect-ratio: 1;
  z-index: 0;
}
#media div ul li a span {
  height: auto;
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
  padding: var(--textPaddingX);
  overflow: hidden;
  opacity: 0.5;
  transform: translateY(calc(100% - 2rem));
}
#media div ul li a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  top: auto;
  width: 100%;
  height: 3.2rem;
  background-image: linear-gradient(to bottom, transparent, #151515);
  z-index: 2;
}
#media div ul li a:hover span {
  transform: translateY(0);
}
#media div ul li a:hover:after {
  opacity: 0;
}

#strategy {
  display: grid;
}

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", sans-serif;
  text-transform: uppercase;
}
body > footer #footer-connect > div {
  border-left: 0.05rem solid #222;
  justify-content: flex-end;
  gap: 0.25rem;
  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 > div h2 {
  justify-self: flex-start;
  align-self: flex-start;
}
body > footer #footer-connect > div a {
  align-self: flex-end;
}
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.subscribe {
    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.subscribe {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: var(--padding);
}
form.subscribe h2 {
  display: block;
  width: 100%;
  font-size: 0.8rem;
  margin: 0;
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
form.subscribe p {
  width: 100%;
  display: block;
}
form.subscribe .form-fineprint-message {
  width: 100%;
  font-size: 0.8rem;
  opacity: 0.5;
  padding: var(--textPadding);
  margin-bottom: 1rem;
  text-wrap-style: pretty;
}
form.subscribe input[type=text], form.subscribe input[type=email] {
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  padding: var(--textPadding);
  border: 0.05rem solid #222;
}
form.subscribe input[type=text]::placeholder, form.subscribe input[type=email]::placeholder {
  color: rgb(128, 128, 128);
}
form.subscribe input[type=text] {
  border-bottom: 0;
  width: 50%;
}
form.subscribe input[type=text]:first-of-type {
  border-right: 0;
}
form.subscribe label {
  width: 100%;
  height: auto;
  display: flex;
}
form.subscribe label input[type=checkbox] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  outline: white solid 1px;
  border: 0.2rem solid black;
  border-radius: 0.2rem;
  margin: 0.5rem;
  opacity: 0.5;
}
form.subscribe label input[type=checkbox]:checked {
  background-color: white;
  opacity: 1;
}
form.subscribe label span {
  margin: 0.5rem 0;
  line-height: 1.3;
  font-size: 0.8rem;
}
form.subscribe label:hover input[type=checkbox] {
  opacity: 1;
}
form.subscribe label:first-of-type {
  margin-top: 0.5rem;
}
form.subscribe label:last-of-type {
  margin-bottom: 0.5rem;
}
form.subscribe input[type=submit] {
  width: 100%;
  height: 3rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 0;
  display: flex;
  align-items: center;
  background-color: white;
  color: black;
}
form.subscribe: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", sans-serif;
  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: 0;
  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: all 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:not(#subscribe-scroll-popup-container.show) {
  opacity: 0;
  transform: translateY(10%);
  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", sans-serif;
  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", sans-serif;
  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.";
}

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