/**
 SASS files that don't get compiled into CSS. Do not put element selectors in here.
 Every file not starting with '_' should import this file if you want to use functions and mixins.
 */
/**
 * SASS variables
 *
 These are only used in the properties and abstract SASS files.
 */
/**
 Breakpoints and columns
 */
/**
 Text
 */
/**
Fill in the header styles, only write the properties you want to override.
 */
/**
 Form
 */
/**
  Buttons
 */
/**
 Breakpoints

 @param {Keyword} $breakpoint - The breakpoint name of the minimum width. Can be any of the names in the $breakpoint variable
 */
/**
  Custom column size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size in columns or 'expand'/'shrink'.
  @param {number} $total - the total size in columns. Ignored when size is 'expand'/'shrink'
 */
/**
  Custom offset size.
  Especially handy inside other columns.

  @param {Number|string} $size - the size of the offset.
  @param {number} $total - the total size in columns.
  @param {string} - the side from the offset.
 */
body {
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
}
*, *:after, *:before {
  box-sizing: border-box;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure {
  line-height: 1;
}
figure figcaption {
  line-height: var(--line-height);
}

.invisible {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

@media (min-width: 992px) {
  .large-invisible {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
}

@media (min-width: 1200px) {
  .xlarge-invisible {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
  }
}

.visible {
  position: static !important;
  height: unset;
  width: unset;
  overflow: unset;
  clip: unset;
  visibility: visible;
}

@media (min-width: 992px) {
  .large-visible {
    position: static !important;
    height: unset;
    width: unset;
    overflow: unset;
    clip: unset;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .xlarge-visible {
    position: static !important;
    height: unset;
    width: unset;
    overflow: unset;
    clip: unset;
    visibility: visible;
  }
}
:root {
  --grid-template-columns: var(--wrapper-xsmall) repeat(var(--cols-xsmall), minmax(0, 1fr)) var(--wrapper-xsmall);
}
@media (min-width: 992px) {
  :root {
    --grid-template-columns: minmax(var(--wrapper), 1fr) repeat(var(--cols), minmax(0, calc(var(--row-width) / var(--cols)))) minmax(var(--wrapper), 1fr);
  }
}

.row {
  max-width: var(--row-width);
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  padding-inline: var(--wrapper-xsmall);
}
@media (min-width: 992px) {
  .wrapper {
    padding-inline: var(--wrapper);
  }
}

.grid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: var(--grid-template-columns);
}

.subgrid {
  display: grid;
  grid-template-columns: subgrid;
}

.full-width-edge {
  grid-column: 1/-1;
}

.full-width-container,
.full-width-indent,
.full-width-indent-2,
.full-width-indent-3 {
  grid-column: 2/-2;
}

@media (min-width: 992px) {
  .full-width-indent-2 {
    grid-column: 3/-3;
  }
}

@media (min-width: 992px) {
  .full-width-indent-3 {
    grid-column: 4/-4;
  }
}

/**
Only works when another row is wrapped around it.
 */
.nest {
  margin-left: calc(var(--gutter) / -2);
  margin-right: calc(var(--gutter) / -2);
}

.row.nest {
  max-width: none;
}

.gutter {
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
}

.wrapper {
  padding-left: calc(var(--wrapper) - var(--gutter) / 2);
  padding-right: calc(var(--wrapper) - var(--gutter) / 2);
}

.gap {
  -moz-column-gap: var(--gutter);
       column-gap: var(--gutter);
}

@media (min-width: 0) {
  .xsmall-1 {
    width: 4.1666666667%;
  }
  .xsmall-2 {
    width: 8.3333333333%;
  }
  .xsmall-3 {
    width: 12.5%;
  }
  .xsmall-4 {
    width: 16.6666666667%;
  }
  .xsmall-5 {
    width: 20.8333333333%;
  }
  .xsmall-6 {
    width: 25%;
  }
  .xsmall-7 {
    width: 29.1666666667%;
  }
  .xsmall-8 {
    width: 33.3333333333%;
  }
  .xsmall-9 {
    width: 37.5%;
  }
  .xsmall-10 {
    width: 41.6666666667%;
  }
  .xsmall-11 {
    width: 45.8333333333%;
  }
  .xsmall-12 {
    width: 50%;
  }
  .xsmall-13 {
    width: 54.1666666667%;
  }
  .xsmall-14 {
    width: 58.3333333333%;
  }
  .xsmall-15 {
    width: 62.5%;
  }
  .xsmall-16 {
    width: 66.6666666667%;
  }
  .xsmall-17 {
    width: 70.8333333333%;
  }
  .xsmall-18 {
    width: 75%;
  }
  .xsmall-19 {
    width: 79.1666666667%;
  }
  .xsmall-20 {
    width: 83.3333333333%;
  }
  .xsmall-21 {
    width: 87.5%;
  }
  .xsmall-22 {
    width: 91.6666666667%;
  }
  .xsmall-23 {
    width: 95.8333333333%;
  }
  .xsmall-24 {
    width: 100%;
  }
  .xsmall-expand {
    width: auto;
    flex: 1 1 0;
  }
  .xsmall-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 576px) {
  .small-1 {
    width: 4.1666666667%;
  }
  .small-2 {
    width: 8.3333333333%;
  }
  .small-3 {
    width: 12.5%;
  }
  .small-4 {
    width: 16.6666666667%;
  }
  .small-5 {
    width: 20.8333333333%;
  }
  .small-6 {
    width: 25%;
  }
  .small-7 {
    width: 29.1666666667%;
  }
  .small-8 {
    width: 33.3333333333%;
  }
  .small-9 {
    width: 37.5%;
  }
  .small-10 {
    width: 41.6666666667%;
  }
  .small-11 {
    width: 45.8333333333%;
  }
  .small-12 {
    width: 50%;
  }
  .small-13 {
    width: 54.1666666667%;
  }
  .small-14 {
    width: 58.3333333333%;
  }
  .small-15 {
    width: 62.5%;
  }
  .small-16 {
    width: 66.6666666667%;
  }
  .small-17 {
    width: 70.8333333333%;
  }
  .small-18 {
    width: 75%;
  }
  .small-19 {
    width: 79.1666666667%;
  }
  .small-20 {
    width: 83.3333333333%;
  }
  .small-21 {
    width: 87.5%;
  }
  .small-22 {
    width: 91.6666666667%;
  }
  .small-23 {
    width: 95.8333333333%;
  }
  .small-24 {
    width: 100%;
  }
  .small-expand {
    width: auto;
    flex: 1 1 0;
  }
  .small-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 768px) {
  .medium-1 {
    width: 4.1666666667%;
  }
  .medium-2 {
    width: 8.3333333333%;
  }
  .medium-3 {
    width: 12.5%;
  }
  .medium-4 {
    width: 16.6666666667%;
  }
  .medium-5 {
    width: 20.8333333333%;
  }
  .medium-6 {
    width: 25%;
  }
  .medium-7 {
    width: 29.1666666667%;
  }
  .medium-8 {
    width: 33.3333333333%;
  }
  .medium-9 {
    width: 37.5%;
  }
  .medium-10 {
    width: 41.6666666667%;
  }
  .medium-11 {
    width: 45.8333333333%;
  }
  .medium-12 {
    width: 50%;
  }
  .medium-13 {
    width: 54.1666666667%;
  }
  .medium-14 {
    width: 58.3333333333%;
  }
  .medium-15 {
    width: 62.5%;
  }
  .medium-16 {
    width: 66.6666666667%;
  }
  .medium-17 {
    width: 70.8333333333%;
  }
  .medium-18 {
    width: 75%;
  }
  .medium-19 {
    width: 79.1666666667%;
  }
  .medium-20 {
    width: 83.3333333333%;
  }
  .medium-21 {
    width: 87.5%;
  }
  .medium-22 {
    width: 91.6666666667%;
  }
  .medium-23 {
    width: 95.8333333333%;
  }
  .medium-24 {
    width: 100%;
  }
  .medium-expand {
    width: auto;
    flex: 1 1 0;
  }
  .medium-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 992px) {
  .large-1 {
    width: 4.1666666667%;
  }
  .large-2 {
    width: 8.3333333333%;
  }
  .large-3 {
    width: 12.5%;
  }
  .large-4 {
    width: 16.6666666667%;
  }
  .large-5 {
    width: 20.8333333333%;
  }
  .large-6 {
    width: 25%;
  }
  .large-7 {
    width: 29.1666666667%;
  }
  .large-8 {
    width: 33.3333333333%;
  }
  .large-9 {
    width: 37.5%;
  }
  .large-10 {
    width: 41.6666666667%;
  }
  .large-11 {
    width: 45.8333333333%;
  }
  .large-12 {
    width: 50%;
  }
  .large-13 {
    width: 54.1666666667%;
  }
  .large-14 {
    width: 58.3333333333%;
  }
  .large-15 {
    width: 62.5%;
  }
  .large-16 {
    width: 66.6666666667%;
  }
  .large-17 {
    width: 70.8333333333%;
  }
  .large-18 {
    width: 75%;
  }
  .large-19 {
    width: 79.1666666667%;
  }
  .large-20 {
    width: 83.3333333333%;
  }
  .large-21 {
    width: 87.5%;
  }
  .large-22 {
    width: 91.6666666667%;
  }
  .large-23 {
    width: 95.8333333333%;
  }
  .large-24 {
    width: 100%;
  }
  .large-expand {
    width: auto;
    flex: 1 1 0;
  }
  .large-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 1200px) {
  .xlarge-1 {
    width: 4.1666666667%;
  }
  .xlarge-2 {
    width: 8.3333333333%;
  }
  .xlarge-3 {
    width: 12.5%;
  }
  .xlarge-4 {
    width: 16.6666666667%;
  }
  .xlarge-5 {
    width: 20.8333333333%;
  }
  .xlarge-6 {
    width: 25%;
  }
  .xlarge-7 {
    width: 29.1666666667%;
  }
  .xlarge-8 {
    width: 33.3333333333%;
  }
  .xlarge-9 {
    width: 37.5%;
  }
  .xlarge-10 {
    width: 41.6666666667%;
  }
  .xlarge-11 {
    width: 45.8333333333%;
  }
  .xlarge-12 {
    width: 50%;
  }
  .xlarge-13 {
    width: 54.1666666667%;
  }
  .xlarge-14 {
    width: 58.3333333333%;
  }
  .xlarge-15 {
    width: 62.5%;
  }
  .xlarge-16 {
    width: 66.6666666667%;
  }
  .xlarge-17 {
    width: 70.8333333333%;
  }
  .xlarge-18 {
    width: 75%;
  }
  .xlarge-19 {
    width: 79.1666666667%;
  }
  .xlarge-20 {
    width: 83.3333333333%;
  }
  .xlarge-21 {
    width: 87.5%;
  }
  .xlarge-22 {
    width: 91.6666666667%;
  }
  .xlarge-23 {
    width: 95.8333333333%;
  }
  .xlarge-24 {
    width: 100%;
  }
  .xlarge-expand {
    width: auto;
    flex: 1 1 0;
  }
  .xlarge-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 1440px) {
  .xxlarge-1 {
    width: 4.1666666667%;
  }
  .xxlarge-2 {
    width: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 12.5%;
  }
  .xxlarge-4 {
    width: 16.6666666667%;
  }
  .xxlarge-5 {
    width: 20.8333333333%;
  }
  .xxlarge-6 {
    width: 25%;
  }
  .xxlarge-7 {
    width: 29.1666666667%;
  }
  .xxlarge-8 {
    width: 33.3333333333%;
  }
  .xxlarge-9 {
    width: 37.5%;
  }
  .xxlarge-10 {
    width: 41.6666666667%;
  }
  .xxlarge-11 {
    width: 45.8333333333%;
  }
  .xxlarge-12 {
    width: 50%;
  }
  .xxlarge-13 {
    width: 54.1666666667%;
  }
  .xxlarge-14 {
    width: 58.3333333333%;
  }
  .xxlarge-15 {
    width: 62.5%;
  }
  .xxlarge-16 {
    width: 66.6666666667%;
  }
  .xxlarge-17 {
    width: 70.8333333333%;
  }
  .xxlarge-18 {
    width: 75%;
  }
  .xxlarge-19 {
    width: 79.1666666667%;
  }
  .xxlarge-20 {
    width: 83.3333333333%;
  }
  .xxlarge-21 {
    width: 87.5%;
  }
  .xxlarge-22 {
    width: 91.6666666667%;
  }
  .xxlarge-23 {
    width: 95.8333333333%;
  }
  .xxlarge-24 {
    width: 100%;
  }
  .xxlarge-expand {
    width: auto;
    flex: 1 1 0;
  }
  .xxlarge-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 1600px) {
  .xxxlarge-1 {
    width: 4.1666666667%;
  }
  .xxxlarge-2 {
    width: 8.3333333333%;
  }
  .xxxlarge-3 {
    width: 12.5%;
  }
  .xxxlarge-4 {
    width: 16.6666666667%;
  }
  .xxxlarge-5 {
    width: 20.8333333333%;
  }
  .xxxlarge-6 {
    width: 25%;
  }
  .xxxlarge-7 {
    width: 29.1666666667%;
  }
  .xxxlarge-8 {
    width: 33.3333333333%;
  }
  .xxxlarge-9 {
    width: 37.5%;
  }
  .xxxlarge-10 {
    width: 41.6666666667%;
  }
  .xxxlarge-11 {
    width: 45.8333333333%;
  }
  .xxxlarge-12 {
    width: 50%;
  }
  .xxxlarge-13 {
    width: 54.1666666667%;
  }
  .xxxlarge-14 {
    width: 58.3333333333%;
  }
  .xxxlarge-15 {
    width: 62.5%;
  }
  .xxxlarge-16 {
    width: 66.6666666667%;
  }
  .xxxlarge-17 {
    width: 70.8333333333%;
  }
  .xxxlarge-18 {
    width: 75%;
  }
  .xxxlarge-19 {
    width: 79.1666666667%;
  }
  .xxxlarge-20 {
    width: 83.3333333333%;
  }
  .xxxlarge-21 {
    width: 87.5%;
  }
  .xxxlarge-22 {
    width: 91.6666666667%;
  }
  .xxxlarge-23 {
    width: 95.8333333333%;
  }
  .xxxlarge-24 {
    width: 100%;
  }
  .xxxlarge-expand {
    width: auto;
    flex: 1 1 0;
  }
  .xxxlarge-shrink {
    width: auto;
    flex: 0 1 auto;
  }
}
@media (min-width: 0) {
  .xsmall-offset-1 {
    margin-left: 4.1666666667%;
  }
  .xsmall-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .xsmall-offset-2 {
    margin-left: 8.3333333333%;
  }
  .xsmall-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .xsmall-offset-3 {
    margin-left: 12.5%;
  }
  .xsmall-offset-right-3 {
    margin-right: 12.5%;
  }
  .xsmall-offset-4 {
    margin-left: 16.6666666667%;
  }
  .xsmall-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .xsmall-offset-5 {
    margin-left: 20.8333333333%;
  }
  .xsmall-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .xsmall-offset-6 {
    margin-left: 25%;
  }
  .xsmall-offset-right-6 {
    margin-right: 25%;
  }
  .xsmall-offset-7 {
    margin-left: 29.1666666667%;
  }
  .xsmall-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .xsmall-offset-8 {
    margin-left: 33.3333333333%;
  }
  .xsmall-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .xsmall-offset-9 {
    margin-left: 37.5%;
  }
  .xsmall-offset-right-9 {
    margin-right: 37.5%;
  }
  .xsmall-offset-10 {
    margin-left: 41.6666666667%;
  }
  .xsmall-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .xsmall-offset-11 {
    margin-left: 45.8333333333%;
  }
  .xsmall-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .xsmall-offset-12 {
    margin-left: 50%;
  }
  .xsmall-offset-right-12 {
    margin-right: 50%;
  }
  .xsmall-offset-13 {
    margin-left: 54.1666666667%;
  }
  .xsmall-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .xsmall-offset-14 {
    margin-left: 58.3333333333%;
  }
  .xsmall-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .xsmall-offset-15 {
    margin-left: 62.5%;
  }
  .xsmall-offset-right-15 {
    margin-right: 62.5%;
  }
  .xsmall-offset-16 {
    margin-left: 66.6666666667%;
  }
  .xsmall-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .xsmall-offset-17 {
    margin-left: 70.8333333333%;
  }
  .xsmall-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .xsmall-offset-18 {
    margin-left: 75%;
  }
  .xsmall-offset-right-18 {
    margin-right: 75%;
  }
  .xsmall-offset-19 {
    margin-left: 79.1666666667%;
  }
  .xsmall-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .xsmall-offset-20 {
    margin-left: 83.3333333333%;
  }
  .xsmall-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .xsmall-offset-21 {
    margin-left: 87.5%;
  }
  .xsmall-offset-right-21 {
    margin-right: 87.5%;
  }
  .xsmall-offset-22 {
    margin-left: 91.6666666667%;
  }
  .xsmall-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .xsmall-offset-23 {
    margin-left: 95.8333333333%;
  }
  .xsmall-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .xsmall-offset-24 {
    margin-left: 100%;
  }
  .xsmall-offset-right-24 {
    margin-right: 100%;
  }
  .xsmall-offset-auto {
    margin-left: auto;
  }
  .xsmall-offset-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 576px) {
  .small-offset-1 {
    margin-left: 4.1666666667%;
  }
  .small-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .small-offset-2 {
    margin-left: 8.3333333333%;
  }
  .small-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .small-offset-3 {
    margin-left: 12.5%;
  }
  .small-offset-right-3 {
    margin-right: 12.5%;
  }
  .small-offset-4 {
    margin-left: 16.6666666667%;
  }
  .small-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .small-offset-5 {
    margin-left: 20.8333333333%;
  }
  .small-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .small-offset-6 {
    margin-left: 25%;
  }
  .small-offset-right-6 {
    margin-right: 25%;
  }
  .small-offset-7 {
    margin-left: 29.1666666667%;
  }
  .small-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .small-offset-8 {
    margin-left: 33.3333333333%;
  }
  .small-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .small-offset-9 {
    margin-left: 37.5%;
  }
  .small-offset-right-9 {
    margin-right: 37.5%;
  }
  .small-offset-10 {
    margin-left: 41.6666666667%;
  }
  .small-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .small-offset-11 {
    margin-left: 45.8333333333%;
  }
  .small-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .small-offset-12 {
    margin-left: 50%;
  }
  .small-offset-right-12 {
    margin-right: 50%;
  }
  .small-offset-13 {
    margin-left: 54.1666666667%;
  }
  .small-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .small-offset-14 {
    margin-left: 58.3333333333%;
  }
  .small-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .small-offset-15 {
    margin-left: 62.5%;
  }
  .small-offset-right-15 {
    margin-right: 62.5%;
  }
  .small-offset-16 {
    margin-left: 66.6666666667%;
  }
  .small-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .small-offset-17 {
    margin-left: 70.8333333333%;
  }
  .small-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .small-offset-18 {
    margin-left: 75%;
  }
  .small-offset-right-18 {
    margin-right: 75%;
  }
  .small-offset-19 {
    margin-left: 79.1666666667%;
  }
  .small-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .small-offset-20 {
    margin-left: 83.3333333333%;
  }
  .small-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .small-offset-21 {
    margin-left: 87.5%;
  }
  .small-offset-right-21 {
    margin-right: 87.5%;
  }
  .small-offset-22 {
    margin-left: 91.6666666667%;
  }
  .small-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .small-offset-23 {
    margin-left: 95.8333333333%;
  }
  .small-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .small-offset-24 {
    margin-left: 100%;
  }
  .small-offset-right-24 {
    margin-right: 100%;
  }
  .small-offset-auto {
    margin-left: auto;
  }
  .small-offset-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .medium-offset-1 {
    margin-left: 4.1666666667%;
  }
  .medium-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .medium-offset-2 {
    margin-left: 8.3333333333%;
  }
  .medium-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 12.5%;
  }
  .medium-offset-right-3 {
    margin-right: 12.5%;
  }
  .medium-offset-4 {
    margin-left: 16.6666666667%;
  }
  .medium-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .medium-offset-5 {
    margin-left: 20.8333333333%;
  }
  .medium-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .medium-offset-6 {
    margin-left: 25%;
  }
  .medium-offset-right-6 {
    margin-right: 25%;
  }
  .medium-offset-7 {
    margin-left: 29.1666666667%;
  }
  .medium-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .medium-offset-8 {
    margin-left: 33.3333333333%;
  }
  .medium-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 37.5%;
  }
  .medium-offset-right-9 {
    margin-right: 37.5%;
  }
  .medium-offset-10 {
    margin-left: 41.6666666667%;
  }
  .medium-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .medium-offset-11 {
    margin-left: 45.8333333333%;
  }
  .medium-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .medium-offset-12 {
    margin-left: 50%;
  }
  .medium-offset-right-12 {
    margin-right: 50%;
  }
  .medium-offset-13 {
    margin-left: 54.1666666667%;
  }
  .medium-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .medium-offset-14 {
    margin-left: 58.3333333333%;
  }
  .medium-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .medium-offset-15 {
    margin-left: 62.5%;
  }
  .medium-offset-right-15 {
    margin-right: 62.5%;
  }
  .medium-offset-16 {
    margin-left: 66.6666666667%;
  }
  .medium-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .medium-offset-17 {
    margin-left: 70.8333333333%;
  }
  .medium-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .medium-offset-18 {
    margin-left: 75%;
  }
  .medium-offset-right-18 {
    margin-right: 75%;
  }
  .medium-offset-19 {
    margin-left: 79.1666666667%;
  }
  .medium-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .medium-offset-20 {
    margin-left: 83.3333333333%;
  }
  .medium-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .medium-offset-21 {
    margin-left: 87.5%;
  }
  .medium-offset-right-21 {
    margin-right: 87.5%;
  }
  .medium-offset-22 {
    margin-left: 91.6666666667%;
  }
  .medium-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .medium-offset-23 {
    margin-left: 95.8333333333%;
  }
  .medium-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .medium-offset-24 {
    margin-left: 100%;
  }
  .medium-offset-right-24 {
    margin-right: 100%;
  }
  .medium-offset-auto {
    margin-left: auto;
  }
  .medium-offset-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .large-offset-1 {
    margin-left: 4.1666666667%;
  }
  .large-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .large-offset-2 {
    margin-left: 8.3333333333%;
  }
  .large-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .large-offset-3 {
    margin-left: 12.5%;
  }
  .large-offset-right-3 {
    margin-right: 12.5%;
  }
  .large-offset-4 {
    margin-left: 16.6666666667%;
  }
  .large-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .large-offset-5 {
    margin-left: 20.8333333333%;
  }
  .large-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .large-offset-6 {
    margin-left: 25%;
  }
  .large-offset-right-6 {
    margin-right: 25%;
  }
  .large-offset-7 {
    margin-left: 29.1666666667%;
  }
  .large-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .large-offset-8 {
    margin-left: 33.3333333333%;
  }
  .large-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .large-offset-9 {
    margin-left: 37.5%;
  }
  .large-offset-right-9 {
    margin-right: 37.5%;
  }
  .large-offset-10 {
    margin-left: 41.6666666667%;
  }
  .large-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .large-offset-11 {
    margin-left: 45.8333333333%;
  }
  .large-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .large-offset-12 {
    margin-left: 50%;
  }
  .large-offset-right-12 {
    margin-right: 50%;
  }
  .large-offset-13 {
    margin-left: 54.1666666667%;
  }
  .large-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .large-offset-14 {
    margin-left: 58.3333333333%;
  }
  .large-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .large-offset-15 {
    margin-left: 62.5%;
  }
  .large-offset-right-15 {
    margin-right: 62.5%;
  }
  .large-offset-16 {
    margin-left: 66.6666666667%;
  }
  .large-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .large-offset-17 {
    margin-left: 70.8333333333%;
  }
  .large-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .large-offset-18 {
    margin-left: 75%;
  }
  .large-offset-right-18 {
    margin-right: 75%;
  }
  .large-offset-19 {
    margin-left: 79.1666666667%;
  }
  .large-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .large-offset-20 {
    margin-left: 83.3333333333%;
  }
  .large-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .large-offset-21 {
    margin-left: 87.5%;
  }
  .large-offset-right-21 {
    margin-right: 87.5%;
  }
  .large-offset-22 {
    margin-left: 91.6666666667%;
  }
  .large-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .large-offset-23 {
    margin-left: 95.8333333333%;
  }
  .large-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .large-offset-24 {
    margin-left: 100%;
  }
  .large-offset-right-24 {
    margin-right: 100%;
  }
  .large-offset-auto {
    margin-left: auto;
  }
  .large-offset-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .xlarge-offset-1 {
    margin-left: 4.1666666667%;
  }
  .xlarge-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .xlarge-offset-2 {
    margin-left: 8.3333333333%;
  }
  .xlarge-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .xlarge-offset-3 {
    margin-left: 12.5%;
  }
  .xlarge-offset-right-3 {
    margin-right: 12.5%;
  }
  .xlarge-offset-4 {
    margin-left: 16.6666666667%;
  }
  .xlarge-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .xlarge-offset-5 {
    margin-left: 20.8333333333%;
  }
  .xlarge-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .xlarge-offset-6 {
    margin-left: 25%;
  }
  .xlarge-offset-right-6 {
    margin-right: 25%;
  }
  .xlarge-offset-7 {
    margin-left: 29.1666666667%;
  }
  .xlarge-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .xlarge-offset-8 {
    margin-left: 33.3333333333%;
  }
  .xlarge-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .xlarge-offset-9 {
    margin-left: 37.5%;
  }
  .xlarge-offset-right-9 {
    margin-right: 37.5%;
  }
  .xlarge-offset-10 {
    margin-left: 41.6666666667%;
  }
  .xlarge-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .xlarge-offset-11 {
    margin-left: 45.8333333333%;
  }
  .xlarge-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .xlarge-offset-12 {
    margin-left: 50%;
  }
  .xlarge-offset-right-12 {
    margin-right: 50%;
  }
  .xlarge-offset-13 {
    margin-left: 54.1666666667%;
  }
  .xlarge-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .xlarge-offset-14 {
    margin-left: 58.3333333333%;
  }
  .xlarge-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .xlarge-offset-15 {
    margin-left: 62.5%;
  }
  .xlarge-offset-right-15 {
    margin-right: 62.5%;
  }
  .xlarge-offset-16 {
    margin-left: 66.6666666667%;
  }
  .xlarge-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .xlarge-offset-17 {
    margin-left: 70.8333333333%;
  }
  .xlarge-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .xlarge-offset-18 {
    margin-left: 75%;
  }
  .xlarge-offset-right-18 {
    margin-right: 75%;
  }
  .xlarge-offset-19 {
    margin-left: 79.1666666667%;
  }
  .xlarge-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .xlarge-offset-20 {
    margin-left: 83.3333333333%;
  }
  .xlarge-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .xlarge-offset-21 {
    margin-left: 87.5%;
  }
  .xlarge-offset-right-21 {
    margin-right: 87.5%;
  }
  .xlarge-offset-22 {
    margin-left: 91.6666666667%;
  }
  .xlarge-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .xlarge-offset-23 {
    margin-left: 95.8333333333%;
  }
  .xlarge-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .xlarge-offset-24 {
    margin-left: 100%;
  }
  .xlarge-offset-right-24 {
    margin-right: 100%;
  }
  .xlarge-offset-auto {
    margin-left: auto;
  }
  .xlarge-offset-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 1440px) {
  .xxlarge-offset-1 {
    margin-left: 4.1666666667%;
  }
  .xxlarge-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .xxlarge-offset-2 {
    margin-left: 8.3333333333%;
  }
  .xxlarge-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .xxlarge-offset-3 {
    margin-left: 12.5%;
  }
  .xxlarge-offset-right-3 {
    margin-right: 12.5%;
  }
  .xxlarge-offset-4 {
    margin-left: 16.6666666667%;
  }
  .xxlarge-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .xxlarge-offset-5 {
    margin-left: 20.8333333333%;
  }
  .xxlarge-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .xxlarge-offset-6 {
    margin-left: 25%;
  }
  .xxlarge-offset-right-6 {
    margin-right: 25%;
  }
  .xxlarge-offset-7 {
    margin-left: 29.1666666667%;
  }
  .xxlarge-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .xxlarge-offset-8 {
    margin-left: 33.3333333333%;
  }
  .xxlarge-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .xxlarge-offset-9 {
    margin-left: 37.5%;
  }
  .xxlarge-offset-right-9 {
    margin-right: 37.5%;
  }
  .xxlarge-offset-10 {
    margin-left: 41.6666666667%;
  }
  .xxlarge-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .xxlarge-offset-11 {
    margin-left: 45.8333333333%;
  }
  .xxlarge-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .xxlarge-offset-12 {
    margin-left: 50%;
  }
  .xxlarge-offset-right-12 {
    margin-right: 50%;
  }
  .xxlarge-offset-13 {
    margin-left: 54.1666666667%;
  }
  .xxlarge-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .xxlarge-offset-14 {
    margin-left: 58.3333333333%;
  }
  .xxlarge-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .xxlarge-offset-15 {
    margin-left: 62.5%;
  }
  .xxlarge-offset-right-15 {
    margin-right: 62.5%;
  }
  .xxlarge-offset-16 {
    margin-left: 66.6666666667%;
  }
  .xxlarge-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .xxlarge-offset-17 {
    margin-left: 70.8333333333%;
  }
  .xxlarge-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .xxlarge-offset-18 {
    margin-left: 75%;
  }
  .xxlarge-offset-right-18 {
    margin-right: 75%;
  }
  .xxlarge-offset-19 {
    margin-left: 79.1666666667%;
  }
  .xxlarge-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .xxlarge-offset-20 {
    margin-left: 83.3333333333%;
  }
  .xxlarge-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .xxlarge-offset-21 {
    margin-left: 87.5%;
  }
  .xxlarge-offset-right-21 {
    margin-right: 87.5%;
  }
  .xxlarge-offset-22 {
    margin-left: 91.6666666667%;
  }
  .xxlarge-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .xxlarge-offset-23 {
    margin-left: 95.8333333333%;
  }
  .xxlarge-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .xxlarge-offset-24 {
    margin-left: 100%;
  }
  .xxlarge-offset-right-24 {
    margin-right: 100%;
  }
  .xxlarge-offset-auto {
    margin-left: auto;
  }
  .xxlarge-offset-right-auto {
    margin-right: auto;
  }
}
@media (min-width: 1600px) {
  .xxxlarge-offset-1 {
    margin-left: 4.1666666667%;
  }
  .xxxlarge-offset-right-1 {
    margin-right: 4.1666666667%;
  }
  .xxxlarge-offset-2 {
    margin-left: 8.3333333333%;
  }
  .xxxlarge-offset-right-2 {
    margin-right: 8.3333333333%;
  }
  .xxxlarge-offset-3 {
    margin-left: 12.5%;
  }
  .xxxlarge-offset-right-3 {
    margin-right: 12.5%;
  }
  .xxxlarge-offset-4 {
    margin-left: 16.6666666667%;
  }
  .xxxlarge-offset-right-4 {
    margin-right: 16.6666666667%;
  }
  .xxxlarge-offset-5 {
    margin-left: 20.8333333333%;
  }
  .xxxlarge-offset-right-5 {
    margin-right: 20.8333333333%;
  }
  .xxxlarge-offset-6 {
    margin-left: 25%;
  }
  .xxxlarge-offset-right-6 {
    margin-right: 25%;
  }
  .xxxlarge-offset-7 {
    margin-left: 29.1666666667%;
  }
  .xxxlarge-offset-right-7 {
    margin-right: 29.1666666667%;
  }
  .xxxlarge-offset-8 {
    margin-left: 33.3333333333%;
  }
  .xxxlarge-offset-right-8 {
    margin-right: 33.3333333333%;
  }
  .xxxlarge-offset-9 {
    margin-left: 37.5%;
  }
  .xxxlarge-offset-right-9 {
    margin-right: 37.5%;
  }
  .xxxlarge-offset-10 {
    margin-left: 41.6666666667%;
  }
  .xxxlarge-offset-right-10 {
    margin-right: 41.6666666667%;
  }
  .xxxlarge-offset-11 {
    margin-left: 45.8333333333%;
  }
  .xxxlarge-offset-right-11 {
    margin-right: 45.8333333333%;
  }
  .xxxlarge-offset-12 {
    margin-left: 50%;
  }
  .xxxlarge-offset-right-12 {
    margin-right: 50%;
  }
  .xxxlarge-offset-13 {
    margin-left: 54.1666666667%;
  }
  .xxxlarge-offset-right-13 {
    margin-right: 54.1666666667%;
  }
  .xxxlarge-offset-14 {
    margin-left: 58.3333333333%;
  }
  .xxxlarge-offset-right-14 {
    margin-right: 58.3333333333%;
  }
  .xxxlarge-offset-15 {
    margin-left: 62.5%;
  }
  .xxxlarge-offset-right-15 {
    margin-right: 62.5%;
  }
  .xxxlarge-offset-16 {
    margin-left: 66.6666666667%;
  }
  .xxxlarge-offset-right-16 {
    margin-right: 66.6666666667%;
  }
  .xxxlarge-offset-17 {
    margin-left: 70.8333333333%;
  }
  .xxxlarge-offset-right-17 {
    margin-right: 70.8333333333%;
  }
  .xxxlarge-offset-18 {
    margin-left: 75%;
  }
  .xxxlarge-offset-right-18 {
    margin-right: 75%;
  }
  .xxxlarge-offset-19 {
    margin-left: 79.1666666667%;
  }
  .xxxlarge-offset-right-19 {
    margin-right: 79.1666666667%;
  }
  .xxxlarge-offset-20 {
    margin-left: 83.3333333333%;
  }
  .xxxlarge-offset-right-20 {
    margin-right: 83.3333333333%;
  }
  .xxxlarge-offset-21 {
    margin-left: 87.5%;
  }
  .xxxlarge-offset-right-21 {
    margin-right: 87.5%;
  }
  .xxxlarge-offset-22 {
    margin-left: 91.6666666667%;
  }
  .xxxlarge-offset-right-22 {
    margin-right: 91.6666666667%;
  }
  .xxxlarge-offset-23 {
    margin-left: 95.8333333333%;
  }
  .xxxlarge-offset-right-23 {
    margin-right: 95.8333333333%;
  }
  .xxxlarge-offset-24 {
    margin-left: 100%;
  }
  .xxxlarge-offset-right-24 {
    margin-right: 100%;
  }
  .xxxlarge-offset-auto {
    margin-left: auto;
  }
  .xxxlarge-offset-right-auto {
    margin-right: auto;
  }
}
.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-column {
  flex-direction: column;
}

.h-marbot-150 {
  margin-bottom: 75px;
}
@media (min-width: 992px) {
  .h-marbot-150 {
    margin-bottom: 150px;
  }
}

.h-marbot-250 {
  margin-bottom: 125px;
}
@media (min-width: 992px) {
  .h-marbot-250 {
    margin-bottom: 250px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

.links a {
  text-transform: lowercase;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: sigurd-variable, sans-serif;
}

.font-size-small {
  font-size: var(--font-size-small);
}

a {
  color: var(--anchor-color);
  transition: var(--transition);
}
a:hover, a:focus-visible {
  color: var(--hover-color);
}

.entity:not(.vm-full) h2 a:not(:hover):not(:focus-visible), .entity:not(.vm-full) .links a:not(:hover):not(:focus-visible) {
  color: var(--text-color);
}

time {
  font-size: var(--font-size-small);
}

.text-align-center {
  text-align: center;
}

@media (min-width: 0) {
  h1, .h1 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.36px;
    line-height: 1;
    font-family: sigurd-variable, sans-serif;
  }
  h2, .h2 {
    font-size: 1.75rem;
    letter-spacing: -0.25px;
    font-weight: 700;
  }
  h3, .h3 {
    font-size: 1.3125rem;
    letter-spacing: -0.1px;
    font-family: "Switzer", sans-serif;
    font-weight: 700;
  }
  h4, .h4 {
    font-size: 1.125rem;
    letter-spacing: 0.4px;
    font-family: "Switzer", sans-serif;
    font-weight: 700;
  }
  h5, .h5 {
    font-size: 1rem;
    letter-spacing: 0.36px;
    font-family: "Switzer", sans-serif;
    line-height: 1.1875;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}
.h-general-body {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (min-width: 992px) {
  .h-general-body {
    font-size: 1.25rem;
    line-height: 32px;
  }
}

.h-general-body-small {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.h-title-16 {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  font-family: var(--body-font-family);
}
.h-title-16 strong {
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  font-family: var(--header-font-family);
}

.h-title-28 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--body-font-family);
}
.h-title-28 strong {
  font-size: 2.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  font-family: var(--header-font-family);
}
@media (min-width: 1200px) {
  .h-title-28 {
    font-size: 1.75rem;
    line-height: 28px;
  }
  .h-title-28 strong {
    font-size: 3rem;
    line-height: 56px;
  }
}

.h-title-32 {
  font-family: var(--header-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
}
@media (min-width: 992px) {
  .h-title-32 {
    font-size: 2rem;
    line-height: 32px;
  }
}

.h-title-36 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--body-font-family);
}
.h-title-36 strong {
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  font-family: var(--header-font-family);
}
@media (min-width: 1200px) {
  .h-title-36 {
    font-size: 2.25rem;
    line-height: 36px;
  }
  .h-title-36 strong {
    font-size: 4rem;
    line-height: 64px;
  }
}

.h-title-44 {
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--body-font-family);
}
.h-title-44 strong {
  font-size: 3.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 52px;
  font-family: var(--header-font-family);
}
@media (min-width: 1600px) {
  .h-title-44 {
    font-size: 2.75rem;
    line-height: 44px;
  }
  .h-title-44 strong {
    font-size: 5rem;
    line-height: 80px;
  }
}

[class*=background--] {
  color: var(--text-color);
}

.background--gray {
  background: var(--silver-gray);
}

.background--primary {
  background: var(--primary-color);
}

.background--primary-dark {
  background: var(--primary-dark-color);
}

.background--secondary {
  background: var(--secondary-color);
}

.background--white {
  background-color: var(--white);
  --text-color: var(--primary-dark-color);
}

.background--primary,
.background--primary-dark {
  --text-color: var(--white);
  --anchor-color: var(--white);
  --hover-color: var(--silver-gray);
  --selection-color: var(--primary-color);
  --selection-background-color: var(--white);
}

.background--gray,
.background--white {
  --anchor-color: var(--primary-dark-color);
  --selection-color: var(--white);
  --selection-background-color: var(--primary-dark-color);
}
