@font-face {
  font-family: 'Founders Grotesk';
  src: url('/assets/fonts/founders-grotesk/founders-grotesk-light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('/assets/fonts/founders-grotesk/founders-grotesk-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('/assets/fonts/founders-grotesk/founders-grotesk-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Founders Grotesk';
  src: url('/assets/fonts/founders-grotesk/founders-grotesk-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  width: 100%;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  height: 100%;
  color: #212121;
  font: 400 1rem/1.1em Founders Grotesk;
}

.wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.half-layout {
  width: 50%;
  background-color: #212121;
}

.header {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.asterisk {
  width: 176px;
  height: 176px;
}

.header-text {
  margin-top: 4rem;
  font-weight: 500;
  font-size: 40px;
  color: white;
  line-height: 1;
}

.page {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: white;
  flex: 1 1 auto;
}

.page__logo {
  width: 150px;
  cursor: pointer;
  z-index: 1
}

.page__content-wrapper {
  gap: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: 100%;
  overflow: scroll;
  overflow-x: hidden;
}

h1 {
  font: 700 40px/1.1em Founders Grotesk;
  margin: 0;
}

h3 {
  font: 500 24px/1.1em Founders Grotesk;
  margin: 0;
  margin-top: 1rem;
}

h5 {
  font: 500 18px/1.1em Founders Grotesk;
  margin: 0;
}

.page__description {
  font: 300 24px/1.1em Founders Grotesk;
  margin: 0;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

ol, ul, li {
  margin: 0;
}

.content-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.content-item__key {
  font: 500 1rem/1.1em Founders Grotesk;
  color: #424242;
}

.content-item__heading {
  font: 500 1.125rem Founders Grotesk;
  color: #424242;
}

.content-item__value {
  font: 400 1rem/1.1em Founders Grotesk;
  color: #424242;
  background: #EEEEEE;
  border-radius: 2rem;
  padding: 0.25rem 0.5rem;
  line-height: 19px;
}

.content-item__text {
  font: 400 1rem/1.1em Founders Grotesk;
  color: #424242;
  line-height: 19px;
}

.page__legal {
  font: 300 12px/1.1em Founders Grotesk;
  white-space: pre-line;
}

.page__copy {
  font: 300 12px/1.1em Founders Grotesk;
  margin: 2rem 0;
  color: #828282;
  flex: 1 1 auto;
}

footer {
  padding-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer a.active {
  color: #9cebdb;
}

.footer a {
  color: white;
}

a {
  text-decoration: none;
  font: 400 16px/1.1em Founders Grotesk;
  color: black;
}

a:hover {
  color: #9cebdb;
}

.page__content-section {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 8rem 6rem 6rem;
}

.page__content-section h2 {
  margin-top: 0;
}

.page__floating-asterisk {
  position: absolute;
  top: -70px;
  right: -50px;
  opacity: 0.3;
  width: 40%;
}

section a {
  text-decoration: underline;
  font-weight: 500;
}

@media (max-width: 992px) {
  .wrapper {
    flex-direction: column;
  }

  .half-layout,
  .page {
    width: 100%;
    height: auto;
  }

  .header {
    position: relative;
    padding: 2rem 2rem 4rem;
  }

  .asterisk {
    display: none;
  }

  .page__content-section {
    padding: 2rem;
  }
}

