@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.7;
  font-family: "Inter", system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

p a {
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

body {
  background-color: #1a1a1a;
}

body {
  min-width: 320px;
}
body > div header {
  padding: 24px;
  max-width: 1440px;
  width: 100%;
}
body > div main {
  width: 100%;
}
body > div main section {
  padding: 64px 24px;
  max-width: calc(75ch + 48px);
  width: 100%;
}
body > div main section + section {
  border-top: 1px solid #575757;
}
body > div footer {
  padding: 64px 24px 128px 24px;
  max-width: calc(75ch + 48px);
  width: 100%;
}

header img {
  height: 64px;
}

.hero-section img {
  height: 78px;
}
@media screen and (min-width: 768px) {
  .hero-section img {
    height: 128px;
  }
}

.hero-image-section {
  padding: 0 24px 64px 24px;
  width: 100%;
}
.hero-image-section div {
  border-radius: 24px;
  overflow: hidden;
}

.hero-image-section,
.partners {
  border-top: none;
}

.partners img {
  max-height: 22px;
  width: auto;
}
@media screen and (min-width: 568px) {
  .partners img {
    max-height: 48px;
  }
}
@media screen and (min-width: 1024px) {
  .partners img {
    max-height: 38px;
  }
}

ul li + li {
  padding-top: 1em;
}

body > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body > div header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body > div main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body > div main section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5em;
}
body > div footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5em;
}

header nav {
  display: flex;
  flex-direction: row;
  gap: 1ch;
}

.partners > div {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

header nav a + a::before {
  content: "|";
  padding-right: 1ch;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px 8px 16px;
  border: none;
  border-radius: 999px;
  background-color: #ffffff;
  color: #575757;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .cta-button {
    padding: 12px 24px 12px 24px;
  }
}
.cta-button svg {
  margin-left: 0.5ch;
  height: 1em;
  width: 1em;
}

.timeline ul {
  width: 100%;
}
.timeline ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1ch;
  width: 100%;
  border-top: 1px solid #575757;
  padding: 1.7em 0;
}
.timeline ul li:first-of-type {
  border-top: none;
  padding-top: 0;
}
.timeline ul li:last-of-type {
  padding-bottom: 0;
}

.faq div {
  width: 100%;
}
.faq div details {
  border-top: 1px solid #575757;
  padding: 1.7em 0;
}
.faq div details:first-of-type {
  border-top: none;
  padding-top: 0;
}
.faq div details:last-of-type {
  padding-bottom: 0;
}
.faq div details summary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
}
.faq div details summary::-webkit-details-marker {
  display: none;
}
.faq div details summary::after {
  content: "+";
  padding-left: 1.5ch;
}
.faq div details[open] summary::after {
  content: "−";
}
.faq div details p {
  padding: 1.7em 0;
}

@font-face {
  font-family: "MyCustomFont";
  src: url("../assets/fonts/VastagoGrotesk-Medium.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "MyCustomFont", sans-serif;
  font-size: 1.6em;
  line-height: 1.5;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.8em;
  }
}

.hero-section p {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .hero-section p {
    font-size: 2.4rem;
  }
}

h2,
strong,
summary {
  color: #5a5aff;
}
