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

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

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

html {
  box-sizing: border-box;
}

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

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

@media (min-width: 960px) {
  html {
    font-size: 16px;
  }
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: var(--font-sans);
  font-size: var(--font-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-950);
}

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

p {
  margin: 0;
}

strong,
b {
  font-weight: bold;
}

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

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

ul {
  list-style: none;
}

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

/* Links
--------------------------------------------- */
a {
  display: inline-block;
  cursor: pointer;
  color: 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);
}

/* Forms
--------------------------------------------- */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  border: none;
  padding: 0.75rem 1.5rem;
  line-height: 100%;
  font-weight: bold;
  background-color: var(--primary-900);
  color: #fff;
  border-radius: 4px;
}

/* 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" 700,
    "GRAD" 0,
    "opsz" 48;
}

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

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

/* Spotlight
--------------------------------------------- */

@keyframes spotlight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
