/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Box sizing
--------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* Typography
--------------------------------------------- */

html {
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.025em;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: var(--font-sans);
  font-feature-settings: 'pnum' 1, 'kern' 1, 'ss01' 1, 'ss03' 1;
  font-size: var(--font-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-base);
  color: rgb(var(--primary-950));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: var(--font-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-base);
  margin: 0;
}

p {
  margin: 0;
}

strong {
  font-weight: var(--font-black);
}

/* Elements
--------------------------------------------- */

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

picture {
  display: block;
}

/* Links
--------------------------------------------- */
a {
  cursor: pointer;
  color: rgb(var(--primary-950));
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  outline: 0;
}

/* Buttons
--------------------------------------------- */

.btn {
  background-color: rgb(var(--primary-600));
  color: rgb(var(--primary-50));
  padding: 0.75rem 1.5rem;
  font-weight: var(--font-black);
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex='-1']:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Symbol
--------------------------------------------------------------*/

.symbol {
  font-family: var(--font-symbol);
  font-weight: normal;
  font-style: normal;
  font-size: var(--font-2xl);
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.symbol::after {
  display: inline-block;
}

/*--------------------------------------------------------------
# Site
--------------------------------------------------------------*/

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex-grow: 1;
}

/*--------------------------------------------------------------
# Observer
--------------------------------------------------------------*/

.observe {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: transform 0.4s, opacity 0.4s;
}

.observe.animated {
  opacity: 1;
  transform: translateY(0px);
}