/* Extracted from legacy Webflow styles: palette + typography */
:root {
  --light: #fafbfd;
  --dark: #1d2436;
  --orange: #f8503c;
  --red: #e01a3d;
  --purple: #a0b8ff;
  --green: #56cc6b;
  --yellow: #ffba00;
  --divider: #73757f3b;
  --white: #ffffff;
  --gradient-blue: #85e1f2;
  --gradient-orange: #f7913e;
}

body {
  background-color: var(--light);
  color: var(--dark);
  font-family: Cabin, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  font-family: Cabin, sans-serif;
  font-weight: 700;
}

h1 {
  letter-spacing: -2px;
  margin: 0 0 32px;
  font-size: 70px;
  line-height: 70px;
}

h2 {
  letter-spacing: -1px;
  margin: 0 0 32px;
  font-size: 38px;
  line-height: 38px;
}

h3 {
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 18px;
}

h5 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.4;
}

h6 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

p {
  font-size: 16px;
}

a {
  color: var(--orange);
  font-weight: 500;
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 5px;
  font-weight: 700;
  border: 1px solid var(--dark);
  background: #fff;
  color: var(--dark);
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
}

.container {
  z-index: 4;
  background-color: transparent;
  flex-flow: column;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: 82rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: relative;
}