*:focus {
  outline: 2px solid var(--primary);
}
.accessibility {
  position: relative;
  z-index: 99999999;
  #accessibilityBtn {
    position: fixed;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border: none;
    border-radius: 100px;
    padding: 10px;
    bottom: 30px;
    left: 30px;
    transition: 0.3s var(--cubic);
    &:hover {
      transform: scale(1.1);
    }
    svg {
      width: 24px;
      height: auto;
      path {
        fill: var(--lightest);
      }
    }
  }
}
.accessibility-modal {
  position: fixed;
  left: 30px;
  top: 30px;
  padding: 30px;
  height: calc(100vh - 60px);
  background: var(--lightest);
  box-shadow: 0 0 10px rgba(var(--darkest), 0.2);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  #closeBtn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    svg {
      width: 30px;
      height: auto;
    }
  }
  .option {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
    margin-bottom: 20px;
    &:last-child {
      margin-bottom: 0;
      border-bottom: none;
    }
  }
  .toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 20px;
  }
  .toggle input:checked + label .slider {
    background-color: var(--primary);
  }
  input[type="checkbox"]:focus + label {
    outline: 2px solid #000;
  }
  .toggle input:checked + label span {
    color: var(--lightest);
  }
  .toggle label {
    cursor: pointer;
    position: absolute;
    width: 60px;
    height: 30px;
    border-radius: 100px;
    background-color: #ccc;
    border: 1px solid #aaa;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
  }
  .toggle label .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #fff;
    border-radius: 34px;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .toggle input:checked + label .slider {
    transform: translate(43%);
  }
  .description {
    flex-grow: 1;
    padding-left: 10px;
  }
  .description h2 {
    margin: 0;
  }
  .description p {
    margin: 0.5rem 0 0;
  }
}
.skip-to-content {
  position: absolute;
  top: -80px;
  left: 10px;
  background: #000;
  color: #fff;
  padding: 10px 15px;
  z-index: 99999;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 10px;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: none;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.focus-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  pointer-events: none;
  .adhd-focus & {
    display: block;
  }
  &:before,
  &:after {
    content: "";
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    background: rgba(var(--darkest), 0.5);
    z-index: 99999;
  }
  &:before {
    top: 0;
    height: var(--beforeHeight, 50%);
  }
  &:after {
    bottom: 0;
    height: var(--afterHeight, 50%);
  }
  .focus-bar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100px;
    background: transparent;
    z-index: 100000;
    pointer-events: none;
  }
}
.skip-link {
  position: absolute;
  left: -999px;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 99999;
  &:focus {
    left: 10px;
    top: 10px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: visible;
}
.delay {
  animation-delay: 0.5s;
}
@keyframes ham-top {
  50% {
    transform: translate3d(0, 8px, 0) rotate(0);
  }
  to {
    transform: translate3d(0, 8px, 0) rotate(45deg);
  }
}
@keyframes ham-middle {
  50% {
    transform: translate3d(-11px, 0, 0);
  }
  to {
    transform: translateZ(0) rotate(-45deg);
  }
}
@keyframes ham-bottom {
  30% {
    transform: translate(15px, 5px) scaleX(50);
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -5%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-5%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(5%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 5%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    visibility: visible;
  }
  to {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate(-125%);
    visibility: visible;
  }
  to {
    transform: translate(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate(100%);
    visibility: visible;
  }
  to {
    transform: translate(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideInUp {
  0% {
    transform: translateY(100%);
    visibility: visible;
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  to {
    transform: translateY(-100%);
    visibility: hidden;
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translate(0);
    visibility: visible;
  }
  to {
    transform: translate(-100%);
    visibility: hidden;
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translate(0);
    visibility: visible;
  }
  to {
    transform: translate(100%);
    visibility: hidden;
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
    visibility: visible;
  }
  to {
    transform: translateY(100%);
    visibility: hidden;
  }
}
.enter-start {
  animation: fadeIn 0.3s forwards;
}
.leave-end {
  animation: fadeOut 0.3s forwards;
}
.transition {
  transition-property: all;
}
.ease-out {
  transition-timing-function: ease-out;
}
.duration-300 {
  transition-duration: 0.3s;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.ease-in-out {
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ease-in {
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.ease-out {
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.duration-100 {
  animation-duration: 0.1s;
}
.duration-200 {
  animation-duration: 0.2s;
}
.duration-300 {
  animation-duration: 0.3s;
}
.duration-400 {
  animation-duration: 0.4s;
}
.duration-500 {
  animation-duration: 0.5s;
}
.duration-600 {
  animation-duration: 0.6s;
}
.duration-700 {
  animation-duration: 0.7s;
}
.duration-800 {
  animation-duration: 0.8s;
}
.duration-900 {
  animation-duration: 0.9s;
}
.duration-1000 {
  animation-duration: 1s;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
[id] {
  scroll-margin-top: 2em;
}
html {
  display: block !important;
  box-sizing: border-box;
  font-size: 62.5%;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  line-height: var(--baseline);
  font-size: var(--global-font-size);
  color: var(--text-color);
  font-family: var(--global-font-family);
  font-weight: var(--global-weight-normal);
  overflow-x: clip;
}
body.mobile-menu-active {
  max-height: 100vh;
}
body.disable-animations * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
.offcanvas {
  width: 100%;
  height: calc(100vh - 50px);
  position: fixed;
  top: 50px;
  right: 0;
  display: flex;
  align-items: center;
  background: var(--light-grey);
  transition: all 0.6s 0s var(--cubic);
  z-index: 100;
}
.overlay {
  display: block;
  position: absolute;
  background: rgba(var(--darkest), 0.8);
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed iframe,
.embed object,
.embed video,
.embed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: #000c;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}
.no-scroll {
  overflow: hidden;
}
.hidden-until-loaded {
  display: none;
}
.post__content a {
  color: var(--primary);
}
.container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
.container--wide {
  max-width: calc(var(--global-width) * 1.2);
  margin: 0 auto;
}
.container--narrow {
  max-width: calc(var(--global-width) / 1.2);
  width: 100%;
  margin: 0 auto;
}
.container--thin {
  max-width: calc(var(--global-width) / 1.5);
  width: 100%;
  margin: 0 auto;
}
.container--blog {
  max-width: 820px;
  width: 90%;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.row {
  position: relative;
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  @media only screen and (min-width: 768px) {
    flex-wrap: nowrap;
  }
}
.row--collapse > .column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.row--nowrap {
  flex-wrap: nowrap;
}
.row--center {
  justify-content: center;
}
.row--justified {
  justify-content: space-between;
}
.row--spaced {
  justify-content: space-around;
}
.row--start {
  justify-content: flex-start;
}
.row--end {
  justify-content: flex-end;
}
.row--middle {
  align-items: center;
}
.row--bottom {
  align-items: flex-end;
}
.row--top {
  align-items: flex-start;
}
ul.row {
  list-style: none;
  padding: 0;
  margin: 0;
}
.column {
  margin: 0;
  min-width: 0;
  flex-grow: 0;
  flex-basis: auto;
  width: 100%;
  padding-left: calc(var(--global-padding));
  padding-right: calc(var(--global-padding));
}
.column-m-1 {
  max-width: 8.33%;
}
.column-m-2 {
  max-width: 16.66%;
}
.column-m-3 {
  max-width: 25%;
}
.column-m-4 {
  max-width: 33.33%;
}
.column-m-5 {
  max-width: 41.66%;
}
.column-m-6 {
  max-width: 50%;
}
.column-m-7 {
  max-width: 58.33%;
}
.column-m-8 {
  max-width: 66.66%;
}
.column-m-9 {
  max-width: 75%;
}
.column-m-10 {
  max-width: 83.33%;
}
.column-m-11 {
  max-width: 91.66%;
}
.column-m-12 {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .column-t-1 {
    max-width: 8.33%;
  }
  .column-t-2 {
    max-width: 16.66%;
  }
  .column-t-3 {
    max-width: 25%;
  }
  .column-t-4 {
    max-width: 33.33%;
  }
  .column-t-5 {
    max-width: 41.66%;
  }
  .column-t-6 {
    max-width: 50%;
  }
  .column-t-7 {
    max-width: 58.33%;
  }
  .column-t-8 {
    max-width: 66.66%;
  }
  .column-t-9 {
    max-width: 75%;
  }
  .column-t-10 {
    max-width: 83.33%;
  }
  .column-t-11 {
    max-width: 91.66%;
  }
  .column-t-12 {
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .column-d-1 {
    max-width: 8.33%;
  }
  .column-d-2 {
    max-width: 16.66%;
  }
  .column-d-3 {
    max-width: 25%;
  }
  .column-d-4 {
    max-width: 33.33%;
  }
  .column-d-5 {
    max-width: 41.66%;
  }
  .column-d-6 {
    max-width: 50%;
  }
  .column-d-7 {
    max-width: 58.33%;
  }
  .column-d-8 {
    max-width: 66.66%;
  }
  .column-d-9 {
    max-width: 75%;
  }
  .column-d-10 {
    max-width: 83.33%;
  }
  .column-d-11 {
    max-width: 91.66%;
  }
  .column-d-12 {
    max-width: 100%;
  }
}
.column-m-order-1 {
  order: 1;
}
.column-m-order-2 {
  order: 2;
}
@media screen and (min-width: 768px) {
  .column-t-order-1 {
    order: 1;
  }
  .column-t-order-2 {
    order: 2;
  }
}
@media screen and (min-width: 1200px) {
  .column-d-order-1 {
    order: 1;
  }
  .column-d-order-2 {
    order: 2;
  }
} /*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font-family) !important;
  line-height: var(--header-line-height);
  font-weight: var(--header-font-weight);
  margin-bottom: var(--margin-bottom);
  margin-top: 0;
  color: var(--secondary);
}
h5,
h6 {
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(var(--h1-mobile), 4vw, var(--h1));
}
h2 {
  font-size: clamp(var(--h2-mobile), 3.5vw, var(--h2));
}
.block h1 span,
.block h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: 1s var(--cubic);
}
.block.in-view h1 span,
.block.in-view h2 span {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
h3 {
  font-size: clamp(var(--h3-mobile), 3vw, var(--h3));
}
h4 {
  font-size: clamp(var(--h4-mobile), 2.5vw, var(--h4));
}
h5 {
  font-size: clamp(var(--h5-mobile), 2vw, var());
}
h6 {
  font-size: clamp(var(--h6-mobile), 2vw, var(--h6));
}
p {
  font-family: var(--global-font-family);
  font-weight: var(--global-weight-normal);
  line-height: var(--baseline);
  margin-top: 0;
  font-size: var(--global-font-size);
  color: var(--text-color);
  margin-bottom: var(--margin-bottom);
}
strong {
  color: var(--darkest);
}
p.emphasis {
  color: var(--lightest);
}
a {
  line-height: inherit;
  color: var(--secondary);
  transition: 0.6s var(--cubic);
  &:hover {
    color: darken(var(--secondary), 10%);
  }
}
a.external {
  font-family: var(--header-font-family);
  text-decoration: none;
}
a.external:after {
  display: inline-block;
  content: url(../img/external-link.svg);
  margin-left: 0.5rem;
}
.block-heading {
  font-family: var(--global-font-family);
  font-weight: 700;
  text-align: center;
  margin-bottom: 7.5rem;
}
blockquote {
  position: relative;
  margin: 0 0 4rem;
  padding: 1rem 4rem;
  border-left: 8px solid var(--primary);
  font-size: 2.8rem;
}
blockquote:before {
  position: absolute;
  top: -3rem;
  left: 1rem;
  content: "“";
  font-family: georgia, serif;
  font-weight: 700;
  color: #f5f5f5;
  font-size: 15rem;
  z-index: 0;
}
blockquote p {
  font-size: 2.4rem !important;
  font-weight: 700;
  color: var(--text-color);
  line-height: 3rem;
  position: relative;
  z-index: 1;
}
cite {
  display: block;
  font-size: var(--cite-font-size);
  color: var(--cite-color);
}
cite:before {
  content: var(--cite-pseudo-content);
}
abbr {
  border-bottom: var(--abbr-underline);
  color: var(--darkest);
  cursor: help;
}
strong {
  font-weight: 700;
}
figure {
  margin: 0;
}
hr {
  max-width: 100%;
  height: 0;
  margin: var(--global-margin);
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid var(--light-grey);
  border-left: 0;
}
.button {
  position: relative;
  display: inline-flex;
  margin-top: 20px;
  margin-bottom: var(--margin-bottom);
  margin-right: 20px;
  border: 1px solid var(--secondary);
  color: var(--lightest);
  line-height: 1.7;
  font-weight: 400;
  padding: var(--button-padding);
  border-radius: 100px;
  font-size: 16px;
  font-family: var(--header-font-family);
  transition: 0.6s var(--cubic);
  text-decoration: none;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
.button span {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.button span:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--secondary);
  border-radius: 50%;
  transition: 0.3s var(--cubic);
  z-index: -1;
}
.button span:after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 8px;
  background: url(../img/arrow-dark.svg) no-repeat center center / 100%;
  z-index: 1;
}
.button:hover {
  color: var(--primary);
}
.button:hover span:before {
  top: 50%;
  left: 75%;
  transform: translate(-50%, -75%) scale(10);
  border-radius: 50%;
}
.button--dark {
  border: 1px solid var(--primary);
  color: var(--primary);
}
.button--dark:hover {
  color: var(--secondary);
}
.button--dark span:before {
  background: var(--primary);
}
.button--dark span:after {
  background: url(../img/arrow.svg) no-repeat center center / 100%;
}
.button:last-child {
  margin-right: 0;
}
.button--simple {
  background: transparent;
  color: var(--secondary);
  border: none;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.button--simple:hover {
  color: var(--secondary);
}
.button--simple:before {
  display: none;
}
.button--simple:after {
  background: url(../img/arrow.svg) no-repeat center center / 100%;
}
.button--dark--simple {
  color: var(--primary);
}
button {
  background: transparent;
}
[type="color"],
[type="date"],
[type="datetime-local"],
[type="datetime"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select {
  height: var(--input-height);
  width: 100%;
  background: none;
  border: 1px solid var(--medium-grey);
  font-weight: 300;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 20px;
}
[type="color"]:hover,
[type="date"]:hover,
[type="datetime-local"]:hover,
[type="datetime"]:hover,
[type="email"]:hover,
[type="month"]:hover,
[type="number"]:hover,
[type="password"]:hover,
[type="search"]:hover,
[type="tel"]:hover,
[type="text"]:hover,
[type="time"]:hover,
[type="url"]:hover,
[type="week"]:hover,
select:hover {
  border-color: darken(var(--input-border-color), 20%);
}
[type="color"]:focus,
[type="date"]:focus,
[type="datetime-local"]:focus,
[type="datetime"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="text"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="week"]:focus,
select:focus {
  border-color: var(--input-focus-border-color);
  color: var(--input-focus-color);
  outline: none;
}
textarea {
  width: 100%;
  font-weight: 300;
  padding: 1rem;
  border: 1px solid var(--medium-grey);
}
form {
  max-width: 90%;
}
table {
  margin-bottom: 30px;
}
thead {
  background: var(--table-header-background);
}
thead tr th,
thead tr td {
  padding: var(--table-header-padding);
  font-weight: var(--table-header-weight);
  color: var(--lightest);
  text-align: left;
  font-weight: 400;
  font-family: var(--header-font-family);
}
tbody {
  background: var(--table-body-background);
}
tbody th,
tbody td {
  padding: var(--table-body-padding);
  font-weight: var(--table-body-weight);
  color: var(--text-color);
}
tfoot {
  background: var(--table-footer-background);
}
tfoot th,
tfoot td {
  padding: var(--table-footer-padding);
  font-weight: var(--table-footer-weight);
}
table:not(.no-stripe) tr {
  @if var(--table-striped) == even {
    &:nth-child(even) {
      border-bottom: 0;
      background-color: var(--table-striped-background);
    }
  } @else if var(--table-striped) == odd {
    &:nth-child(odd) {
      background-color: var(--table-striped-background);
    }
  }
}
ul,
ol,
dl {
  margin-bottom: var(--list-margin-bottom);
  list-style-position: var(--list-style-position);
  line-height: var(--list-lineheight);
}
li {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: 400;
}
ul {
  margin-left: var(--list-side-margin);
  list-style-type: var(--list-style-type);
}
ol {
  position: relative;
  margin-left: var(--list-side-margin);
  counter-reset: counter;
  list-style: none;
}
ol li {
  counter-increment: counter;
  margin-bottom: 1rem;
}
ol li:before {
  position: absolute;
  left: 1rem;
  display: inline-block;
  content: counter(counter) ".";
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}
ul ul,
ol ol {
  margin-left: var(--list-nested-side-margin);
  margin-bottom: 0;
}
dl {
  margin-bottom: var(--defnlist-margin-bottom);
}
dl dt {
  margin-bottom: var(--defnlist-term-margin-bottom);
  font-weight: var(--defnlist-term-weight);
}
@font-face {
  font-family: Mona Regular;
  src: url(MonaSansExpanded-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Mona Extra Light;
  src: url(MonaSansExpanded-ExtraLight.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --global-width: 95vw;
  --global-font-family: "HelveticaNeue-Light", "Helvetica Neue Light",
    "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  --global-font-size: 18px;
  --text-color: #888883;
  --global-margin: 3rem;
  --global-padding: 5vw;
  --global-left: 1rem;
  --global-weight-normal: 300;
  --global-weight-bold: 700;
  --image-path: "../../images/";
}
:root {
  --primary: #121212;
  --secondary: #f4f4ed;
  --light-grey: #f2f2f2;
  --medium-grey: #ccc;
  --dark-grey: #aeaeae;
  --dark: #4a4a4a;
  --darker: #2a2a2a;
  --darkest: #000000;
  --light: #eaeaea;
  --lighter: #f2f2f2;
  --lightest: #ffffff;
  --primary-contrast: #13387c;
  --secondary-contrast: #121826;
}
:root {
  --baseline: 1.5;
  --scale: 1.614;
  --h1: 56px;
  --h1-mobile: 32px;
  --h2: 42px;
  --h2-mobile: 24px;
  --h3: 24px;
  --h3-mobile: 20px;
  --h4: 20px;
  --h4-mobile: 18px;
  --h5: 20px;
  --h5-mobile: 16px;
  --h6: 1.2rem;
  --h6-mobile: 1.2rem;
  --header-font-family: "Mona Regular", "HelveticaNeue-Light",
    "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  --scroll-font-family: "Mona Extra Light", "HelveticaNeue-Light",
    "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  --header-line-height: 1.2;
  --header-bottom-margin: 30px;
  --header-font-weight: normal;
  --paragraph-line-height: 1.6;
  --margin-bottom: 2rem;
  --paragraph-margin-bottom: 1.2rem;
  --list-lineheight: var(--paragraph-line-height);
  --list-margin-bottom: var(--paragraph-margin-bottom);
  --list-style-type: disc;
  --list-style-position: outside;
  --list-side-margin: 1.25rem;
  --list-nested-side-margin: 1.25rem;
  --defnlist-margin-bottom: 1rem;
  --defnlist-term-weight: var(--global-weight-bold);
  --defnlist-term-margin-bottom: 0.3rem;
  --blockquote-color: var(--dark-grey);
  --blockquote-padding: 9px 20px 0 19px;
  --blockquote-border: 1px solid var(--medium-grey);
  --cite-font-size: 13px;
  --cite-color: var(--dark-grey);
  --cite-pseudo-content: "— ";
  --abbr-underline: 1px dotted var(--dark);
  --button-padding: 1rem 2rem;
}
:root {
  --block-padding-small: 40px 0;
  --block-padding: 80px 0;
  --block-margin-bottom-small: 40px;
  --block-margin-bottom: 80px;
}
:root {
  --input-height: 50px;
  --input-border-color: var(--light-grey);
  --input-focus-color: var(--secondary);
  --input-focus-border-color: var(--primary);
}
:root {
  --table-striped: even;
  --table-striped-background: var(--light-grey);
  --table-header-background: #000;
  --table-header-padding: 1rem;
  --table-header-weight: var(--global-weight-bold);
  --table-body-background: #ffffff;
  --table-body-padding: 1rem;
  --table-body-weight: var(--global-weight-normal);
  --table-footer-background: #eeeeee;
  --table-footer-padding: 1rem;
  --table-footer-weight: var(--global-weight-normal);
}
:root {
  --global-radius: 60px;
  --global-radius-small: 30px;
  --global-rounded: 1000px;
}
:root {
  --cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
}
html {
  font-family: system-ui, sans-serif;
  padding: 10px 0;
  margin: 0 auto;
  height: 100%;
  background: #000;
  background-size: 224px;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  filter: blur(2px);
  animation: removeBlur 1s ease-out forwards;
  animation-delay: 0.1s;
}
body.mobile-menu-active {
  overflow: hidden;
  height: 100%;
}
@keyframes removeBlur {
  0% {
    filter: blur(2px);
  }
  to {
    filter: blur(0);
  }
}
code {
  font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
    Bitstream Vera Sans Mono, Courier New, monospace;
}
.block {
  position: relative;
  background: var(--primary);
  border-radius: var(--global-radius-small);
  overflow: hidden;
  padding: var(--block-padding-small);
  @media only screen and (min-width: 1200px) {
    padding: var(--block-padding);
    border-radius: var(--global-radius);
    margin-top: -100px;
    padding-top: 200px;
  }
}
.block__bg--light {
  background: var(--secondary);
}
.block__bg--light h1,
.block__bg--light h2,
.block__bg--light h3,
.block__bg--light h4,
.block__bg--light h5,
.block__bg--light h6,
.block__bg--light p,
.block__bg--light a,
.block__bg--light li {
  color: var(--primary);
}
.hide-mobile {
  display: none;
  @media only screen and (min-width: 768px) {
    display: block;
  }
}
.oh {
  overflow: hidden;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0009;
  z-index: 1;
}
.overlay--light {
  background: #fff6;
}
.mf-cursor:before {
  background: var(--primary);
}
.blog .block__hero {
  height: 400px !important;
}
.blog .block__hero .container,
.blog .block__hero .container .row {
  top: unset !important;
}
[data-astro-cid-3ef6ksr2][role="banner"] {
  position: absolute;
  width: 100%;
  padding: 4rem 0;
  z-index: 10;
}
.header[data-astro-cid-3ef6ksr2].sticky {
  position: sticky;
  top: 0;
  background: #f6f6f280 0% 0% no-repeat padding-box;
  @include backdrop(blur(20px));
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 30px 30px;
  backdrop-filter: blur(4px);
  @media only screen and (min-width: 1200px) {
    border-radius: 0 0 60px 60px;
  }
}
.logo[data-astro-cid-3ef6ksr2] svg[data-astro-cid-3ef6ksr2] {
  overflow: visible;
}
.logo[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2] {
  transition: filter 0.6s var(--cubic);
}
.logo[data-astro-cid-3ef6ksr2]:hover
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2].blur {
  filter: blur(4px);
}
nav[data-astro-cid-3ef6ksr2].mobile-menu-active ul[data-astro-cid-3ef6ksr2] {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  inset: 10px 0 0;
  width: 100vw;
  height: calc(100vh - 10px);
  background: #0c0c0c80 0% 0% no-repeat padding-box;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  border-radius: var(--global-radius-small);
}
nav[data-astro-cid-3ef6ksr2].mobile-menu-active
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2] {
  text-align: center;
  margin: 10px 0;
}
nav[data-astro-cid-3ef6ksr2].mobile-menu-active
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]
  a[data-astro-cid-3ef6ksr2] {
  font-size: 30px;
}
nav[data-astro-cid-3ef6ksr2] ul[data-astro-cid-3ef6ksr2] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  @media only screen and (min-width: 768px) {
    display: flex;
  }
}
nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2] {
  margin-right: 20px;
  transition: filter 0.6s var(--cubic);
  @media only screen and (min-width: 1200px) {
    margin-right: 40px;
  }
}
nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]:last-child {
  margin-right: 0;
}
nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]:last-child
  a[data-astro-cid-3ef6ksr2] {
  border-bottom: 1px solid var(--primary);
  margin-bottom: 5px;
  padding-bottom: 5px;
}
nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]:has(li:hover)
  li[data-astro-cid-3ef6ksr2]:not(:hover) {
  filter: blur(2px);
}
nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]
  a[data-astro-cid-3ef6ksr2] {
  text-decoration: none;
  color: var(--darkest);
  font-size: 16px;
  font-family: var(--header-font-family);
  filter: none !important;
}
.header--dark[data-astro-cid-3ef6ksr2].sticky {
  background: #0c0c0c80 0% 0% no-repeat padding-box;
  @include backdrop(blur(20px));
}
.header--dark[data-astro-cid-3ef6ksr2]
  nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]:last-child
  a[data-astro-cid-3ef6ksr2] {
  border-bottom: 1px solid var(--secondary);
}
.header--dark[data-astro-cid-3ef6ksr2]
  nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]
  a[data-astro-cid-3ef6ksr2] {
  color: var(--secondary);
}
.header--dark[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2] {
  fill: var(--secondary);
}
.header--dark[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2]#stroke {
  fill: none;
  stroke: var(--secondary);
}
.header--light[data-astro-cid-3ef6ksr2]
  nav[data-astro-cid-3ef6ksr2].mobile-menu-active
  ul[data-astro-cid-3ef6ksr2] {
  background: #eeefe580 0% 0% no-repeat padding-box;
}
.header--light[data-astro-cid-3ef6ksr2]
  nav[data-astro-cid-3ef6ksr2]
  ul[data-astro-cid-3ef6ksr2]
  li[data-astro-cid-3ef6ksr2]
  a[data-astro-cid-3ef6ksr2] {
  color: var(--primary);
}
.header--light[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2] {
  fill: var(--primary);
}
.header--light[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2]#stroke {
  fill: none;
  stroke: var(--primary);
}
.menu-toggle[data-astro-cid-3ef6ksr2] {
  border: none;
  background: var(--primary);
  display: flex;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  padding: 15px;
  align-items: center;
  cursor: pointer;
  @media only screen and (min-width: 768px) {
    display: none;
  }
}
.menu-toggle[data-astro-cid-3ef6ksr2] svg[data-astro-cid-3ef6ksr2] {
  width: 100%;
  height: 100%;
}
.menu-toggle[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2] {
  stroke: var(--lightest);
  transition: 1s var(--cubic);
}
.menu-toggle[data-astro-cid-3ef6ksr2].active
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2]:nth-child(1) {
  transform: translateY(4px);
}
.menu-toggle[data-astro-cid-3ef6ksr2].active
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2]:nth-child(2) {
  transform: translateY(-4px);
}
.header--dark[data-astro-cid-3ef6ksr2] .menu-toggle[data-astro-cid-3ef6ksr2] {
  background: var(--secondary);
}
.header--dark[data-astro-cid-3ef6ksr2]
  .menu-toggle[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2] {
  stroke: var(--darkest);
}
.header--light[data-astro-cid-3ef6ksr2] .menu-toggle[data-astro-cid-3ef6ksr2] {
  background: var(--primary);
}
.header--light[data-astro-cid-3ef6ksr2]
  .menu-toggle[data-astro-cid-3ef6ksr2]
  svg[data-astro-cid-3ef6ksr2]
  path[data-astro-cid-3ef6ksr2] {
  stroke: var(--secondary);
}
[data-astro-cid-sz7xmlte][role="contentinfo"] {
  background: var(--darkest);
  width: 100%;
  @media only screen and (min-width: 1200px) {
    position: sticky;
    bottom: 0;
    left: 0;
  }
}
[data-astro-cid-sz7xmlte][role="contentinfo"] h2[data-astro-cid-sz7xmlte] {
  font-size: 36px;
}
[data-astro-cid-sz7xmlte][role="contentinfo"] img[data-astro-cid-sz7xmlte] {
  display: block;
  margin-bottom: 30px;
}
.footer__scroll[data-astro-cid-sz7xmlte] {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 13vw;
  top: 4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  letter-spacing: 2px;
  font-family: var(--scroll-font-family);
  white-space: nowrap;
  color: var(--secondary);
  z-index: 1;
}
.footer__top[data-astro-cid-sz7xmlte] {
  display: grid;
  margin-top: 4rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  @media only screen and (min-width: 1200px) {
    grid-template-columns: 1fr 1fr;
  }
}
.footer__top__left[data-astro-cid-sz7xmlte],
.footer__top__right[data-astro-cid-sz7xmlte] {
  padding: 5vw;
}
.footer__top__left[data-astro-cid-sz7xmlte] {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom[data-astro-cid-sz7xmlte] {
  padding: 40px 0;
}
.footer__bottom[data-astro-cid-sz7xmlte] p[data-astro-cid-sz7xmlte] {
  margin: 0;
  font-size: 14px;
}
