@font-face {
  font-display: swap;
  font-family: "Founders Grotesk";
  src: url("/fonts/founders-grotesk-web-regular.woff2") format("woff2"), url("/fonts/founders-grotesk-web-regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Heldane Display";
  src: url("/fonts/heldane-display-web-regular.woff2") format("woff2"), url("/fonts/heldane-display-web-regular.woff") format("woff");
}
:root {
  --layout-max-width: 1440px;
  --grid-column-count: 12;
  --grid-gap: 1rem;
  --line-height: 1.2rem;
  --section-spacing: calc(var(--line-height) * 6);
  --color-1: #00152B;
  --color-type-1: #ffffff;
  --color-type-2: #9BDBFF;
  --font-1: "Founders Grotesk", Helvetica, Arial, sans-serif;
  --font-2: "Heldane Display", Helvetica, Arial, sans-serif;
  --font-size-body: 18px;
  --font-size-1: calc(3.2rem * 0.85);
  --font-size-2: calc(2rem * 0.85);
  --font-size-3: 1rem;
  --font-size-4: 0.8rem;
}
@media (min-width: 768px) {
  :root {
    --section-spacing: calc(var(--line-height) * 8);
  }
}
@media (min-width: 768px) {
  :root {
    --font-size-body: 30px;
    --font-size-1: 3.2rem;
    --font-size-2: 2rem;
    --font-size-3: 1rem;
    --font-size-4: 0.6rem;
  }
}

._hidden {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

@media (max-width: 768px) {
  ._desktop-only {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._mobile-only {
    display: none !important;
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--layout-max-width);
  padding-left: var(--grid-gap);
  padding-right: var(--grid-gap);
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-column-count), minmax(0, 1fr));
  grid-gap: calc(var(--grid-gap) / 2);
}
@media (min-width: 960px) {
  .grid {
    grid-gap: var(--grid-gap);
  }
}

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

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 2dppx) {
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

::-moz-selection {
  background-color: var(--color-primary-light);
  color: var(--color-type-base);
}

::selection {
  background-color: var(--color-primary-light);
  color: var(--color-type-base);
}

:root {
  color: var(--color-type-1);
  font-family: var(--font-1);
  font-weight: normal;
  line-height: var(--line-height);
  font-size: var(--font-size-body);
  background-color: var(--color-1);
}
:root.-no-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
}
body.-no-scroll {
  height: 100vh;
  overflow-y: hidden;
}

button,
.button {
  background-color: transparent;
  color: var(--color-type-2);
  border: 1px solid var(--color-type-2);
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-weight: normal;
  line-height: 1;
  padding: 0.7em 1.5em 0.8em;
  -webkit-transition: background-color 50ms;
  transition: background-color 50ms;
  border-radius: 10rem;
  font-size: var(--font-size-4);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
button:hover, button:focus,
.button:hover,
.button:focus {
  background-color: var(--color-type-1);
  border-color: var(--color-type-1);
  color: var(--color-1);
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-2);
  font-weight: normal;
}
h1 br,
h2 br,
h3 br,
h4 br {
  display: none;
}
@media (min-width: 768px) {
  h1 br,
h2 br,
h3 br,
h4 br {
    display: block;
  }
}

h1 {
  font-size: var(--font-size-1);
  line-height: 1;
}

h2 {
  font-size: var(--font-size-2);
  line-height: 1.13;
}

p + h2 {
  margin-top: calc(3 * var(--line-height));
}

h3 {
  font-size: var(--font-size-3);
}

h4 {
  font-size: var(--font-size-4);
}

input {
  font-family: inherit;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--color-type-2);
}
a:hover {
  text-decoration: underline;
}

main {
  outline: none;
}

p {
  line-height: var(--line-height);
  margin: 0;
}
p + p {
  margin-top: 1rem;
}

li + li {
  margin-top: calc(0.5 * var(--line-height));
}

.headline {
  margin-bottom: calc(0.5 * var(--line-height));
  text-align: center;
}

.note {
  font-size: var(--font-size-4);
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(2 * var(--line-height));
  max-width: 45ch;
  text-align: center;
  text-transform: uppercase;
}

.subheadline {
  display: block;
  font-family: var(--font-1);
  font-size: var(--font-size-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: calc(0.5 * var(--line-height));
}

.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hamburger.-active {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger.-active .hamburger-top {
  stroke-dashoffset: -98px;
}
.hamburger.-active .hamburger-bottom {
  stroke-dashoffset: -138px;
}

.hamburger-line {
  fill: none;
  stroke: var(--color-type-1);
  stroke-width: 3;
  -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
}

.hamburger-top {
  stroke-dasharray: 40 139;
}

.hamburger-bottom {
  stroke-dasharray: 40 180;
}

.footerCta {
  border-top: 1px solid var(--color-type-1);
  padding-top: calc(var(--section-spacing) / 2);
  padding-bottom: calc(var(--section-spacing) / 2);
  text-align: center;
}

.footerCta-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 40ch;
}

.footerSection {
  color: var(--color-type-2);
  font-size: var(--font-size-4);
  letter-spacing: 0.05em;
  padding-bottom: calc(1 * var(--line-height));
  text-transform: uppercase;
}

.footerSection-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
.footerSection-nav > * {
  margin-bottom: calc(1 * var(--line-height));
}
@media (min-width: 960px) {
  .footerSection-nav > * {
    margin-bottom: 0;
    padding-right: calc(1 * var(--line-height));
  }
}
@media (min-width: 1120px) {
  .footerSection-nav > * {
    padding-right: 0;
  }
}
@media (min-width: 960px) {
  .footerSection-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

.footerSection-symbol {
  margin-bottom: calc(var(--section-spacing) / 2);
  margin-top: calc(1 * var(--line-height));
  text-align: center;
}

.footer-links {
  margin-top: 0;
  padding: 0;
}

.footer-link {
  display: inline-block;
  list-style: none;
  margin-right: calc(0.5 * var(--line-height));
  margin-top: 0;
}
.footer-link:last-child {
  margin-right: 0;
}

.heroSection {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  position: relative;
  text-align: center;
}
.heroSection::after {
  -webkit-animation: scrollDown 2s infinite;
          animation: scrollDown 2s infinite;
  bottom: calc(1 * var(--line-height));
  content: url("/images/arrow-down.svg");
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@-webkit-keyframes scrollDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}
@keyframes scrollDown {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
  }
}

.heroSection-headline {
  margin-left: auto;
  margin-right: auto;
  max-width: 16ch;
}

.heroSection-intro {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.heroSection-cta {
  margin-top: calc(var(--section-spacing) / 4);
}

.investmentsSection {
  margin-top: var(--section-spacing);
  margin-bottom: var(--section-spacing);
}

.investmentsGrid-container {
  display: grid;
  grid-template-columns: repeat(var(--grid-column-count), minmax(0, 1fr));
  grid-gap: calc(var(--grid-gap) / 2);
}
@media (min-width: 960px) {
  .investmentsGrid-container {
    grid-gap: var(--grid-gap);
  }
}

.investmentsGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-column: 1/span 12;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: calc(1 * var(--line-height));
  margin-top: calc(2 * var(--line-height));
  padding: 0;
}
@media (min-width: 768px) {
  .investmentsGrid {
    grid-column: 3/span 8;
    margin-bottom: calc(0.5 * var(--line-height));
    margin-top: calc(1.5 * var(--line-height));
  }
}

.investmentsGrid-investment {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--color-type-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding-top: calc(1 * var(--line-height));
  padding-bottom: calc(1 * var(--line-height));
  position: relative;
  text-align: center;
  width: 47%;
  min-height: 7rem;
  margin-top: 0;
}
.investmentsGrid-investment:last-child, .investmentsGrid-investment:nth-last-child(2) {
  border-bottom: 1px solid var(--color-type-1);
}
@media (min-width: 768px) {
  .investmentsGrid-investment {
    min-height: 6rem;
  }
}
.investmentsGrid-investment.-exit::after {
  background-color: white;
  color: var(--color-1);
  content: "Exit";
  font-size: var(--font-size-4);
  left: 0;
  letter-spacing: 0.05em;
  padding: 0 0.5em;
  position: absolute;
  text-transform: uppercase;
  top: 0;
}

.investmentsGrid-image {
  max-width: 75%;
}
@media (min-width: 768px) {
  .investmentsGrid-image {
    max-width: 100%;
  }
}

.managementSection {
  margin-bottom: var(--section-spacing);
  margin-top: var(--section-spacing);
}

.management-container {
  display: grid;
  grid-template-columns: repeat(var(--grid-column-count), minmax(0, 1fr));
  grid-gap: calc(var(--grid-gap) / 2);
}
@media (min-width: 960px) {
  .management-container {
    grid-gap: var(--grid-gap);
  }
}

.management {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: 2/span 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: calc(1 * var(--line-height));
}
@media (min-width: 768px) {
  .management {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.management-member {
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
  text-align: center;
}
.management-member + .management-member {
  margin-top: calc(2 * var(--line-height));
}
@media (min-width: 768px) {
  .management-member {
    max-width: 40%;
  }
  .management-member + .management-member {
    margin-top: 0;
  }
}

.management-member-image {
  max-width: 100%;
}

.management-member-name {
  margin-bottom: 0;
}

.management-member-data {
  color: var(--color-type-2);
}

.navSection {
  background-color: var(--color-1);
  left: 0;
  padding-bottom: calc(0.5 * var(--line-height));
  padding-top: calc(0.5 * var(--line-height));
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  z-index: 999;
}
.navSection.-top {
  background-color: transparent;
  padding-top: calc(1 * var(--line-height));
}
.navSection.-top .hamburger {
  margin-top: 0;
}
.navSection.-top .hamburger.-active {
  margin-top: -0.4rem;
}
.navSection.-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.navSection .hamburger {
  margin-top: -0.5rem;
}
.navSection .hamburger.-active {
  margin-top: -0.9rem;
}

.navSection-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navSection-logo {
  max-width: 75%;
}
@media (min-width: 768px) {
  .navSection-logo {
    max-width: 100%;
  }
}

.navSection-links {
  font-size: var(--font-size-4);
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  text-align: right;
  text-transform: uppercase;
}

.navSection-link:hover, .navSection-link:focus, .navSection-link.-active {
  color: var(--color-type-1);
  text-decoration: none;
}

.navSection-listItem {
  display: inline-block;
  margin: 0 calc(0.5 * var(--line-height));
}

.navSection-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  background-color: var(--color-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.navSection-mobile.-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.navSection-mobile .navSection-links {
  text-align: center;
  overflow: scroll;
}
.navSection-mobile .navSection-listItem {
  display: block;
  font-size: var(--font-size-2);
  line-height: 2;
}

.plainSection {
  margin-bottom: var(--section-spacing);
  margin-top: var(--section-spacing);
}

.plainSection-content {
  display: grid;
  grid-template-columns: repeat(var(--grid-column-count), minmax(0, 1fr));
  grid-gap: calc(var(--grid-gap) / 2);
}
@media (min-width: 960px) {
  .plainSection-content {
    grid-gap: var(--grid-gap);
  }
}

.plainSection-content-container {
  grid-column: 1/span 12;
}
@media (min-width: 768px) {
  .plainSection-content-container {
    grid-column: 1/span 8;
  }
  .plainSection-content-container.-fullWidth {
    grid-column: 1/span 12;
  }
}

.quoteSection {
  margin-bottom: var(--section-spacing);
  margin-top: var(--section-spacing);
  text-align: center;
}

.quoteSection-text {
  font-size: var(--font-size-2);
  font-family: var(--font-2);
  line-height: 1.12;
  margin-left: auto;
  margin-right: auto;
  max-width: 27ch;
}

.quoteSection-source {
  line-height: 1.2;
  margin-top: calc(1 * var(--line-height));
}

.spotifySection {
  margin-top: var(--section-spacing);
  margin-bottom: var(--section-spacing);
}
.spotifySection iframe + iframe {
  margin-top: calc(1 * var(--line-height));
}

.spotifySection-placeholder {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.news {
  margin-top: var(--section-spacing);
  margin-bottom: var(--section-spacing);
  max-width: 960px;
}

.news-article:not(:last-of-type) {
  border-bottom: 1px solid var(--color-type-1);
  margin-bottom: calc(1.5 * var(--line-height));
  padding-bottom: calc(1.5 * var(--line-height));
}
.news-article.-has-image .news-text {
  padding-top: calc(0.75 * var(--line-height));
}

.news-image {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .news-image {
    grid-column: auto/span 4;
  }
}

.news-text {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  .news-text {
    grid-column: auto/span 8;
  }
}

.article-title {
  margin-bottom: calc(0.25 * var(--line-height));
  margin-top: 0;
}

.article-excerpt {
  margin-top: calc(0.5 * var(--line-height));
}

.article-date {
  font-size: var(--font-size-4);
}

.article-content {
  border-top: 1px solid var(--color-type-1);
  margin-top: calc(1 * var(--line-height));
  padding-top: calc(1 * var(--line-height));
}

.article-attachments {
  padding-top: calc(0.5 * var(--line-height));
  text-align: right;
}
.article-attachments a {
  display: inline-block;
  max-width: 30px;
}
.article-attachments svg:hover path {
  fill: var(--color-type-2);
}
.article-attachments path {
  fill: var(--color-type-1);
  -webkit-transition: fill 150ms;
  transition: fill 150ms;
}

.article-index {
  margin: var(--section-spacing) auto;
  max-width: 960px;
}

.article.-single {
  margin: var(--section-spacing) auto;
  max-width: 960px;
}
.article.-single .article-attachments {
  border-top: 1px solid var(--color-type-1);
  margin-top: calc(2 * var(--line-height));
}

.fourOhFour {
  padding-top: var(--section-spacing);
  padding-bottom: calc(var(--line-height) * 6);
  text-align: center;
}

.fourOhFour-headline {
  margin-bottom: 1rem;
}
