/* @font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 100;
  src: url('../../fonts/Onest/100.woff2') format('woff');
}
@font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 200;
  src: url('../../fonts/Onest/200.woff2') format('woff');
} */
@font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 300;
  src: url('../../fonts/Onest/300.woff2') format('woff');
}
@font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/Onest/400.woff2') format('woff');
}
@font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 500;
  src: url('../../fonts/Onest/500.woff2') format('woff');
}
/* @font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 600;
  src: url('../../fonts/Onest/600.woff2') format('woff');
} */
@font-face {
  font-display: swap;
  font-family: 'Onest';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/Onest/700.woff2') format('woff');
}

:root {
  --color-black: #000000;
  --color-black-rgb: 0 0 0;
  --color-white: #ffffff;
  --color-white-rgb: 255 255 255;

  /* surfaces */
  --color-surface: #ffffff;
  --color-surface-rgb: 255 255 255;
  --color-surface-muted: #ededf5;
  --color-surface-muted-rgb: 237 237 245;
  --color-surface-inverse: #1b1c34;
  --color-surface-inverse-rgb: 27 28 52;
  --color-surface-inverse-muted: #000000;
  --color-surface-inverse-muted-rgb: 0 0 0;
  --color-surface-light: #ffffff;
  --color-surface-light-rgb: 255 255 255;
  --color-surface-dark: #1b1c34;
  --color-surface-dark-rgb: 27 28 52;

  /* text */
  --color-text: #1b1c34;
  --color-text-rgb: 27 28 52;
  --color-text-muted: #000000;
  --color-text-muted-rgb: 0 0 0;
  --color-text-inverse: #ffffff;
  --color-text-inverse-rgb: 255 255 255;
  --color-text-inverse-muted: #ededf5;
  --color-text-inverse-muted-rgb: 237 237 245;
  --color-text-light: #ffffff;
  --color-text-light-rgb: 255 255 255;
  --color-text-dark: #1b1c34;
  --color-text-dark-rgb: 27 28 52;

  /* accents */
  --color-primary: #dcbd91;
  --color-primary-rgb: 220 189 145;
  --color-primary-hover: #dcbd91;
  --color-on-primary: #000000;
  --color-on-primary-rgb: 0 0 0;

  --color-secondary: #dcbd91;
  --color-secondary-rgb: 220 189 145;
  --color-secondary-hover: #dcbd91;
  --color-on-secondary: #000000;
  --color-on-secondary-rgb: 0 0 0;

  --color-tertiary: #dcbd91;
  --color-tertiary-rgb: 220 189 145;
  --color-tertiary-hover: #dcbd91;
  --color-on-tertiary: #000000;
  --color-on-tertiary-rgb: 0 0 0;

  /* typography */
  --font-family-base: 'Onest', sans-serif;
  --font-family-heading: 'Onest', sans-serif;

  --font-weight-thin: 100;
  --font-weight-extra-light: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --font-weight-extra-bold: 800;
  --font-weight-black: 900;

  --font-weight-base: var(--font-weight-light);
  --font-weight-heading-base: var(--font-weight-medium);

  --font-size-2xs: 1.2rem;
  --font-size-xs: 1.4rem;
  --font-size-sm: 1.6rem;
  --font-size-md: 1.8rem;
  --font-size-lg: 2rem;
  --font-size-xl: 2.2rem;
  --font-size-2xl: 2.4rem;

  --font-size-base: var(--font-size-md);

  --font-size-display: 5.2rem;

  /* --font-size-h1: clamp(var(--font-size-base), 12vw, 5.2rem); */
  --font-size-h1: 3.6rem;
  --font-size-h2: 3.2rem;
  --font-size-h3: 2.8rem;
  --font-size-h4: 2.4rem;
  --font-size-h5: 2rem;
  --font-size-h6: 1.6rem;

  --line-height-none: 1;
  --line-height-tight: 1.1;
  --line-height-snug: 1.2;
  --line-height-dense: 1.3;
  --line-height-normal-tight: 1.4;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* layout */
  --text-width: 90ch;

  /* opacity */
  --opacity-30: 0.3;
  --opacity-50: 0.5;
  --opacity-70: 0.7;
  --opacity-100: 1;

  /* transition duration */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
}

@media (width > 1200px) {
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  list-style: none;
  border-radius: 0;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  animation-timing-function: ease-out;
}
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  color: var(--color-text);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  background-color: var(--color-surface);
  word-wrap: break-word;
  width: 100%;
  height: 100%;
  line-height: var(--line-height-normal);
}
a,
button {
  cursor: pointer;
}
button {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}
input[type='number'] {
  appearance: textfield;
  -moz-appearance: textfield;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::placeholder,
textarea::placeholder {
  color: currentColor;
  opacity: 0.6;
}
.mdc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
  fill: currentColor;
}
.spacing {
  flex-shrink: 1;
  width: 100%;
  height: 100%;
  display: flex;
}

/*  */

.root {
  width: 100%;
  position: relative;
}

/*  */

.screen-reader-text {
  display: none !important;
}
