@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,
.wing {
  --size: 1em;
  font-size: var(--size);
  font-weight: var(--weight);
  font-family: var(--font), var(--font-fallback);
  line-height: var(--line);
  letter-spacing: var(--kern);
  color: var(--text);
}
:root {
  --font-fallback: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --font: var(--font-fallback);
  --size: 18px;
  --line: 1.618;
  --kerning: -0.003em;
  --line-small: 1.12;
  --ratio: 1;
  --ease: 0.1s;
  --timing: ease-out;
  --column: 1rem;
  --row: 1rem;
  --text: var(--text-dark);
  font-synthesis: none;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  quotes: "„" "“";
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  --trim: calc((var(--line)*var(--size) - var(--size))*-0.9);
  --font-1: "Inter";
  --font-2: "PP Woodland";
  --font: var(--font-1);
  --weight: 400;
  --size: 26px;
  --line: 1.615;
  --kern: -0.025em;
}
:root {
  --white: #fff;
  --black: #040505;
  --dark: #333333;
  --gray: #595b5e;
  --darkl: #363f45;
  --darkxl: #232D32;
  --light: #cfcfc5;
  --yellow-light: #fcf5d4;
  --green: #cde2d5;
  --cyan: #00d3ca;
  --orange: #ff7952;
  --blue: #5e68e6;
  --yellow: #f4d956;
  --pink: #ffd7cb;
  --background: #f7f7f6;
  --stroke: rgba(89, 91, 94, 0.5);
  --str: #444e57;
  --text-dark: var(--dark);
  --text-light: #e4e4e1;
  --accent: var(--blue);
  --theme-solid: var(--blue);
  --theme-wash: #eeeeea;
  --theme-accent: var(--orange);
}
:root {
  --edge: 45px;
  --top: 80px;
  --aside: 185px;
  --main: 1415px;
  --side: 95px;
  --gutter: 110px;
  --grid-gap: 30px;
  --inner: 1600px;
  --grid-column: 70px;
}
@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(--background);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
h1 {
  --font: var(--font-2);
  --weight: 400;
  --size: 32px;
  --line: 1;
  text-align: center;
}
h1 strong,
h1 b {
  --font: var(--font-1);
  --weight: 600;
  --size: 50px;
  --line: 1.2;
}
h2 {
  --font: var(--font-2);
  --weight: 400;
  --size: 46px;
  --line: 1.1217;
}
img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
  border: 0;
}
.bg-dark {
  background: var(--dark);
}
.wing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
.wing > :nth-child(1) {
  margin-right: auto;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--grid-gap);
}
.section {
  display: grid;
  grid-template-columns: 1fr var(--aside) minmax(auto, var(--main)) 1fr;
  width: 100%;
  max-width: 100%;
}
.section .aside {
  grid-column: 2/3;
}
.section .main {
  padding-left: var(--grid-gap);
  grid-column: 3/4;
}
.section .main,
.section .wide,
.section .aside {
  position: relative;
  z-index: 10;
}
.logo {
  pointer-events: all;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: var(--top) 0;
}
div#logo-sidebar {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 20;
}
div#logo-sidebar aside#aside {
  flex: 0 0 auto;
  width: var(--aside);
  border-right: 1px solid var(--stroke);
  position: relative;
  z-index: 20;
}
div#logo-sidebar aside#aside .logo {
  transition-duration: 0.4s;
}
div#logo-sidebar aside#aside .logo .logo-shape {
  display: none;
  -webkit-clip-path: url(#svgTextPath);
  clip-path: url(#svgTextPath);
  -webkit-backdrop-filter: invert(100%);
  backdrop-filter: invert(100%);
  width: 92px;
  height: 106.13px;
}
@media screen and (max-width: 50em) {
  div#logo-sidebar aside#aside .logo .hide-small {
    display: none;
  }
}
div#logo-sidebar aside#aside .logo .show-small {
  display: none;
}
@media screen and (max-width: 50em) {
  div#logo-sidebar aside#aside .logo .show-small {
    display: block;
  }
}
div#logo-sidebar aside#aside .logo svg {
  width: 92px;
  height: auto;
}
@media screen and (min-width: 64.0625em) {
  div#logo-sidebar aside#aside div.aside-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}
div#logo-sidebar aside#aside div.aside-button .button-menu {
  display: inline-flex;
  opacity: 0;
  pointer-events: none;
  -webkit-appearance: none !important;
  border: 0;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 64px;
  z-index: 9999;
  background-color: #f0f0f0;
  padding: 0 !important;
  transition: 0.15s;
  border-radius: 100px;
  transform: translateY(50px);
  transition-duration: 0.5s;
}
div#logo-sidebar aside#aside div.aside-button .button-menu svg {
  width: 45px;
  height: 45px;
  transition: 0.15s;
}
@media screen and (max-width: 64em) {
  div#logo-sidebar aside#aside div.aside-button .button-menu {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateY(0) !important;
  }
}
@media screen and (max-width: 50em) {
  div#logo-sidebar aside#aside div.aside-button .button-menu {
    top: calc(var(--edge)*0.5);
    left: calc(var(--edge)*0.5);
    margin: 0;
  }
}
@media screen and (max-width: 64em) {
  div#logo-sidebar aside#aside div.aside-button .button-menu {
    left: auto !important;
    position: fixed;
    right: calc(var(--edge)*0.5) !important;
    top: calc(var(--edge)*0.5) !important;
  }
}
@media screen and (max-width: 80em) {
  div#logo-sidebar aside#aside div.aside-button .button-menu {
    top: 21px;
  }
}
main {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
}
