@import 'header.css';
@import 'navigation.css';
@import 'sections.css';
@import 'footer.css';
footer,
.text,
:root,
p,
h1,
.h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
em,
sup,
sub,
dd,
dt,
dl,
ul,
ol,
li,
a,
button,
input,
label,
.tap,
.button,
.input,
input:not([type=submit]):not([type=clear]):not([type=reset]):not([type=checkbox]):not([type=radio]),
select,
textarea,
.legal {
  --size: 1em;
  font-size: var(--size);
  font-weight: var(--weight);
  font-family: var(--font), var(--font-fallback);
  line-height: var(--line);
  color: var(--text);
}
:root {
  --ease: cubic-bezier(0.83, 0, 0.17, 1);
  --timings: 0.3s;
  --timing: 0.5s;
  --timingl: 0.8s;
  --column: 1rem;
  --row: 1rem;
  --trim: calc((var(--line)*var(--size) - var(--size))*-0.9);
  --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font-1: "Inter";
  --font-2: "PP Woodland";
  --font: var(--font-1);
  --size: 26px;
  --line: 1.6;
  --line-small: 1.12;
  --weight: 400;
  --text: var(--dark);
  font-synthesis: none;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
:root {
  --white: #fff;
  --dark: #333333;
  --darkl: #454D52;
  --darkxl: #21292D;
  --light: #F7F7F6;
  --lightl: #EDEDEC;
  --box: #EEEFF1;
  --stroke: rgba(85, 77, 90, 0.5);
}
:root {
  --edge: 45px;
  --top: 80px;
  --aside: 185px;
  --main: 1415px;
  --side: 95px;
  --gutter: 110px;
  --grid-gap: 30px;
  --inner: 1600px;
  --grid-column: 70px;
  --xs: 8px;
  --s: 12px;
  --m: 24px;
  --l: 32px;
  --xl: 48px;
  --xxl: 72px;
}
@media screen and (max-width: 80em) {
  :root {
    --aside: 85px;
    --top: 40px;
    --gutter: 50px;
    --size: 22px;
  }
}
@media screen and (max-width: 50em) {
  :root {
    --aside: 60px;
    --gutter: 30px;
    --top: 30px;
    --edge: 30px;
    --size: 18px;
  }
}
@media screen and (max-width: 31.25em) {
  :root {
    --size: 16px;
  }
}
* {
  border: 0;
  vertical-align: baseline;
  word-break: break-word;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  max-width: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-variant: normal;
  color: black;
  font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--light);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
h1 {
  --font: var(--font-2);
  --weight: 400;
  --size: 50px;
  --line: 1.2;
  margin-bottom: 1rem;
}
h1 strong,
h1 b {
  --weight: 600;
}
h1 span {
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 80em) {
  h1 {
    --size: 42px;
  }
  h1 strong,
  h1 b {
    --size: 42px;
  }
}
@media screen and (max-width: 50em) {
  h1 {
    --size: 32px;
  }
  h1 strong,
  h1 b {
    --size: 32px;
  }
}
h2 {
  --font: var(--font-2);
  --weight: 400;
  --size: 46px;
  --line: 1.1217;
  margin-bottom: 1rem;
}
@media screen and (max-width: 80em) {
  h2 {
    --size: 38px;
  }
}
@media screen and (max-width: 50em) {
  h2 {
    --size: 32px;
  }
}
h3 {
  --font: var(--font-2);
  --weight: 400;
  --size: 32px;
  --line: 1.1217;
  margin-bottom: 1rem;
}
@media screen and (max-width: 80em) {
  h3 {
    --size: 28px;
  }
}
@media screen and (max-width: 50em) {
  h3 {
    --size: 26px;
  }
}
p strong,
p b {
  --weight: 700;
}
a,
button,
i {
  transition-duration: var(--timing);
  transition-timing-function: var(--ease);
}
img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border: 0;
}
.bg-dark {
  background: var(--dark);
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--grid-gap);
}
.m-top-xs {
  margin-top: var(--xs);
}
.m-top-s {
  margin-top: var(--s);
}
.m-top-m {
  margin-top: var(--m);
}
.m-top-l {
  margin-top: var(--l);
}
.m-top-xl {
  margin-top: var(--xl);
}
.m-bottom-xs {
  margin-bottom: var(--xs);
}
.m-bottom-s {
  margin-bottom: var(--s);
}
.m-bottom-m {
  margin-bottom: var(--m);
}
.m-bottom-l {
  margin-bottom: var(--l);
}
.m-bottom-xl {
  margin-bottom: var(--xl);
}
.m-xs {
  margin: var(--xs) 0;
}
.m-s {
  margin: var(--s) 0;
}
.m-m {
  margin: var(--m) 0;
}
.m-l {
  margin: var(--l) 0;
}
.m-xl {
  margin: var(--xl) 0;
}
.p-top-xs {
  padding-top: var(--xs);
}
.p-top-s {
  padding-top: var(--s);
}
.p-top-m {
  padding-top: var(--m);
}
.p-top-l {
  padding-top: var(--l);
}
.p-top-xl {
  padding-top: var(--xl);
}
.p-bottom-xs {
  padding-bottom: var(--xs);
}
.p-bottom-s {
  padding-bottom: var(--s);
}
.p-bottom-m {
  padding-bottom: var(--m);
}
.p-bottom-l {
  padding-bottom: var(--l);
}
.p-bottom-xl {
  padding-bottom: var(--xl);
}
.p-xs {
  padding: var(--xs) 0;
}
.p-s {
  padding: var(--s) 0;
}
.p-m {
  padding: var(--m) 0;
}
.p-l {
  padding: var(--l) 0;
}
.p-xl {
  padding: var(--xl) 0;
}
.section {
  display: grid;
  grid-template-columns: 1fr var(--aside) minmax(auto, var(--main)) 1fr;
  width: 100%;
  max-width: 100%;
}
.section .stage {
  grid-column: 2/3;
}
.section .main {
  padding-left: var(--grid-gap);
  grid-column: 3/4;
}
@media screen and (max-width: 50em) {
  .section .main {
    grid-column-start: 1;
  }
}
.section .main .flex {
  display: flex;
}
.section .main .flex.column {
  flex-direction: column;
}
.section .main .flex.wrap {
  flex-wrap: wrap;
}
.section .main .flex.gap {
  gap: var(--grid-gap);
}
.section .main .flex.space-between {
  justify-content: space-between;
}
.section .main,
.section .wide,
.section .aside {
  position: relative;
  z-index: 10;
}
main {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
}
.button a {
  --height: 70px;
  --side: 30px;
  padding: 0.2rem var(--side);
  border-radius: 100px;
  min-height: var(--height);
  border: 1px solid var(--white);
  color: var(--white);
  font-size: var(--size);
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  text-decoration: none;
  transition: padding 0.3s ease;
}
@media screen and (max-width: 80em) {
  .button a {
    --side: 24px;
    --height: 58px;
  }
}
@media screen and (max-width: 50em) {
  .button a {
    --side: 20px;
    --height: 46px;
  }
}
.button a span.arrow {
  margin-left: 0.5rem;
  height: 15px;
  width: 15px;
  border: 1px solid var(--white);
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transition: margin-left 0.3s ease;
}
@media screen and (max-width: 50em) {
  .button a span.arrow {
    width: 10px;
    height: 10px;
  }
}
@media (hover: hover) {
  .button a:hover span.arrow {
    margin-left: 1rem;
  }
}
.button.dark a {
  color: var(--dark);
  border-color: var(--dark);
}
.button.dark a span.arrow {
  border-color: var(--dark);
}
